OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LTP_scaleIndex
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/opus/src/silk/fixed/
LTP_scale_ctrl_FIX.c
46
psEnc->sCmn.indices.
LTP_scaleIndex
= (opus_int8)silk_LIMIT(
50
psEnc->sCmn.indices.
LTP_scaleIndex
= 0;
52
psEncCtrl->LTP_scale_Q14 = silk_LTPScales_table_Q14[ psEnc->sCmn.indices.
LTP_scaleIndex
];
/external/chromium_org/third_party/opus/src/silk/float/
LTP_scale_ctrl_FLP.c
45
psEnc->sCmn.indices.
LTP_scaleIndex
= (opus_int8)silk_LIMIT( round_loss * psEncCtrl->LTPredCodGain * 0.1f, 0.0f, 2.0f );
48
psEnc->sCmn.indices.
LTP_scaleIndex
= 0;
51
psEncCtrl->LTP_scale = (silk_float)silk_LTPScales_table_Q14[ psEnc->sCmn.indices.
LTP_scaleIndex
] / 16384.0f;
wrappers_FLP.c
151
LTP_scale_Q14 = silk_LTPScales_table_Q14[ psIndices->
LTP_scaleIndex
];
/external/chromium_org/third_party/opus/src/silk/
encode_indices.c
168
silk_assert( psIndices->
LTP_scaleIndex
>= 0 && psIndices->
LTP_scaleIndex
< 3 );
169
ec_enc_icdf( psRangeEnc, psIndices->
LTP_scaleIndex
, silk_LTPscale_iCDF, 8 );
171
silk_assert( !condCoding || psIndices->
LTP_scaleIndex
== 0 );
decode_indices.c
140
psDec->indices.
LTP_scaleIndex
= (opus_int8)ec_dec_icdf( psRangeDec, silk_LTPscale_iCDF, 8 );
142
psDec->indices.
LTP_scaleIndex
= 0;
decode_parameters.c
107
Ix = psDec->indices.
LTP_scaleIndex
;
structs.h
125
opus_int8
LTP_scaleIndex
;
Completed in 250 milliseconds