diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:40:23 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 21:40:23 +0000 |
commit | b62966c02e72734c57b1adaeed28901abd4709ab (patch) | |
tree | dc33f500f3ff9e31837bab69a3c3ce4b4d1c9bf5 | |
parent | 0970ec6ae09a4f8ee9ffe815bb984cdec88410ee (diff) | |
download | ffmpeg-b62966c02e72734c57b1adaeed28901abd4709ab.tar.gz |
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
-rw-r--r-- | libavfilter/avfilter.c | 3 |
1 files changed, 3 insertions, 0 deletions
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) |