summaryrefslogtreecommitdiff
path: root/libavfilter/af_sidechaincompress.c
Commit message (Collapse)AuthorAge
* lavfi: regroup formats lists in a single structure.Nicolas George2020-09-08
| | | | | | | | | | | | | | | It will allow to refernce it as a whole without clunky macros. Most of the changes have been automatically made with sed: sed -i ' s/-> *in_formats/->incfg.formats/g; s/-> *out_formats/->outcfg.formats/g; s/-> *in_channel_layouts/->incfg.channel_layouts/g; s/-> *out_channel_layouts/->outcfg.channel_layouts/g; s/-> *in_samplerates/->incfg.samplerates/g; s/-> *out_samplerates/->outcfg.samplerates/g; ' src/libavfilter/*(.)
* avfilter/af_sidechaincompress: add support for commandsPaul B Mahol2020-01-06
|
* avfilter/af_sidechaincompress: fix pts handling when timebase and ↵Paul B Mahol2019-11-17
| | | | 1/samplerate differ
* avfilter/af_sidechaincompress: implement mode optionPaul B Mahol2019-04-17
|
* avfilter: pass outlink to ff_get_audio_buffer()Paul B Mahol2018-01-03
| | | | | | This is more correct. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter: fix indentationPaul B Mahol2017-11-19
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi/af_sidechaincompress: use helper macros.Nicolas George2017-09-12
|
* avfilter/af_sidechaincompress: switch to activatePaul B Mahol2017-08-24
|
* 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>