Commit 84d29df0 authored by Michael Niedermayer's avatar Michael Niedermayer

g723_1dec: remove unneeded cliping that leaked in from merge from libav

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a9040a11
......@@ -257,7 +257,6 @@ static int scale_vector(int16_t *dst, const int16_t *vector, int length)
for (i = 0; i < length; i++)
max |= FFABS(vector[i]);
max = FFMIN(max, 0x7FFF);
bits = normalize_bits(max, 15);
if (bits == 15)
......
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