HomeSort by relevance Sort by last modified time
    Searched refs:x_buf_ptr (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/opus/src/silk/fixed/
find_pitch_lags_FIX.c 46 const opus_int16 *x_buf, *x_buf_ptr; local
74 x_buf_ptr = x_buf + buf_len - psEnc->sCmn.pitch_LPC_win_length;
76 silk_apply_sine_window( Wsig_ptr, x_buf_ptr, 1, psEnc->sCmn.la_pitch );
80 x_buf_ptr += psEnc->sCmn.la_pitch;
81 silk_memcpy( Wsig_ptr, x_buf_ptr, ( psEnc->sCmn.pitch_LPC_win_length - silk_LSHIFT( psEnc->sCmn.la_pitch, 1 ) ) * sizeof( opus_int16 ) );
85 x_buf_ptr += psEnc->sCmn.pitch_LPC_win_length - silk_LSHIFT( psEnc->sCmn.la_pitch, 1 );
86 silk_apply_sine_window( Wsig_ptr, x_buf_ptr, 2, psEnc->sCmn.la_pitch );
  /external/chromium_org/third_party/opus/src/silk/float/
find_pitch_lags_FLP.c 45 const silk_float *x_buf_ptr, *x_buf; local
69 x_buf_ptr = x_buf + buf_len - psEnc->sCmn.pitch_LPC_win_length;
71 silk_apply_sine_window_FLP( Wsig_ptr, x_buf_ptr, 1, psEnc->sCmn.la_pitch );
75 x_buf_ptr += psEnc->sCmn.la_pitch;
76 silk_memcpy( Wsig_ptr, x_buf_ptr, ( psEnc->sCmn.pitch_LPC_win_length - ( psEnc->sCmn.la_pitch << 1 ) ) * sizeof( silk_float ) );
80 x_buf_ptr += psEnc->sCmn.pitch_LPC_win_length - ( psEnc->sCmn.la_pitch << 1 );
81 silk_apply_sine_window_FLP( Wsig_ptr, x_buf_ptr, 2, psEnc->sCmn.la_pitch );

Completed in 207 milliseconds