Commit dc81f382 authored by vitor's avatar vitor

Provide a default for request_frame() which does the right thing for simple

filters.

Commited in SoC by Bobby Bingham on 2007-07-08 16:55:09


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11983 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 87ad51f2
...@@ -191,7 +191,12 @@ AVFilterPicRef *avfilter_get_video_buffer(AVFilterLink *link, int perms) ...@@ -191,7 +191,12 @@ AVFilterPicRef *avfilter_get_video_buffer(AVFilterLink *link, int perms)
void avfilter_request_frame(AVFilterLink *link) void avfilter_request_frame(AVFilterLink *link)
{ {
link->src->filter->outputs[link->srcpad].request_frame(link); const AVFilterPad *pad = &link->src->filter->outputs[link->srcpad];
if(pad->request_frame)
pad->request_frame(link);
else if(link->src->inputs[0])
avfilter_request_frame(link->src->inputs[0]);
} }
/* XXX: should we do the duplicating of the picture ref here, instead of /* XXX: should we do the duplicating of the picture ref here, instead of
......
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