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
2018-01-04avfilter: pass outlink to ff_get_audio_buffer()Paul B Mahol
This is more correct. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2017-11-19avfilter: fix indentationPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2017-09-12lavfi/af_sidechaincompress: use helper macros.Nicolas George
2017-08-24avfilter/af_sidechaincompress: switch to activatePaul B Mahol
2017-05-20avfilter/af_sidechaincompress: change default makeup gain to 1Paul B Mahol
This avoids producing out of range or clipped samples. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-02-03avfilter/af_sidechaincompress: Free out frame on errorMichael Niedermayer
Fix memleak Fixes CID1197065 part 2 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-01-15avfilter/af_sidechaincompress & af_agate: use audio fifo from lavuPaul B Mahol
Fixes regression causing segfault. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-12-03avfilter/af_sidechaincompress: kill init functionPaul B Mahol
Should make addition of process_command easier. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-11-30avfilter/af_sidechaincompress: do not require writable input frames for ↵Paul B Mahol
acompressor filter Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-11-30avfilter/af_sidechaincompress: add level_in and level_sc optionsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-11-29avfilter/af_sidechaincompress: fix output gain for rms(default) detectionPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-11-28avfilter: add audio compressor filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-11-25avfilter/af_sidechaincompress: add forgotten optionPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-10-14avfilter/all: propagate errors of functions from avfilter/formatsGanesh Ajjanagadde
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>
2015-10-13avfilter/af_sidechaincompress: replace FFABS with fabsGanesh Ajjanagadde
2015-09-22avfilter: add agate filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17avfilter/af_sidechaincompress: do not use floatsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17avfilter/af_sidechaincompress: use doubles instead of floatsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-12avfilter: use ff_all_channel_counts() instead of ff_all_channel_layouts()Paul B Mahol
Fixes playback of some files with ffplay. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-04avfilter/af_sidechaincompress: Also assert that i < 2Michael Niedermayer
This should help static analyzers (CID1322339) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-07-26avfilter: add sidechain compress audio filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>