Home
last modified time | relevance | path

Searched refs:coeffCntr (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dencode_lpc_swb.c52 int16_t coeffCntr; in WebRtcIsac_RemoveLarMean() local
76 for(coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) in WebRtcIsac_RemoveLarMean()
79 *lar++ -= meanLAR[coeffCntr]; in WebRtcIsac_RemoveLarMean()
181 int16_t coeffCntr; in WebRtcIsac_DecorrelateInterVec() local
214 for(coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) in WebRtcIsac_DecorrelateInterVec()
218 out[coeffCntr + colCntr * UB_LPC_ORDER] = 0; in WebRtcIsac_DecorrelateInterVec()
221 out[coeffCntr + colCntr * UB_LPC_ORDER] += in WebRtcIsac_DecorrelateInterVec()
222 data[coeffCntr + rowCntr * UB_LPC_ORDER] * in WebRtcIsac_DecorrelateInterVec()
439 int16_t coeffCntr; in WebRtcIsac_CorrelateInterVec() local
464 for(coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) in WebRtcIsac_CorrelateInterVec()
[all …]
Dentropy_coding.c749 int polyCntr, coeffCntr; in WebRtcIsac_Lar2PolyInterpolUB() local
755 for (coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) { in WebRtcIsac_Lar2PolyInterpolUB()
756 delta[coeffCntr] = (larVecs[UB_LPC_ORDER + coeffCntr] - in WebRtcIsac_Lar2PolyInterpolUB()
757 larVecs[coeffCntr]) / (numPolyVecs - 1); in WebRtcIsac_Lar2PolyInterpolUB()
761 for (coeffCntr = 0; coeffCntr < UB_LPC_ORDER; coeffCntr++) { in WebRtcIsac_Lar2PolyInterpolUB()
762 larInterpol[coeffCntr] = larVecs[coeffCntr] + in WebRtcIsac_Lar2PolyInterpolUB()
763 delta[coeffCntr] * polyCntr; in WebRtcIsac_Lar2PolyInterpolUB()