Lines Matching refs:DECISION_DELAY
39 opus_int32 RandState[ DECISION_DELAY ];
40 opus_int32 Q_Q10[ DECISION_DELAY ];
41 opus_int32 Xq_Q14[ DECISION_DELAY ];
42 opus_int32 Pred_Q15[ DECISION_DELAY ];
43 opus_int32 Shape_Q14[ DECISION_DELAY ];
173 decisionDelay = silk_min_int( DECISION_DELAY, psEncC->subfr_length ); in silk_NSQ_del_dec_c()
195 ALLOC( delayedGain_Q10, DECISION_DELAY, opus_int32 ); in silk_NSQ_del_dec_c()
240 last_smple_idx = ( last_smple_idx - 1 ) % DECISION_DELAY; in silk_NSQ_del_dec_c()
241 if( last_smple_idx < 0 ) last_smple_idx += DECISION_DELAY; in silk_NSQ_del_dec_c()
292 last_smple_idx = ( last_smple_idx - 1 ) % DECISION_DELAY; in silk_NSQ_del_dec_c()
293 if( last_smple_idx < 0 ) last_smple_idx += DECISION_DELAY; in silk_NSQ_del_dec_c()
564 *smpl_buf_idx = ( *smpl_buf_idx - 1 ) % DECISION_DELAY; in silk_noise_shape_quantizer_del_dec()
565 if( *smpl_buf_idx < 0 ) *smpl_buf_idx += DECISION_DELAY; in silk_noise_shape_quantizer_del_dec()
566 last_smple_idx = ( *smpl_buf_idx + decisionDelay ) % DECISION_DELAY; in silk_noise_shape_quantizer_del_dec()
724 for( i = 0; i < DECISION_DELAY; i++ ) { in silk_nsq_del_dec_scale_states()