Browse Source

g723_1: make scale_vector() behave like the reference

tags/n1.0
Kostya Shishkov 13 years ago
parent
commit
8ddadea171
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavcodec/g723_1.c

+ 3
- 2
libavcodec/g723_1.c View File

@@ -282,7 +282,8 @@ static int normalize_bits(int num, int width)
*/
static int scale_vector(int16_t *vector, int length)
{
int bits, scale, max = 0;
int bits, max = 0;
int64_t scale;
int i;


@@ -293,7 +294,7 @@ static int scale_vector(int16_t *vector, int length)
scale = (bits == 15) ? 0x7FFF : (1 << bits);

for (i = 0; i < length; i++)
vector[i] = (vector[i] * scale) >> 4;
vector[i] = av_clipl_int32(vector[i] * scale << 1) >> 4;

return bits - 3;
}


Loading…
Cancel
Save