Lines Matching refs:AV_LOG_ERROR
87 av_log(NULL, AV_LOG_ERROR, "Can't open file\n"); in video_decode()
93 av_log(NULL, AV_LOG_ERROR, "Can't get stream info\n"); in video_decode()
99 av_log(NULL, AV_LOG_ERROR, "Can't find video stream in input file\n"); in video_decode()
107 av_log(NULL, AV_LOG_ERROR, "Can't find decoder\n"); in video_decode()
113 av_log(NULL, AV_LOG_ERROR, "Can't allocate decoder context\n"); in video_decode()
119 av_log(NULL, AV_LOG_ERROR, "Can't copy decoder context\n"); in video_decode()
128 av_log(ctx, AV_LOG_ERROR, "Can't open decoder\n"); in video_decode()
134 av_log(NULL, AV_LOG_ERROR, "Can't allocate frame\n"); in video_decode()
139 av_log(NULL, AV_LOG_ERROR, "Wrong codec\n"); in video_decode()
146 av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n"); in video_decode()
152 av_log(NULL, AV_LOG_ERROR, "Can't allocate buffer\n"); in video_decode()
173 av_log(NULL, AV_LOG_ERROR, "Error decoding frame\n"); in video_decode()
181 av_log(NULL, AV_LOG_ERROR, "Can't copy image to buffer\n"); in video_decode()
185 av_log(NULL, AV_LOG_ERROR, "draw_horiz_band haven't been called!\n"); in video_decode()
190 … av_log(NULL, AV_LOG_ERROR, "Decoded frames with and without draw_horiz_band are not the same!\n"); in video_decode()
213 …av_log(NULL, AV_LOG_ERROR, "Incorrect input: expected %s <name of a video file>\nNote that test wo… in main()