|
|
|
@@ -41,7 +41,7 @@ int ff_g723_1_scale_vector(int16_t *dst, const int16_t *vector, int length) |
|
|
|
bits= FFMAX(bits, 0); |
|
|
|
|
|
|
|
for (i = 0; i < length; i++) |
|
|
|
dst[i] = vector[i] << bits >> 3; |
|
|
|
dst[i] = (vector[i] * (1 << bits)) >> 3; |
|
|
|
|
|
|
|
return bits - 3; |
|
|
|
} |
|
|
|
@@ -125,9 +125,9 @@ static void lsp2lpc(int16_t *lpc) |
|
|
|
for (j = 0; j < LPC_ORDER; j++) { |
|
|
|
int index = (lpc[j] >> 7) & 0x1FF; |
|
|
|
int offset = lpc[j] & 0x7f; |
|
|
|
int temp1 = cos_tab[index] << 16; |
|
|
|
int temp1 = cos_tab[index] * (1 << 16); |
|
|
|
int temp2 = (cos_tab[index + 1] - cos_tab[index]) * |
|
|
|
((offset << 8) + 0x80) << 1; |
|
|
|
(((offset << 8) + 0x80) << 1); |
|
|
|
|
|
|
|
lpc[j] = -(av_sat_dadd32(1 << 15, temp1 + temp2) >> 16); |
|
|
|
} |
|
|
|
@@ -138,11 +138,11 @@ static void lsp2lpc(int16_t *lpc) |
|
|
|
*/ |
|
|
|
/* Initialize with values in Q28 */ |
|
|
|
f1[0] = 1 << 28; |
|
|
|
f1[1] = (lpc[0] << 14) + (lpc[2] << 14); |
|
|
|
f1[1] = (lpc[0] + lpc[2]) * (1 << 14); |
|
|
|
f1[2] = lpc[0] * lpc[2] + (2 << 28); |
|
|
|
|
|
|
|
f2[0] = 1 << 28; |
|
|
|
f2[1] = (lpc[1] << 14) + (lpc[3] << 14); |
|
|
|
f2[1] = (lpc[1] + lpc[3]) * (1 << 14); |
|
|
|
f2[2] = lpc[1] * lpc[3] + (2 << 28); |
|
|
|
|
|
|
|
/* |
|
|
|
@@ -162,8 +162,8 @@ static void lsp2lpc(int16_t *lpc) |
|
|
|
|
|
|
|
f1[0] >>= 1; |
|
|
|
f2[0] >>= 1; |
|
|
|
f1[1] = ((lpc[2 * i] << 16 >> i) + f1[1]) >> 1; |
|
|
|
f2[1] = ((lpc[2 * i + 1] << 16 >> i) + f2[1]) >> 1; |
|
|
|
f1[1] = ((lpc[2 * i] * 65536 >> i) + f1[1]) >> 1; |
|
|
|
f2[1] = ((lpc[2 * i + 1] * 65536 >> i) + f2[1]) >> 1; |
|
|
|
} |
|
|
|
|
|
|
|
/* Convert polynomial coefficients to LPC coefficients */ |
|
|
|
@@ -171,8 +171,8 @@ static void lsp2lpc(int16_t *lpc) |
|
|
|
int64_t ff1 = f1[i + 1] + f1[i]; |
|
|
|
int64_t ff2 = f2[i + 1] - f2[i]; |
|
|
|
|
|
|
|
lpc[i] = av_clipl_int32(((ff1 + ff2) << 3) + (1 << 15)) >> 16; |
|
|
|
lpc[LPC_ORDER - i - 1] = av_clipl_int32(((ff1 - ff2) << 3) + |
|
|
|
lpc[i] = av_clipl_int32(((ff1 + ff2) * 8) + (1 << 15)) >> 16; |
|
|
|
lpc[LPC_ORDER - i - 1] = av_clipl_int32(((ff1 - ff2) * 8) + |
|
|
|
(1 << 15)) >> 16; |
|
|
|
} |
|
|
|
} |
|
|
|
|