lavfi: add volume filter

Based on the volume filter in FFmpeg written by Stefano Sabatini
<stefasab@gmail.com>.
This commit is contained in:
Justin Ruggles
2012-09-29 00:38:13 -04:00
parent 9d5c62ba5b
commit b384e031da
7 changed files with 424 additions and 1 deletions

View File

@@ -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);