OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:eBands
(Results
1 - 6
of
6
) sorted by null
/external/libopus/celt/
modes.h
67
const opus_int16 *
eBands
; /**< Definition for each "pseudo-critical band" */
modes.c
91
opus_int16 *
eBands
;
98
eBands
= opus_alloc(sizeof(opus_int16)*(*nbEBands+1));
100
eBands
[i] = eband5ms[i];
101
return
eBands
;
116
eBands
= opus_alloc(sizeof(opus_int16)*(*nbEBands+2));
118
if (
eBands
==NULL)
123
eBands
[i] = i;
125
offset =
eBands
[low-1]*res - bark_freq[lin-1];
131
eBands
[i+low] = (target+offset/2+res)/(2*res)*2;
132
offset =
eBands
[i+low]*res - target
[
all
...]
rate.c
81
const opus_int16 *
eBands
= m->
eBands
;
96
int N = (
eBands
[j+1]-
eBands
[j])<<i>>1;
104
if (N == (
eBands
[n+1]-
eBands
[n])<<k>>1)
152
N0 = m->
eBands
[j+1]-m->
eBands
[j];
235
max_bits = (4*max_bits/(C*((m->
eBands
[j+1]-m->
eBands
[j])<<i)))-64
[
all
...]
bands.c
98
const opus_int16 *
eBands
= m->
eBands
;
107
j=M*
eBands
[i]; do {
110
} while (++j<M*
eBands
[i+1]);
115
j=M*
eBands
[i]; do {
118
} while (++j<M*
eBands
[i+1]);
134
const opus_int16 *
eBands
= m->
eBands
;
144
j=M*
eBands
[i]; do {
146
} while (++j<M*
eBands
[i+1])
[
all
...]
celt_decoder.c
349
const opus_int16 *
eBands
;
356
eBands
= mode->
eBands
;
412
boffs = N*c+(
eBands
[i]<<LM);
413
blen = (
eBands
[i+1]-
eBands
[i])<<LM;
427
int bound =
eBands
[effEnd]<<LM;
699
const opus_int16 *
eBands
;
705
eBands
= mode->
eBands
;
[
all
...]
celt_encoder.c
570
ALLOC(tmp, (m->
eBands
[len]-m->
eBands
[len-1])<<LM, celt_norm);
571
ALLOC(tmp_1, (m->
eBands
[len]-m->
eBands
[len-1])<<LM, celt_norm);
582
N = (m->
eBands
[i+1]-m->
eBands
[i])<<LM;
584
narrow = (m->
eBands
[i+1]-m->
eBands
[i])==1;
586
tmp[j] = X[tf_chan*N0 + j+(m->
eBands
[i]<<LM)];
590
tmp[j] = ADD16(SHR16(tmp[j], 1),SHR16(X[N0+j+(m->
eBands
[i]<<LM)], 1));*
[
all
...]
Completed in 68 milliseconds