From 5612863563b14b56221a23643d984b429c6f3a07 Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Sat, 9 Nov 2013 16:59:00 +0100 Subject: fixed replaygain for 32bit streams --- replaygain.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'replaygain.c') diff --git a/replaygain.c b/replaygain.c index 764b98df..5f3be0e4 100644 --- a/replaygain.c +++ b/replaygain.c @@ -211,12 +211,6 @@ apply_replay_gain_int32 (playItem_t *it, char *bytes, int size) { int32_t *s = (int32_t*)bytes; for (int j = 0; j < size/4; j++) { int64_t sample = ((int32_t)(*s)) * vol / 1000; - if (sample > 0x7fffffff) { - sample = 0x7fffffff; - } - else if (sample < -0x80000000) { - sample = -0x80000000; - } *s = (int32_t)sample; s++; } -- cgit v1.2.3