diff --git a/libavcodec/g729data.h b/libavcodec/g729data.h index 02d0b938af..05b40416dd 100644 --- a/libavcodec/g729data.h +++ b/libavcodec/g729data.h @@ -247,6 +247,25 @@ static const int16_t cb_gain_2nd_8k[1<> (value >> 2)) & 1; } +/* + * Decodes LSF (Line Spectral Frequencies) from L0-L3 (3.2.4). + * @param lsfq [out] (2.13) quantized LSF coefficients + * @param past_quantizer_outputs [in/out] (2.13) quantizer outputs from previous frames + * @param ma_predictor switched MA predictor of LSP quantizer + * @param vq_1st first stage vector of quantizer + * @param vq_2nd_low second stage lower vector of LSP quantizer + * @param vq_2nd_high second stage higher vector of LSP quantizer + */ static void lsf_decode(int16_t* lsfq, int16_t* past_quantizer_outputs[MA_NP + 1], int16_t ma_predictor, int16_t vq_1st, int16_t vq_2nd_low, int16_t vq_2nd_high)