mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-22 23:33:11 +00:00
avfilter/af_aiir: do not ignore k option for audio filtering
Previously it was used only for displaying frequency response.
This commit is contained in:
parent
81d3d7dd44
commit
60e6db2f5b
@ -135,6 +135,7 @@ static int iir_ch_## name(AVFilterContext *ctx, void *arg, int ch, int nb_jobs)
|
|||||||
const int nb_b = s->iir[ch].nb_ab[1]; \
|
const int nb_b = s->iir[ch].nb_ab[1]; \
|
||||||
const double *a = s->iir[ch].ab[0]; \
|
const double *a = s->iir[ch].ab[0]; \
|
||||||
const double *b = s->iir[ch].ab[1]; \
|
const double *b = s->iir[ch].ab[1]; \
|
||||||
|
const double g = s->iir[ch].g; \
|
||||||
int *clippings = &s->iir[ch].clippings; \
|
int *clippings = &s->iir[ch].clippings; \
|
||||||
type *dst = (type *)out->extended_data[ch]; \
|
type *dst = (type *)out->extended_data[ch]; \
|
||||||
int n; \
|
int n; \
|
||||||
@ -153,7 +154,7 @@ static int iir_ch_## name(AVFilterContext *ctx, void *arg, int ch, int nb_jobs)
|
|||||||
sample -= a[x] * oc[x]; \
|
sample -= a[x] * oc[x]; \
|
||||||
\
|
\
|
||||||
oc[0] = sample; \
|
oc[0] = sample; \
|
||||||
sample *= og; \
|
sample *= og * g; \
|
||||||
sample = sample * mix + ic[0] * (1. - mix); \
|
sample = sample * mix + ic[0] * (1. - mix); \
|
||||||
if (need_clipping && sample < min) { \
|
if (need_clipping && sample < min) { \
|
||||||
(*clippings)++; \
|
(*clippings)++; \
|
||||||
@ -186,6 +187,7 @@ static int iir_ch_serial_## name(AVFilterContext *ctx, void *arg, int ch, int nb
|
|||||||
const type *src = (const type *)in->extended_data[ch]; \
|
const type *src = (const type *)in->extended_data[ch]; \
|
||||||
type *dst = (type *)out->extended_data[ch]; \
|
type *dst = (type *)out->extended_data[ch]; \
|
||||||
IIRChannel *iir = &s->iir[ch]; \
|
IIRChannel *iir = &s->iir[ch]; \
|
||||||
|
const double g = iir->g; \
|
||||||
int *clippings = &iir->clippings; \
|
int *clippings = &iir->clippings; \
|
||||||
int nb_biquads = (FFMAX(iir->nb_ab[0], iir->nb_ab[1]) + 1) / 2; \
|
int nb_biquads = (FFMAX(iir->nb_ab[0], iir->nb_ab[1]) + 1) / 2; \
|
||||||
int n, i; \
|
int n, i; \
|
||||||
@ -209,7 +211,7 @@ static int iir_ch_serial_## name(AVFilterContext *ctx, void *arg, int ch, int nb
|
|||||||
i1 = src[n]; \
|
i1 = src[n]; \
|
||||||
o2 = o1; \
|
o2 = o1; \
|
||||||
o1 = o0; \
|
o1 = o0; \
|
||||||
o0 *= og; \
|
o0 *= og * g; \
|
||||||
\
|
\
|
||||||
o0 = o0 * mix + (1. - mix) * sample; \
|
o0 = o0 * mix + (1. - mix) * sample; \
|
||||||
if (need_clipping && o0 < min) { \
|
if (need_clipping && o0 < min) { \
|
||||||
|
Loading…
Reference in New Issue
Block a user