From b62966c02e72734c57b1adaeed28901abd4709ab Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Fri, 15 Feb 2008 21:40:23 +0000 Subject: [PATCH] Add movie file video source filter. Commited in SoC by on 2008-01-31 20:55:50 Originally committed as revision 12038 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/avfilter.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 16c15a0131..08e6aaefc8 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -308,6 +308,9 @@ void avfilter_init(void) avfilter_register(&avfilter_vf_split); avfilter_register(&avfilter_vf_transpose); avfilter_register(&avfilter_vf_vflip); +#ifdef CONFIG_AVFILTER_LAVF + avfilter_register(&avfilter_vsrc_movie); +#endif //CONFIG_AVFILTER_LAVF } void avfilter_uninit(void)