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
2019-07-13avfilter/af_aiir: calculate group delay tooPaul B Mahol
2019-07-13avfilter/af_aiir: do not ignore k option for audio filteringPaul B Mahol
Previously it was used only for displaying frequency response.
2019-07-08avfilter/af_aiir: implement mix optionPaul B Mahol
2018-11-08avfilter/af_aiir: implement rate optionPaul B Mahol
2018-10-07avfilter/af_aiir: Remove l from %lf in av_log environmentMichael Niedermayer
The l modifier does nothing in C99 and it was undefined in C89 for %f Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2018-07-20lavfi/af_afir,af_aiir: Remove a variable that is always -1.Carl Eugen Hoyos
Fixes two warnings: libavfilter/af_afir.c:194:45: warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Wstrict-overflow] int dx = FFABS(x1-x0), sx = x0 < x1 ? 1 : -1; ~~~~~~~~~~~~^~~~ libavfilter/af_aiir.c:689:45: warning: assuming signed overflow does not occur when assuming that (X - c) > X is always false [-Wstrict-overflow] int dx = FFABS(x1-x0), sx = x0 < x1 ? 1 : -1; ~~~~~~~~~~~~^~~~
2018-05-30avfilter/af_aiir: draw IR frequency responsePaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-10avfilter/af_aiir: add polar zeros/poles format variantPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-10avfilter/af_aiir: unbreak clipping detectionPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-10avfilter/af_aiir: do not leak memory on failure in convert_zp2tf()Paul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-09avfilter/af_aiir: refactor code so it uses IIRChannel structPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-09avfilter/af_aiir: make default processing to serially cascadedPaul B Mahol
Also add several helpfull log messages. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-09avfilter/af_aiir: add slice threading supportPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-09avfilter/af_aiir: add cascaded biquads supportPaul B Mahol
Also add precision option. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-08avfilter/af_aiir: do not forget to free gains tooPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-08avfilter/af_aiir: fix typo which may cause overreadPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-07avfilter/af_aiir: rename options, provide gains in separate optionPaul B Mahol
This way it can be also used for other format. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-07avfilter/af_aiir: add support for alternative coefficients formatPaul B Mahol
Support for zeros/poles syntax on Z-plane. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-05avfilter/af_aiir: do not crash with invalid optionsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-01-05avfilter: add arbitrary audio IIR filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>