Home
last modified time | relevance | path

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

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