Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/analyzers/
DBaseSineAnalyzer.java35 double mOutputPhase = 0.0; field in BaseSineAnalyzer
170 return mOutputPhase; in getOutputPhase()
210 mOutputPhase += mPhaseIncrement; in incrementOutputPhase()
211 if (mOutputPhase > Math.PI) { in incrementOutputPhase()
212 mOutputPhase -= (2.0 * Math.PI); in incrementOutputPhase()
274 if (transformSample(sample, mOutputPhase)) { in processInputFrame()
309 mOutputPhase = 0.0f; in reset()
/cts/apps/CtsVerifier/jni/audio_loopback/analyzer/
DGlitchAnalyzer.h176 mOutputPhase = 0.0; in processInputFrame()
303 mOutputPhase += mPhaseIncrement; in incrementOutputPhase()
304 if (mOutputPhase > M_PI) { in incrementOutputPhase()
305 mOutputPhase -= (2.0 * M_PI); in incrementOutputPhase()
317 float sinOut = sinf(mOutputPhase); in processOutputFrame()
369 mOutputPhase = 0.0f; in prepareToTest()
413 double mOutputPhase = 0.0; variable