Commit fb25d99b authored by Anton Khirnov's avatar Anton Khirnov

buffersrc: do not discard the error from ff_filter_frame()

parent f7d77b9a
......@@ -327,7 +327,7 @@ static int request_frame(AVFilterLink *link)
}
av_fifo_generic_read(c->fifo, &frame, sizeof(frame), NULL);
ff_filter_frame(link, frame);
ret = ff_filter_frame(link, frame);
return ret;
}
......
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