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

/external/webrtc/webrtc/modules/audio_processing/
H A Dhigh_pass_filter_impl.cc41 int32_t tmp_int32 = 0; local
47 tmp_int32 = y[1] * ba[3]; // -a[1] * y[i-1] (low part)
48 tmp_int32 += y[3] * ba[4]; // -a[2] * y[i-2] (low part)
49 tmp_int32 = (tmp_int32 >> 15);
50 tmp_int32 += y[0] * ba[3]; // -a[1] * y[i-1] (high part)
51 tmp_int32 += y[2] * ba[4]; // -a[2] * y[i-2] (high part)
52 tmp_int32 = (tmp_int32 << 1);
54 tmp_int32
[all...]

Completed in 310 milliseconds