Searched refs:orderLo (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | entropy_coding.c | 738 int16_t orderLo, in Poly2LarFix() argument 749 orderTot = (orderLo + orderHi); in Poly2LarFix() 753 Rc2LarFix(lowbandQ15, larQ17, orderLo); in Poly2LarFix() 755 for (n = 0; n < orderLo; n++) in Poly2LarFix() 761 outpQ17[n + orderLo] = larQ17[n]; //Q17; in Poly2LarFix() 764 lowbandQ15 += orderLo; in Poly2LarFix() 772 int16_t orderLo, in Lar2polyFix() argument 783 orderTot = (orderLo + orderHi); in Lar2polyFix() 792 Lar2RcFix(&inpQ17[0], rcQ15, orderLo); in Lar2polyFix() 793 for (n = 0; n < orderLo; n++) in Lar2polyFix() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | entropy_coding.c | 648 void WebRtcIsac_Poly2Lar(double* lowband, int orderLo, double* hiband, in WebRtcIsac_Poly2Lar() argument 664 WebRtcIsac_Poly2Rc(inpl, orderLo, rc); in WebRtcIsac_Poly2Lar() 665 WebRtcIsac_Rc2Lar(rc, outp, orderLo); in WebRtcIsac_Poly2Lar() 666 outp += orderLo; in WebRtcIsac_Poly2Lar() 674 inpl += orderLo + 1; in WebRtcIsac_Poly2Lar() 714 void WebRtcIsac_Lar2Poly(double* lars, double* lowband, int orderLo, in WebRtcIsac_Lar2Poly() argument 719 orderTot = (orderLo + orderHi + 2); in WebRtcIsac_Lar2Poly() 726 WebRtcIsac_Lar2Rc(&inp[2], rc, orderLo); in WebRtcIsac_Lar2Poly() 727 WebRtcIsac_Rc2Poly(rc, orderLo, outpl); in WebRtcIsac_Lar2Poly() 730 WebRtcIsac_Lar2Rc(&inp[orderLo + 2], rc, orderHi); in WebRtcIsac_Lar2Poly() [all …]
|