Commit 3bc711a2 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_headphone: do not reduce LFE gain too much

parent 84d1adb1
......@@ -795,7 +795,7 @@ static int config_output(AVFilterLink *outlink)
}
}
s->gain_lfe = expf((s->gain - 3 * inlink->channels - 6 + s->lfe_gain) / 20 * M_LN10);
s->gain_lfe = expf((s->gain - 3 * inlink->channels + s->lfe_gain) / 20 * M_LN10);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment