mirror of https://git.ffmpeg.org/ffmpeg.git
ffmpeg: do not report EOF on filters as an error.
Also print the error message in case of real error.
This commit is contained in:
parent
ac30754a14
commit
0dfb4d4b43
3
ffmpeg.c
3
ffmpeg.c
|
@ -2213,7 +2213,8 @@ static int ifilter_send_frame(InputFilter *ifilter, AVFrame *frame)
|
|||
|
||||
ret = av_buffersrc_add_frame_flags(ifilter->filter, frame, AV_BUFFERSRC_FLAG_PUSH);
|
||||
if (ret < 0) {
|
||||
av_log(NULL, AV_LOG_ERROR, "Error while filtering\n");
|
||||
if (ret != AVERROR_EOF)
|
||||
av_log(NULL, AV_LOG_ERROR, "Error while filtering: %s\n", av_err2str(ret));
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue