summaryrefslogtreecommitdiff
path: root/libavfilter/af_sidechaincompress.c
Commit message (Collapse)AuthorAgeFilesLines
* lavfi/af_sidechaincompress: use helper macros.Nicolas George2017-09-121-10/+5
|
* avfilter/af_sidechaincompress: switch to activatePaul B Mahol2017-08-241-54/+58
|
* avfilter/af_sidechaincompress: change default makeup gain to 1Paul B Mahol2017-05-201-1/+1
| | | | | | 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-031-1/+2
| | | | | | | 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-151-27/+50
| | | | | | Fixes regression causing segfault. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: kill init functionPaul B Mahol2015-12-031-16/+7
| | | | | | 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-301-10/+25
| | | | | | acompressor filter Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: add level_in and level_sc optionsPaul B Mahol2015-11-301-17/+24
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: fix output gain for rms(default) detectionPaul B Mahol2015-11-291-1/+3
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: add audio compressor filterPaul B Mahol2015-11-281-29/+128
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: add forgotten optionPaul B Mahol2015-11-251-1/+4
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/all: propagate errors of functions from avfilter/formatsGanesh Ajjanagadde2015-10-141-13/+6
| | | | | | | | | | | | | | | | | | 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-131-3/+3
|
* avfilter: add agate filterPaul B Mahol2015-09-221-23/+1
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: do not use floatsPaul B Mahol2015-09-171-2/+2
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: use doubles instead of floatsPaul B Mahol2015-09-171-7/+7
| | | | 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-121-1/+1
| | | | | | 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-031-1/+1
| | | | | | This should help static analyzers (CID1322339) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter: add sidechain compress audio filterPaul B Mahol2015-07-251-0/+338
Signed-off-by: Paul B Mahol <onemda@gmail.com>