Home
last modified time | relevance | path

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

/cts/suite/cts/deviceTests/videoperf/src/com/android/cts/videoperf/
DVideoEncoderDecoderTest.java932 double totalErrorSquared = 0; in runDecoder() local
1014 totalErrorSquared += expected.calcErrorSquared(decoded); in runDecoder()
1032 totalErrorSquared += expected.calcErrorSquared(decoded); in runDecoder()
1066 double errorRms = Math.sqrt(totalErrorSquared / PIXEL_CHECK_PER_FRAME / outFrameCount / 3); in runDecoder()
/cts/tests/tests/media/src/android/media/cts/
DDecoderTest.java550 long totalErrorSquared = 0; in decode() local
556 totalErrorSquared += d * d; in decode()
559 long avgErrorSquared = (totalErrorSquared / decoded.length); in decode()