You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
vsrc_buffer: return EAGAIN if no frame is available.
This is not an erroneous condition, do not print a warning.
This commit is contained in:
@@ -249,9 +249,7 @@ static int request_frame(AVFilterLink *link)
|
|||||||
if (!av_fifo_size(c->fifo)) {
|
if (!av_fifo_size(c->fifo)) {
|
||||||
if (c->eof)
|
if (c->eof)
|
||||||
return AVERROR_EOF;
|
return AVERROR_EOF;
|
||||||
av_log(link->src, AV_LOG_WARNING,
|
return AVERROR(EAGAIN);
|
||||||
"request_frame() called with no available frame!\n");
|
|
||||||
return AVERROR(EINVAL);
|
|
||||||
}
|
}
|
||||||
av_fifo_generic_read(c->fifo, &buf, sizeof(buf), NULL);
|
av_fifo_generic_read(c->fifo, &buf, sizeof(buf), NULL);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user