Home
last modified time | relevance | path

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

/cts/tests/media/jni/
DNativeCodecTestBase.cpp314 long totalErrorSquared = 0; in getRmsError() local
323 totalErrorSquared += d * d; in getRmsError()
326 long avgErrorSquared = (totalErrorSquared / (length / 2)); in getRmsError()
/cts/tests/video/src/android/video/cts/
DVideoEncoderDecoderTest.java1131 double totalErrorSquared = 0; in runDecoder() local
1211 totalErrorSquared += expected.calcErrorSquared(decoded); in runDecoder()
1229 totalErrorSquared += expected.calcErrorSquared(decoded); in runDecoder()
1269 double errorRms = Math.sqrt(totalErrorSquared / PIXEL_CHECK_PER_FRAME / outFrameCount / 3); in runDecoder()
/cts/tests/media/src/android/mediav2/cts/
DCodecTestBase.java435 long totalErrorSquared = 0; in getRmsError() local
443 totalErrorSquared += d * d; in getRmsError()
445 long avgErrorSquared = (totalErrorSquared / shortData.length); in getRmsError()
/cts/tests/tests/media/src/android/media/cts/
DDecoderTest.java1873 long totalErrorSquared = 0;
1881 totalErrorSquared += d * d;
1883 long avgErrorSquared = (totalErrorSquared / signal.length);