avfilter/af_biquads: fix bandpass for zdf

This commit is contained in:
Paul B Mahol 2022-10-07 13:28:03 +02:00
parent fce8b90851
commit 3d6d127cd0
1 changed files with 1 additions and 1 deletions

View File

@ -729,7 +729,7 @@ static void convert_dir2zdf(BiquadsContext *s, int sample_rate)
a[1] = g * a[0];
a[2] = g * a[1];
m[0] = 0.;
m[1] = s->csg ? 1. : 2.;
m[1] = s->csg ? 1. : k;
m[2] = 0.;
break;
case bandreject: