Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-02-01all: Make header guard names consistentTimothy Gu
2015-03-02avfilter/af_volume: Change enums to int, which are accessed via AVOption as intMichael Niedermayer
This fixes depending on implementation defined behavior Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-18avfilter/af_volume: Use avpriv_float_dsp_alloc()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-04-13Merge commit 'aaab192df24a90f4450285cfb73b395cf495b462'Michael Niedermayer
* commit 'aaab192df24a90f4450285cfb73b395cf495b462': af_volume: implement replaygain clipping prevention Conflicts: doc/filters.texi Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-04-13af_volume: implement replaygain clipping preventionAlessandro Ghedini
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>
2014-04-05Merge commit 'a49aa440c939e221194f8d95bf98673f8cf38a06'Michael Niedermayer
* commit 'a49aa440c939e221194f8d95bf98673f8cf38a06': af_volume: implement replaygain pre-amplification Conflicts: doc/filters.texi Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-04-04af_volume: implement replaygain pre-amplificationAlessandro Ghedini
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>
2014-03-24Merge commit '06c3cd3c0186803619bc6aad2d8f06c3e9015d15'Michael Niedermayer
* commit '06c3cd3c0186803619bc6aad2d8f06c3e9015d15': af_volume: support using replaygain frame side data Conflicts: doc/filters.texi libavfilter/af_volume.c libavfilter/af_volume.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-03-24af_volume: support using replaygain frame side dataAnton Khirnov
2013-12-25lavfi/volume: support volume expression and per-frame expression evaluationStefano Sabatini
The eval mode allows to evaluate the expression per-frame or just at init. In particular, address ticket #3234.
2012-12-06Merge commit 'b519298a1578e0c895d53d4b4ed8867b1c031a56'Michael Niedermayer
* commit 'b519298a1578e0c895d53d4b4ed8867b1c031a56': pixdesc: fix yuva 10bit bit depth avconv: deprecate the -vol option x86: af_volume: add SSE2/SSSE3/AVX-optimized s32 volume scaling x86: af_volume: add SSE2-optimized s16 volume scaling Conflicts: ffmpeg.c tests/ref/lavfi/pixdesc tests/ref/lavfi/pixfmts_copy tests/ref/lavfi/pixfmts_null tests/ref/lavfi/pixfmts_scale tests/ref/lavfi/pixfmts_vflip Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-12-06Merge commit 'b384e031daeb1ac612620985e3e5377bc587559c'Michael Niedermayer
* commit 'b384e031daeb1ac612620985e3e5377bc587559c': lavfi: add volume filter Conflicts: Changelog libavfilter/Makefile libavfilter/af_volume.c libavfilter/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-12-05lavfi: add volume filterJustin Ruggles
Based on the volume filter in FFmpeg written by Stefano Sabatini <stefasab@gmail.com>.
2012-12-05x86: af_volume: add SSE2-optimized s16 volume scalingJustin Ruggles