You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-30 22:24:04 +02:00
g723_1dec: remove dead code that leaked in from libav
It appears someone thinks this special case can be reached Well, it cannot, thus not only do we not need to optimize it we dont need it at all Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -259,10 +259,6 @@ static int scale_vector(int16_t *dst, const int16_t *vector, int length)
|
|||||||
|
|
||||||
bits = normalize_bits(max, 15);
|
bits = normalize_bits(max, 15);
|
||||||
|
|
||||||
if (bits == 15)
|
|
||||||
for (i = 0; i < length; i++)
|
|
||||||
dst[i] = vector[i] * 0x7fff >> 3;
|
|
||||||
else
|
|
||||||
for (i = 0; i < length; i++)
|
for (i = 0; i < length; i++)
|
||||||
dst[i] = vector[i] << bits >> 3;
|
dst[i] = vector[i] << bits >> 3;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user