OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:x_buf_ptr
(Results
1 - 2
of
2
) sorted by null
/external/libopus/silk/fixed/
find_pitch_lags_FIX.c
47
const opus_int16 *x_buf, *
x_buf_ptr
;
local
75
x_buf_ptr
= x_buf + buf_len - psEnc->sCmn.pitch_LPC_win_length;
77
silk_apply_sine_window( Wsig_ptr,
x_buf_ptr
, 1, psEnc->sCmn.la_pitch );
81
x_buf_ptr
+= psEnc->sCmn.la_pitch;
82
silk_memcpy( Wsig_ptr,
x_buf_ptr
, ( psEnc->sCmn.pitch_LPC_win_length - silk_LSHIFT( psEnc->sCmn.la_pitch, 1 ) ) * sizeof( opus_int16 ) );
86
x_buf_ptr
+= psEnc->sCmn.pitch_LPC_win_length - silk_LSHIFT( psEnc->sCmn.la_pitch, 1 );
87
silk_apply_sine_window( Wsig_ptr,
x_buf_ptr
, 2, psEnc->sCmn.la_pitch );
/external/libopus/silk/float/
find_pitch_lags_FLP.c
46
const silk_float *
x_buf_ptr
, *x_buf;
local
70
x_buf_ptr
= x_buf + buf_len - psEnc->sCmn.pitch_LPC_win_length;
72
silk_apply_sine_window_FLP( Wsig_ptr,
x_buf_ptr
, 1, psEnc->sCmn.la_pitch );
76
x_buf_ptr
+= psEnc->sCmn.la_pitch;
77
silk_memcpy( Wsig_ptr,
x_buf_ptr
, ( psEnc->sCmn.pitch_LPC_win_length - ( psEnc->sCmn.la_pitch << 1 ) ) * sizeof( silk_float ) );
81
x_buf_ptr
+= psEnc->sCmn.pitch_LPC_win_length - ( psEnc->sCmn.la_pitch << 1 );
82
silk_apply_sine_window_FLP( Wsig_ptr,
x_buf_ptr
, 2, psEnc->sCmn.la_pitch );
Completed in 3816 milliseconds