summaryrefslogtreecommitdiff
path: root/libavfilter/af_volume.c
Commit message (Collapse)AuthorAge
* af_volume: implement replaygain clipping preventionAlessandro Ghedini2014-04-13
| | | | | | | This adds a new "replaygain_noclip" option to the filter, and, if enabled, limits the gain applied for tracks where clipping would occur. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* af_volume: implement replaygain pre-amplificationAlessandro Ghedini2014-04-04
| | | | | | | This adds a new "replaygain_preamp" option to the filter, and simply adds its value to the replaygain gain value. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* af_volume: support using replaygain frame side dataAnton Khirnov2014-03-24
|
* avfilter: Add missing emms_c when neededLuca Barbato2014-03-05
| | | | | | | | Arch specific calls should have an emms_c following to keep the cpu state consistent. Reported-By: wm4 CC: libav-stable@libav.org
* af_volume: preserve frame propertiesAnton Khirnov2014-02-24
|
* lavfi: do not export the filters from shared objectsAnton Khirnov2013-10-28
|
* avfilter: Add av_cold attributes to init/uninit functionsDiego Biurrun2013-05-04
|
* lavfi: remove now unused args parameter from AVFilter.initAnton Khirnov2013-04-09
|
* af_volume: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* Replace remaining includes of audioconvert.h with channel_layout.hAnton Khirnov2013-03-08
|
* lavfi: switch to AVFrame.Anton Khirnov2013-03-08
| | | | | Deprecate AVFilterBuffer/AVFilterBufferRef and everything related to it and use AVFrame instead.
* x86: af_volume: add SSE2-optimized s16 volume scalingJustin Ruggles2012-12-05
|
* lavfi: add volume filterJustin Ruggles2012-12-05
Based on the volume filter in FFmpeg written by Stefano Sabatini <stefasab@gmail.com>.