mirror of https://git.ffmpeg.org/ffmpeg.git
enc_recon_frame_test: don't print an error on EOF.
Before: $ make tools/enc_recon_frame_test $ tools/enc_recon_frame_test ~/Movies/cif/bus_cif.y4m libx264 'tune=psnr' Error submitting a frame for encoding After: All 150 encoded frames match
This commit is contained in:
parent
e35587250c
commit
a5dabfc9c0
|
@ -178,6 +178,8 @@ static int process_frame(DecodeContext *dc, AVFrame *frame)
|
|||
}
|
||||
|
||||
ret = avcodec_send_frame(pd->enc, frame);
|
||||
if (ret == AVERROR_EOF && !frame)
|
||||
return 0;
|
||||
if (ret < 0) {
|
||||
fprintf(stderr, "Error submitting a frame for encoding\n");
|
||||
return ret;
|
||||
|
|
Loading…
Reference in New Issue