Commit cf06e3e4 authored by Stefano Sabatini's avatar Stefano Sabatini

vsrc_buffer: return an error code if no frames are available

Also decrease the log level of the corresponding message to WARNING,
since the error is not fatal.
parent 6b5e1825
......@@ -180,9 +180,9 @@ static int request_frame(AVFilterLink *link)
BufferSourceContext *c = link->src->priv;
if (!c->picref) {
av_log(link->src, AV_LOG_ERROR,
av_log(link->src, AV_LOG_WARNING,
"request_frame() called with no available frame!\n");
//return -1;
return AVERROR(EINVAL);
}
avfilter_start_frame(link, avfilter_ref_buffer(c->picref, ~0));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment