mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 04:17:05 +00:00
avfilter/av_biquads: scale a0 too
Fixes bug when using commands to alter coefficients. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
bfe397e431
commit
50b3cd22dd
@ -382,6 +382,7 @@ static int config_filter(AVFilterLink *outlink, int reset)
|
||||
s->b0 /= s->a0;
|
||||
s->b1 /= s->a0;
|
||||
s->b2 /= s->a0;
|
||||
s->a0 /= s->a0;
|
||||
|
||||
s->cache = av_realloc_f(s->cache, sizeof(ChanCache), inlink->channels);
|
||||
if (!s->cache)
|
||||
|
Loading…
Reference in New Issue
Block a user