Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
DWavAnalyzer.java191 double[] pipPoints = new double[Common.WINDOW_FOR_RECORDER.length]; in measurePipStrength() local
192 System.arraycopy(data, pipExpectedStartI, pipPoints, 0, pipPoints.length); in measurePipStrength()
194 pipPoints[j] = pipPoints[j] * Common.WINDOW_FOR_RECORDER[j]; in measurePipStrength()
200 for (int j = 0; j < pipPoints.length; j++) { in measurePipStrength()
201 fourierCoeff = fourierCoeff.add(phasor.multiply(pipPoints[j])); in measurePipStrength()
204 fourierCoeff = fourierCoeff.multiply(1.0 / pipPoints.length); in measurePipStrength()