Lines Matching refs:frame_length
47 …opus_int frame_length /* I Number of samples … in silk_stereo_LR_to_MS() argument
61 ALLOC( side, frame_length + 2, opus_int16 ); in silk_stereo_LR_to_MS()
63 for( n = 0; n < frame_length + 2; n++ ) { in silk_stereo_LR_to_MS()
73 silk_memcpy( state->sMid, &mid[ frame_length ], 2 * sizeof( opus_int16 ) ); in silk_stereo_LR_to_MS()
74 silk_memcpy( state->sSide, &side[ frame_length ], 2 * sizeof( opus_int16 ) ); in silk_stereo_LR_to_MS()
77 ALLOC( LP_mid, frame_length, opus_int16 ); in silk_stereo_LR_to_MS()
78 ALLOC( HP_mid, frame_length, opus_int16 ); in silk_stereo_LR_to_MS()
79 for( n = 0; n < frame_length; n++ ) { in silk_stereo_LR_to_MS()
86 ALLOC( LP_side, frame_length, opus_int16 ); in silk_stereo_LR_to_MS()
87 ALLOC( HP_side, frame_length, opus_int16 ); in silk_stereo_LR_to_MS()
88 for( n = 0; n < frame_length; n++ ) { in silk_stereo_LR_to_MS()
95 is10msFrame = frame_length == 10 * fs_kHz; in silk_stereo_LR_to_MS()
101 …dictor( &LP_ratio_Q14, LP_mid, LP_side, &state->mid_side_amp_Q0[ 0 ], frame_length, smooth_coef_Q1… in silk_stereo_LR_to_MS()
102 …dictor( &HP_ratio_Q14, HP_mid, HP_side, &state->mid_side_amp_Q0[ 2 ], frame_length, smooth_coef_Q1… in silk_stereo_LR_to_MS()
182 state->silent_side_len += frame_length - STEREO_INTERP_LEN_MS * fs_kHz; in silk_stereo_LR_to_MS()
219 for( n = STEREO_INTERP_LEN_MS * fs_kHz; n < frame_length; n++ ) { in silk_stereo_LR_to_MS()