Searched refs:x_windowed (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/opus/src/silk/float/
H A Dnoise_shape_analysis_FLP.c140 silk_float x_windowed[ SHAPE_LPC_WIN_MAX ]; local
236 silk_apply_sine_window_FLP( x_windowed, x_ptr, 1, slope_part );
238 silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(silk_float) );
240 silk_apply_sine_window_FLP( x_windowed + shift, x_ptr + shift, 2, slope_part );
247 silk_warped_autocorrelation_FLP( auto_corr, x_windowed, warping,
251 silk_autocorrelation_FLP( auto_corr, x_windowed, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder + 1 );
/external/libopus/silk/float/
H A Dnoise_shape_analysis_FLP.c140 silk_float x_windowed[ SHAPE_LPC_WIN_MAX ]; local
236 silk_apply_sine_window_FLP( x_windowed, x_ptr, 1, slope_part );
238 silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(silk_float) );
240 silk_apply_sine_window_FLP( x_windowed + shift, x_ptr + shift, 2, slope_part );
247 silk_warped_autocorrelation_FLP( auto_corr, x_windowed, warping,
251 silk_autocorrelation_FLP( auto_corr, x_windowed, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder + 1 );
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dnoise_shape_analysis_FIX.c161 VARDECL( opus_int16, x_windowed );
264 ALLOC( x_windowed, psEnc->sCmn.shapeWinLength, opus_int16 );
271 silk_apply_sine_window( x_windowed, x_ptr, 1, slope_part );
273 silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(opus_int16) );
275 silk_apply_sine_window( x_windowed + shift, x_ptr + shift, 2, slope_part );
282 silk_warped_autocorrelation_FIX( auto_corr, &scale, x_windowed, warping_Q16, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder );
285 silk_autocorr( auto_corr, &scale, x_windowed, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder + 1, arch );
/external/libopus/silk/fixed/
H A Dnoise_shape_analysis_FIX.c161 VARDECL( opus_int16, x_windowed );
264 ALLOC( x_windowed, psEnc->sCmn.shapeWinLength, opus_int16 );
271 silk_apply_sine_window( x_windowed, x_ptr, 1, slope_part );
273 silk_memcpy( x_windowed + shift, x_ptr + shift, flat_part * sizeof(opus_int16) );
275 silk_apply_sine_window( x_windowed + shift, x_ptr + shift, 2, slope_part );
282 silk_warped_autocorrelation_FIX( auto_corr, &scale, x_windowed, warping_Q16, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder );
285 silk_autocorr( auto_corr, &scale, x_windowed, psEnc->sCmn.shapeWinLength, psEnc->sCmn.shapingLPCOrder + 1, arch );
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Daec_core_neon.c627 __inline static void WindowData(float* x_windowed, const float* x) { argument
641 vst1q_f32(&x_windowed[i], vmulq_f32(vec_Buf1, vec_sqrtHanning));
642 vst1q_f32(&x_windowed[PART_LEN + i],
H A Daec_core_sse2.c610 __inline static void WindowData(float* x_windowed, const float* x) { argument
623 _mm_storeu_ps(&x_windowed[i], _mm_mul_ps(vec_Buf1, vec_sqrtHanning));
624 _mm_storeu_ps(&x_windowed[PART_LEN + i],
H A Daec_core.c384 __inline static void WindowData(float* x_windowed, const float* x) { argument
387 x_windowed[i] = x[i] * WebRtcAec_sqrtHanning[i];
388 x_windowed[PART_LEN + i] =

Completed in 635 milliseconds