Home
last modified time | relevance | path

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

/external/libopus/celt/
Dmodes.c42 static const opus_int16 eband5ms[] = { variable
98 *nbEBands = sizeof(eband5ms)/sizeof(eband5ms[0])-1; in compute_ebands()
101 eBands[i] = eband5ms[i]; in compute_ebands()
171 int maxBands = sizeof(eband5ms)/sizeof(eband5ms[0])-1; in compute_allocation_table()
195 … if (400*(opus_int32)eband5ms[k] > mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize) in compute_allocation_table()
202 … a1 = mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize - 400*(opus_int32)eband5ms[k-1]; in compute_allocation_table()
203 … a0 = 400*(opus_int32)eband5ms[k] - mode->eBands[j]*(opus_int32)mode->Fs/mode->shortMdctSize; in compute_allocation_table()
Dstatic_modes_fixed.h876 eband5ms, /* eBands */
Dstatic_modes_float.h872 eband5ms, /* eBands */
/external/rnnoise/src/
Ddenoise.c73 static const opus_int16 eband5ms[] = { variable
107 band_size = (eband5ms[i+1]-eband5ms[i])<<FRAME_SIZE_SHIFT; in compute_band_energy()
111 tmp = SQUARE(X[(eband5ms[i]<<FRAME_SIZE_SHIFT) + j].r); in compute_band_energy()
112 tmp += SQUARE(X[(eband5ms[i]<<FRAME_SIZE_SHIFT) + j].i); in compute_band_energy()
132 band_size = (eband5ms[i+1]-eband5ms[i])<<FRAME_SIZE_SHIFT; in compute_band_corr()
136 tmp = X[(eband5ms[i]<<FRAME_SIZE_SHIFT) + j].r * P[(eband5ms[i]<<FRAME_SIZE_SHIFT) + j].r; in compute_band_corr()
137 tmp += X[(eband5ms[i]<<FRAME_SIZE_SHIFT) + j].i * P[(eband5ms[i]<<FRAME_SIZE_SHIFT) + j].i; in compute_band_corr()
157 band_size = (eband5ms[i+1]-eband5ms[i])<<FRAME_SIZE_SHIFT; in interp_band_gain()
160 g[(eband5ms[i]<<FRAME_SIZE_SHIFT) + j] = (1-frac)*bandE[i] + frac*bandE[i+1]; in interp_band_gain()
570 if (eband5ms[i]<<FRAME_SIZE_SHIFT > lowpass) { in main()