Lines Matching defs:index
61 uint16_t lsp[4]; ///< index into LSP codebook
66 uint8_t fcb_gain[3]; ///< fixed codebook gain index
67 uint8_t energy_gain; ///< frame energy gain index
318 const float *prev, int index)
322 1.0 - lsp_interpolation_factors[index],
323 lsp_interpolation_factors[index], FILTER_ORDER);
331 static void interpolate_delay(float *dst, float current, float prev, int index)
334 dst[0] = (1.0 - d_interpolation_factors[index ]) * prev
335 + d_interpolation_factors[index ] * current;
336 dst[1] = (1.0 - d_interpolation_factors[index + 1]) * prev
337 + d_interpolation_factors[index + 1] * current;
338 dst[2] = (1.0 - d_interpolation_factors[index + 2]) * prev
339 + d_interpolation_factors[index + 2] * current;