Searched defs:px_win (Results 1 - 2 of 2) sorted by relevance

/external/libopus/silk/fixed/
H A Dapply_sine_window_FIX.c51 opus_int16 px_win[], /* O Pointer to windowed signal */
91 px_win[ k ] = (opus_int16)silk_SMULWB( silk_RSHIFT( S0_Q16 + S1_Q16, 1 ), px[ k ] );
92 px_win[ k + 1 ] = (opus_int16)silk_SMULWB( S1_Q16, px[ k + 1] );
96 px_win[ k + 2 ] = (opus_int16)silk_SMULWB( silk_RSHIFT( S0_Q16 + S1_Q16, 1 ), px[ k + 2] );
97 px_win[ k + 3 ] = (opus_int16)silk_SMULWB( S0_Q16, px[ k + 3 ] );
50 silk_apply_sine_window( opus_int16 px_win[], const opus_int16 px[], const opus_int win_type, const opus_int length ) argument
/external/libopus/silk/float/
H A Dapply_sine_window_FLP.c39 silk_float px_win[], /* O Pointer to windowed signal */
74 px_win[ k + 0 ] = px[ k + 0 ] * 0.5f * ( S0 + S1 );
75 px_win[ k + 1 ] = px[ k + 1 ] * S1;
77 px_win[ k + 2 ] = px[ k + 2 ] * 0.5f * ( S1 + S0 );
78 px_win[ k + 3 ] = px[ k + 3 ] * S0;
38 silk_apply_sine_window_FLP( silk_float px_win[], const silk_float px[], const opus_int win_type, const opus_int length ) argument

Completed in 189 milliseconds