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-09-15avfilter/af_afir: check return value of ff_insert_outpad()Paul B Mahol
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_afir: fix picking of IR channelPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-05-29avfilter/af_afir: draw IR frequency responsePaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2018-04-16avfilter/af_afir: make max IR length configurablePaul B Mahol
Also increase max allowed dry/wet value. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2017-12-31avfilter/af_afir: rework FIR gain measurementPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2017-11-20avfilter/af_afir: add missing error checkPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2017-05-10avfilter/af_afir: workaround nonsense limitation in vector_fmul_scalar()Paul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2017-05-09avfilter: add arbitrary audio FIR filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>