Home
last modified time | relevance | path

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

/cts/tests/tests/media/src/android/media/cts/
DDecoderTestAacDrc.java265 float[] state_ff; field in DecoderTestAacDrc.Biquad
274 state_ff = new float[2]; in Biquad()
276 state_ff[0] = state_ff[1] = state_fb[0] = state_fb[1] = 0.0f; in Biquad()
289 state_ff[0] = state_ff[1] = 0.0f; in apply()
293 x_2 = state_ff[0]; // x[n-2] in apply()
294 x_1 = state_ff[1]; // x[n-1] in apply()
307 state_ff[0] = x_2; // next x[n-2] in apply()
308 state_ff[1] = x_1; // next x[n-1] in apply()