Home
last modified time | relevance | path

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

/cts/tests/media/common/src/android/mediav2/common/cts/
DOutputManager.java385 double totalErrorSquared = 0; in getRmsError() local
397 totalErrorSquared += d * d; in getRmsError()
399 avgErrorSquared = (totalErrorSquared / refData.length); in getRmsError()
419 totalErrorSquared += d * d; in getRmsError()
421 avgErrorSquared = (totalErrorSquared / refData.length); in getRmsError()
431 totalErrorSquared += d * d; in getRmsError()
433 avgErrorSquared = (totalErrorSquared / refData.length); in getRmsError()
442 totalErrorSquared += d * d; in getRmsError()
444 avgErrorSquared = (totalErrorSquared / refData.length); in getRmsError()
/cts/tests/media/jni/
DNativeCodecTestBase.cpp366 long totalErrorSquared = 0; in getRmsError() local
375 totalErrorSquared += d * d; in getRmsError()
378 long avgErrorSquared = (totalErrorSquared / (length / 2)); in getRmsError()
/cts/tests/video/src/android/video/cts/
DVideoEncoderDecoderTest.java867 double totalErrorSquared = 0; in runDecoder() local
947 totalErrorSquared += expected.calcErrorSquared(decoded); in runDecoder()
965 totalErrorSquared += expected.calcErrorSquared(decoded); in runDecoder()
1005 double errorRms = Math.sqrt(totalErrorSquared / PIXEL_CHECK_PER_FRAME / outFrameCount / 3); in runDecoder()
/cts/tests/tests/media/decoder/src/android/media/decoder/cts/
DDecoderTest.java1398 long totalErrorSquared = 0;
1406 totalErrorSquared += d * d;
1408 long avgErrorSquared = (totalErrorSquared / signal.length);