From 90a1ca02a23608d375d319e5c1208db77427818c Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 27 Apr 2017 00:15:22 +0200 Subject: audio: fix replaygain volume scale The new replaygain code accidentally applied the linear gain as cubic volume level. Fix this by moving the computation of the volume scale out of the af_volume filter. (Still haven't verified whether the replaygain code works correctly.) --- player/audio.c | 1 + 1 file changed, 1 insertion(+) (limited to 'player') diff --git a/player/audio.c b/player/audio.c index dd464614d9..ea013b02e2 100644 --- a/player/audio.c +++ b/player/audio.c @@ -176,6 +176,7 @@ void audio_update_volume(struct MPContext *mpctx) return; float gain = MPMAX(opts->softvol_volume / 100.0, 0); + gain = pow(gain, 3); gain *= compute_replaygain(mpctx); if (opts->softvol_mute == 1) gain = 0.0; -- cgit v1.2.3