summaryrefslogtreecommitdiff
path: root/libavfilter/allfilters.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-09-29 00:38:13 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2012-12-05 11:23:37 -0500
commitb384e031daeb1ac612620985e3e5377bc587559c (patch)
treec4f2b37f2578f7bc30ba67ec6570330324d0b6aa /libavfilter/allfilters.c
parent9d5c62ba5b586c80af508b5914934b1c439f6652 (diff)
lavfi: add volume filter
Based on the volume filter in FFmpeg written by Stefano Sabatini <stefasab@gmail.com>.
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 d7a7b07faf..0d7cbc2d09 100644
--- a/libavfilter/allfilters.c
+++ b/libavfilter/allfilters.c
@@ -46,6 +46,7 @@ void avfilter_register_all(void)
REGISTER_FILTER (CHANNELSPLIT,channelsplit,af);
REGISTER_FILTER (JOIN, join, af);
REGISTER_FILTER (RESAMPLE, resample, af);
+ REGISTER_FILTER (VOLUME, volume, af);
REGISTER_FILTER (ANULLSRC, anullsrc, asrc);