summaryrefslogtreecommitdiff
path: root/libavfilter/af_sidechaincompress.c
Commit message (Collapse)AuthorAge
* avfilter/af_sidechaincompress: change default makeup gain to 1Paul B Mahol2017-05-20
| | | | | | This avoids producing out of range or clipped samples. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: Free out frame on errorMichael Niedermayer2016-02-03
| | | | | | | Fix memleak Fixes CID1197065 part 2 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/af_sidechaincompress & af_agate: use audio fifo from lavuPaul B Mahol2016-01-15
| | | | | | Fixes regression causing segfault. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: kill init functionPaul B Mahol2015-12-03
| | | | | | Should make addition of process_command easier. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: do not require writable input frames for ↵Paul B Mahol2015-11-30
| | | | | | acompressor filter Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: add level_in and level_sc optionsPaul B Mahol2015-11-30
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: fix output gain for rms(default) detectionPaul B Mahol2015-11-29
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: add audio compressor filterPaul B Mahol2015-11-28
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: add forgotten optionPaul B Mahol2015-11-25
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/all: propagate errors of functions from avfilter/formatsGanesh Ajjanagadde2015-10-14
| | | | | | | | | | | | | | | | | | Many of the functions from avfilter/formats can return errors, usually AVERROR(ENOMEM). This propagates the return values. All of these were found by using av_warn_unused_result, demonstrating its utility. Tested with FATE. I am least sure of the changes to avfilter/filtergraph, since I don't know what/how reduce_format is intended to behave and how it should react to errors. Fixes: CID 1325680, 1325679, 1325678. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Previous version Reviewed-by: Nicolas George <george@nsup.org> Previous version Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
* avfilter/af_sidechaincompress: replace FFABS with fabsGanesh Ajjanagadde2015-10-13
|
* avfilter: add agate filterPaul B Mahol2015-09-22
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: do not use floatsPaul B Mahol2015-09-17
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: use doubles instead of floatsPaul B Mahol2015-09-17
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: use ff_all_channel_counts() instead of ff_all_channel_layouts()Paul B Mahol2015-09-12
| | | | | | Fixes playback of some files with ffplay. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: Also assert that i < 2Michael Niedermayer2015-09-03
| | | | | | This should help static analyzers (CID1322339) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter: add sidechain compress audio filterPaul B Mahol2015-07-25
Signed-off-by: Paul B Mahol <onemda@gmail.com>