• Home
  • Raw
  • Download

Lines Matching refs:cur_lsp

1251 void ff_g723_1_lsp_interpolate(int16_t *lpc, int16_t *cur_lsp,  in ff_g723_1_lsp_interpolate()  argument
1258 ff_acelp_weighted_vector_sum(lpc, cur_lsp, prev_lsp, in ff_g723_1_lsp_interpolate()
1260 ff_acelp_weighted_vector_sum(lpc + LPC_ORDER, cur_lsp, prev_lsp, in ff_g723_1_lsp_interpolate()
1262 ff_acelp_weighted_vector_sum(lpc + 2 * LPC_ORDER, cur_lsp, prev_lsp, in ff_g723_1_lsp_interpolate()
1264 memcpy(lpc + 3 * LPC_ORDER, cur_lsp, LPC_ORDER * sizeof(*lpc)); in ff_g723_1_lsp_interpolate()
1272 void ff_g723_1_inverse_quant(int16_t *cur_lsp, int16_t *prev_lsp, in ff_g723_1_inverse_quant() argument
1289 cur_lsp[0] = ff_g723_1_lsp_band0[lsp_index[0]][0]; in ff_g723_1_inverse_quant()
1290 cur_lsp[1] = ff_g723_1_lsp_band0[lsp_index[0]][1]; in ff_g723_1_inverse_quant()
1291 cur_lsp[2] = ff_g723_1_lsp_band0[lsp_index[0]][2]; in ff_g723_1_inverse_quant()
1292 cur_lsp[3] = ff_g723_1_lsp_band1[lsp_index[1]][0]; in ff_g723_1_inverse_quant()
1293 cur_lsp[4] = ff_g723_1_lsp_band1[lsp_index[1]][1]; in ff_g723_1_inverse_quant()
1294 cur_lsp[5] = ff_g723_1_lsp_band1[lsp_index[1]][2]; in ff_g723_1_inverse_quant()
1295 cur_lsp[6] = ff_g723_1_lsp_band2[lsp_index[2]][0]; in ff_g723_1_inverse_quant()
1296 cur_lsp[7] = ff_g723_1_lsp_band2[lsp_index[2]][1]; in ff_g723_1_inverse_quant()
1297 cur_lsp[8] = ff_g723_1_lsp_band2[lsp_index[2]][2]; in ff_g723_1_inverse_quant()
1298 cur_lsp[9] = ff_g723_1_lsp_band2[lsp_index[2]][3]; in ff_g723_1_inverse_quant()
1303 cur_lsp[i] += dc_lsp[i] + temp; in ff_g723_1_inverse_quant()
1307 cur_lsp[0] = FFMAX(cur_lsp[0], 0x180); in ff_g723_1_inverse_quant()
1308 cur_lsp[LPC_ORDER - 1] = FFMIN(cur_lsp[LPC_ORDER - 1], 0x7e00); in ff_g723_1_inverse_quant()
1312 temp = min_dist + cur_lsp[j - 1] - cur_lsp[j]; in ff_g723_1_inverse_quant()
1315 cur_lsp[j - 1] -= temp; in ff_g723_1_inverse_quant()
1316 cur_lsp[j] += temp; in ff_g723_1_inverse_quant()
1321 temp = cur_lsp[j - 1] + min_dist - cur_lsp[j] - 4; in ff_g723_1_inverse_quant()
1331 memcpy(cur_lsp, prev_lsp, LPC_ORDER * sizeof(*cur_lsp)); in ff_g723_1_inverse_quant()