diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-25 01:56:58 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-09-25 01:56:58 +0000 |
commit | 1ee410f330d3b57b0ea1ccb915977f2ba4d99815 (patch) | |
tree | 735cbaa2b222cd3e8231fad931d2294266f9a527 /libavfilter/allfilters.c | |
parent | 6afd569e1df3cb02f89f85d9bc70e53edc1d23c6 (diff) | |
download | ffmpeg-1ee410f330d3b57b0ea1ccb915977f2ba4d99815.tar.gz |
Add asrc_anullsrc - null audio source.
Based on a patch by "S.N. Hemanth Meenakshisundaram" smeenaks!ucsd!edu.
Originally committed as revision 25188 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 c879f11e32..a29a2740e3 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -36,6 +36,8 @@ void avfilter_register_all(void) REGISTER_FILTER (ANULL, anull, af); + REGISTER_FILTER (ANULLSRC, anullsrc, asrc); + REGISTER_FILTER (ASPECT, aspect, vf); REGISTER_FILTER (CROP, crop, vf); REGISTER_FILTER (FIFO, fifo, vf); |