[FFmpeg-cvslog] r11983 - trunk/libavfilter/avfilter.c
vitor
subversion
Fri Feb 15 22:36:18 CET 2008
Author: vitor
Date: Fri Feb 15 22:36:17 2008
New Revision: 11983
Log:
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
Modified:
trunk/libavfilter/avfilter.c
Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c (original)
+++ trunk/libavfilter/avfilter.c Fri Feb 15 22:36:17 2008
@@ -191,7 +191,12 @@ AVFilterPicRef *avfilter_get_video_buffe
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
More information about the ffmpeg-cvslog
mailing list