diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-16 11:05:36 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-16 11:05:36 +0000 |
commit | 006aa1a4c2307209ad11c3ad0ad1d888c8df98fe (patch) | |
tree | 85af93f110b3659db117614b4051cf3737b83155 /libavfilter/allfilters.c | |
parent | 864a0742134187260257396d9de3c8c06d5d1122 (diff) | |
download | ffmpeg-006aa1a4c2307209ad11c3ad0ad1d888c8df98fe.tar.gz |
Implement null video sink.
Originally committed as revision 21242 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 81eec21598..4be7642da9 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -43,4 +43,6 @@ void avfilter_register_all(void) REGISTER_FILTER (VFLIP, vflip, vf); REGISTER_FILTER (NULLSRC, nullsrc, vsrc); + + REGISTER_FILTER(NULLSINK, nullsink, vsink); } |