Lines Matching refs:Ix
43 opus_int i, k, Ix; in silk_decode_indices() local
52 Ix = ec_dec_icdf( psRangeDec, silk_type_offset_VAD_iCDF, 8 ) + 2; in silk_decode_indices()
54 Ix = ec_dec_icdf( psRangeDec, silk_type_offset_no_VAD_iCDF, 8 ); in silk_decode_indices()
56 psDec->indices.signalType = (opus_int8)silk_RSHIFT( Ix, 1 ); in silk_decode_indices()
57 psDec->indices.quantOffsetType = (opus_int8)( Ix & 1 ); in silk_decode_indices()
84 Ix = ec_dec_icdf( psRangeDec, &psDec->psNLSF_CB->ec_iCDF[ ec_ix[ i ] ], 8 ); in silk_decode_indices()
85 if( Ix == 0 ) { in silk_decode_indices()
86 Ix -= ec_dec_icdf( psRangeDec, silk_NLSF_EXT_iCDF, 8 ); in silk_decode_indices()
87 } else if( Ix == 2 * NLSF_QUANT_MAX_AMPLITUDE ) { in silk_decode_indices()
88 Ix += ec_dec_icdf( psRangeDec, silk_NLSF_EXT_iCDF, 8 ); in silk_decode_indices()
90 psDec->indices.NLSFIndices[ i+1 ] = (opus_int8)( Ix - NLSF_QUANT_MAX_AMPLITUDE ); in silk_decode_indices()