Lines Matching defs:lsfq
115 int16_t lsfq[10]; ///< (2.13) quantized LSF coefficients from previous frame
193 * @param[out] lsfq (2.13) quantized LSF coefficients
200 static void lsf_decode(int16_t* lsfq, int16_t* past_quantizer_outputs[MA_NP + 1],
228 lsfq[i] = sum >> 15;
231 ff_acelp_reorder_lsf(lsfq, LSFQ_DIFF_MIN, LSFQ_MIN, LSFQ_MAX, 10);
236 * @param[in,out] lsfq (2.13) quantized LSF coefficients
241 static void lsf_restore_from_previous(int16_t* lsfq,
249 int tmp = lsfq[i] << 15;
474 lsf_restore_from_previous(ctx->lsfq, ctx->past_quantizer_outputs,
477 lsf_decode(ctx->lsfq, ctx->past_quantizer_outputs,
488 ff_acelp_lsf2lsp(ctx->lsp[1], ctx->lsfq, 10);