summaryrefslogtreecommitdiff
path: root/libavfilter/allfilters.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2012-06-08 18:42:53 -0700
committerAlex Converse <alex.converse@gmail.com>2012-06-22 13:55:58 -0700
commit41e637e44902246efa17babf26e9be8a4a519e6f (patch)
treeb63208f4423f4f7475afc5e945e1d2853151881a /libavfilter/allfilters.c
parentdc07fb6f7b8fe0f7febdd89e21d23ac50ae920ec (diff)
lavfi: Add the af_channelmap audio channel mapping filter.
Inspired by MPlayer's af_channels filter and SoX's remix effect.
Diffstat (limited to 'libavfilter/allfilters.c')
-rw-r--r--libavfilter/allfilters.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c
index 786c2dea7b..9c22b4fe9e 100644
--- a/libavfilter/allfilters.c
+++ b/libavfilter/allfilters.c
@@ -40,6 +40,7 @@ void avfilter_register_all(void)
REGISTER_FILTER (ANULL, anull, af);
REGISTER_FILTER (ASPLIT, asplit, af);
REGISTER_FILTER (ASYNCTS, asyncts, af);
+ REGISTER_FILTER (CHANNELMAP, channelmap, af);
REGISTER_FILTER (CHANNELSPLIT,channelsplit,af);
REGISTER_FILTER (JOIN, join, af);
REGISTER_FILTER (RESAMPLE, resample, af);