diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-16 10:43:53 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-16 10:43:53 +0000 |
commit | dd08b83c876275ae4741225a4820997c935b956d (patch) | |
tree | 6ecfa50d3f7873c16e546f861e76d9fe835c206a /libavfilter/allfilters.c | |
parent | e1bb0364f848978785a956dcb209d025427a5f77 (diff) | |
download | ffmpeg-dd08b83c876275ae4741225a4820997c935b956d.tar.gz |
Implement null video source.
Originally committed as revision 21240 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index a4cbdade86..81eec21598 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -41,4 +41,6 @@ void avfilter_register_all(void) REGISTER_FILTER (SCALE, scale, vf); REGISTER_FILTER (SLICIFY, slicify, vf); REGISTER_FILTER (VFLIP, vflip, vf); + + REGISTER_FILTER (NULLSRC, nullsrc, vsrc); } |