Home
last modified time | relevance | path

Searched refs:maxBands (Results 1 – 4 of 4) sorted by relevance

/external/libopus/celt/
Dmodes.c170 int maxBands = sizeof(eband5ms)/sizeof(eband5ms[0])-1; in compute_allocation_table() local
192 for (k=0;k<maxBands;k++) in compute_allocation_table()
197 if (k>maxBands-1) in compute_allocation_table()
198 allocVectors[i*mode->nbEBands+j] = band_allocation[i*maxBands + maxBands-1]; in compute_allocation_table()
203 allocVectors[i*mode->nbEBands+j] = (a0*band_allocation[i*maxBands+k-1] in compute_allocation_table()
204 + a1*band_allocation[i*maxBands+k])/(a0+a1); in compute_allocation_table()
/external/chromium_org/third_party/opus/src/celt/
Dmodes.c170 int maxBands = sizeof(eband5ms)/sizeof(eband5ms[0])-1; in compute_allocation_table() local
192 for (k=0;k<maxBands;k++) in compute_allocation_table()
197 if (k>maxBands-1) in compute_allocation_table()
198 allocVectors[i*mode->nbEBands+j] = band_allocation[i*maxBands + maxBands-1]; in compute_allocation_table()
203 allocVectors[i*mode->nbEBands+j] = (a0*band_allocation[i*maxBands+k-1] in compute_allocation_table()
204 + a1*band_allocation[i*maxBands+k])/(a0+a1); in compute_allocation_table()
/external/aac/libAACdec/src/
Dchannel.cpp200 int b, w, maxBands, maxWindows; in CChannel_CodebookTableInit() local
205 maxBands = 64; in CChannel_CodebookTableInit()
208 maxBands = 16; in CChannel_CodebookTableInit()
216 for (; b<maxBands; b++) { in CChannel_CodebookTableInit()
219 pCodeBook += maxBands; in CChannel_CodebookTableInit()
/external/aac/libAACenc/src/
Daacenc_tns.cpp169 SCHAR maxBands[2]; /* long=0; short=1 */ member
302 numBands = pMaxBandsTab[i].maxBands[(!isShortBlock)?0:1]; in getTnsMaxBands()