Searched refs:ARCoefQ12 (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | entropy_coding.c | 210 static void CalcInvArSpec(const int16_t *ARCoefQ12, in CalcInvArSpec() argument 223 sum += WEBRTC_SPL_MUL(ARCoefQ12[n], ARCoefQ12[n]); /* Q24 */ in CalcInvArSpec() 241 sum += WEBRTC_SPL_MUL(ARCoefQ12[n-k], ARCoefQ12[n]); /* Q24 */ in CalcInvArSpec() 285 static void CalcRootInvArSpec(const int16_t *ARCoefQ12, in CalcRootInvArSpec() argument 301 sum += WEBRTC_SPL_MUL(ARCoefQ12[n], ARCoefQ12[n]); /* Q24 */ in CalcRootInvArSpec() 319 sum += WEBRTC_SPL_MUL(ARCoefQ12[n-k], ARCoefQ12[n]); /* Q24 */ in CalcRootInvArSpec() 481 int16_t ARCoefQ12[AR_ORDER+1]; in WebRtcIsacfix_DecodeSpec() local 496 WebRtcSpl_ReflCoefToLpc(RCQ15, AR_ORDER, ARCoefQ12); in WebRtcIsacfix_DecodeSpec() 502 CalcInvArSpec(ARCoefQ12, gain2_Q10, invARSpec2_Q16); in WebRtcIsacfix_DecodeSpec() 552 int16_t ARCoefQ12[AR_ORDER+1]; in WebRtcIsacfix_EncodeSpec() local [all …]
|
/external/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | entropy_coding.c | 95 static void FindInvArSpec(const int16_t* ARCoefQ12, in FindInvArSpec() argument 107 sum += WEBRTC_SPL_MUL(ARCoefQ12[n], ARCoefQ12[n]); /* Q24 */ in FindInvArSpec() 127 sum += WEBRTC_SPL_MUL(ARCoefQ12[n - k], ARCoefQ12[n]); /* Q24 */ in FindInvArSpec() 274 int16_t ARCoefQ12[AR_ORDER + 1]; in WebRtcIsac_DecodeSpec() local 299 WebRtcSpl_ReflCoefToLpc(RCQ15, AR_ORDER, ARCoefQ12); in WebRtcIsac_DecodeSpec() 305 FindInvArSpec(ARCoefQ12, gain2_Q10, invARSpec2_Q16); in WebRtcIsac_DecodeSpec() 400 int16_t ARCoefQ12[AR_ORDER + 1]; in WebRtcIsac_EncodeSpec() local 525 WebRtcSpl_ReflCoefToLpc(RCQ15, AR_ORDER, ARCoefQ12); in WebRtcIsac_EncodeSpec() 531 nrg += (ARCoefQ12[j] * ((CorrQ7_norm[j - n] * ARCoefQ12[n] + 256) >> 9) + in WebRtcIsac_EncodeSpec() 535 nrg += (ARCoefQ12[j] * ((CorrQ7_norm[n - j] * ARCoefQ12[n] + 256) >> 9) + in WebRtcIsac_EncodeSpec() [all …]
|