OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NLSFIndices
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/opus/src/silk/
NLSF_decode.c
65
opus_int8 *
NLSFIndices
, /* I Codebook path vector [ LPC_ORDER + 1 ] */
78
pCB_element = &psNLSF_CB->CB1_NLSF_Q8[
NLSFIndices
[ 0 ] * psNLSF_CB->order ];
84
silk_NLSF_unpack( ec_ix, pred_Q8, psNLSF_CB,
NLSFIndices
[ 0 ] );
87
silk_NLSF_residual_dequant( res_Q10, &
NLSFIndices
[ 1 ], pred_Q8, psNLSF_CB->quantStepSize_Q16, psNLSF_CB->order );
encode_indices.c
91
ec_enc_icdf( psRangeEnc, psIndices->
NLSFIndices
[ 0 ], &psEncC->psNLSF_CB->CB1_iCDF[ ( psIndices->signalType >> 1 ) * psEncC->psNLSF_CB->nVectors ], 8 );
92
silk_NLSF_unpack( ec_ix, pred_Q8, psEncC->psNLSF_CB, psIndices->
NLSFIndices
[ 0 ] );
95
if( psIndices->
NLSFIndices
[ i+1 ] >= NLSF_QUANT_MAX_AMPLITUDE ) {
97
ec_enc_icdf( psRangeEnc, psIndices->
NLSFIndices
[ i+1 ] - NLSF_QUANT_MAX_AMPLITUDE, silk_NLSF_EXT_iCDF, 8 );
98
} else if( psIndices->
NLSFIndices
[ i+1 ] <= -NLSF_QUANT_MAX_AMPLITUDE ) {
100
ec_enc_icdf( psRangeEnc, -psIndices->
NLSFIndices
[ i+1 ] - NLSF_QUANT_MAX_AMPLITUDE, silk_NLSF_EXT_iCDF, 8 );
102
ec_enc_icdf( psRangeEnc, psIndices->
NLSFIndices
[ i+1 ] + NLSF_QUANT_MAX_AMPLITUDE, &psEncC->psNLSF_CB->ec_iCDF[ ec_ix[ i ] ], 8 );
NLSF_encode.c
38
opus_int8 *
NLSFIndices
, /* I Codebook path vector [ LPC_ORDER + 1 ] */
121
NLSFIndices
[ 0 ] = (opus_int8)tempIndices1[ bestIndex ];
122
silk_memcpy( &
NLSFIndices
[ 1 ], &tempIndices2[ bestIndex * MAX_LPC_ORDER ], psNLSF_CB->order * sizeof( opus_int8 ) );
125
silk_NLSF_decode( pNLSF_Q15,
NLSFIndices
, psNLSF_CB );
decode_indices.c
80
psDec->indices.
NLSFIndices
[ 0 ] = (opus_int8)ec_dec_icdf( psRangeDec, &psDec->psNLSF_CB->CB1_iCDF[ ( psDec->indices.signalType >> 1 ) * psDec->psNLSF_CB->nVectors ], 8 );
81
silk_NLSF_unpack( ec_ix, pred_Q8, psDec->psNLSF_CB, psDec->indices.
NLSFIndices
[ 0 ] );
90
psDec->indices.
NLSFIndices
[ i+1 ] = (opus_int8)( Ix - NLSF_QUANT_MAX_AMPLITUDE );
process_NLSFs.c
87
silk_NLSF_encode( psEncC->indices.
NLSFIndices
, pNLSF_Q15, psEncC->psNLSF_CB, pNLSFW_QW,
decode_parameters.c
52
silk_NLSF_decode( pNLSF_Q15, psDec->indices.
NLSFIndices
, psDec->psNLSF_CB );
main.h
300
opus_int8 *
NLSFIndices
, /* I Codebook path vector [ LPC_ORDER + 1 ] */
345
opus_int8 *
NLSFIndices
, /* I Codebook path vector [ LPC_ORDER + 1 ] */
structs.h
118
opus_int8
NLSFIndices
[ MAX_LPC_ORDER + 1 ];
Completed in 123 milliseconds