Home
last modified time | relevance | path

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

/cts/tests/media/jni/
DNativeCodecTestBase.cpp323 long totalErrorSquared = 0; in getRmsError() local
332 totalErrorSquared += d * d; in getRmsError()
335 long avgErrorSquared = (totalErrorSquared / (length / 2)); in getRmsError()
/cts/tests/media/src/android/mediav2/cts/
DCodecTestBase.java394 long totalErrorSquared = 0; in getRmsError() local
401 totalErrorSquared += d * d; in getRmsError()
403 long avgErrorSquared = (totalErrorSquared / shortData.length); in getRmsError()
/cts/tests/video/src/android/video/cts/
DVideoEncoderDecoderTest.java1157 double totalErrorSquared = 0; in runDecoder() local
1237 totalErrorSquared += expected.calcErrorSquared(decoded); in runDecoder()
1255 totalErrorSquared += expected.calcErrorSquared(decoded); in runDecoder()
1295 double errorRms = Math.sqrt(totalErrorSquared / PIXEL_CHECK_PER_FRAME / outFrameCount / 3); in runDecoder()
/cts/tests/tests/media/src/android/media/cts/
DDecoderTest.java1494 long totalErrorSquared = 0;
1502 totalErrorSquared += d * d;
1504 long avgErrorSquared = (totalErrorSquared / signal.length);