diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-05-21 21:27:59 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-05-23 16:37:34 -0400 |
commit | c7448c182a701b4c6efc52e0224bcbecc1aa6c3b (patch) | |
tree | d57d6e0ae5394ecc4731a6f74e0f6f1afba721b7 /libavfilter/allfilters.c | |
parent | 1e8561e36931d6e2c4294702907ca0beb4cba3b6 (diff) | |
download | ffmpeg-c7448c182a701b4c6efc52e0224bcbecc1aa6c3b.tar.gz |
lavfi: add audio mix filter
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r-- | libavfilter/allfilters.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c index 316fff1798..941ca6a20d 100644 --- a/libavfilter/allfilters.c +++ b/libavfilter/allfilters.c @@ -35,6 +35,7 @@ void avfilter_register_all(void) initialized = 1; REGISTER_FILTER (AFORMAT, aformat, af); + REGISTER_FILTER (AMIX, amix, af); REGISTER_FILTER (ANULL, anull, af); REGISTER_FILTER (ASPLIT, asplit, af); REGISTER_FILTER (ASYNCTS, asyncts, af); |