Home
last modified time | relevance | path

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

/cts/tests/media/common/src/android/mediav2/common/cts/
DVideoErrorManager.java132 int cropLeft = 0; in computeMSE() local
137 cropLeft = cropRect.left; in computeMSE()
149 int offset = (cropTop + h) * imgWidth + cropLeft; in computeMSE()
158 int offset = (cropTop + h) * imgWidth + cropLeft; in computeMSE()
/cts/tests/media/jni/
DNativeCodecTestBase.cpp662 int cropLeft, cropRight, cropTop, cropBottom; in getWidth() local
664 if (AMediaFormat_getRect(format, "crop", &cropLeft, &cropTop, &cropRight, &cropBottom) || in getWidth()
665 (AMediaFormat_getInt32(format, "crop-left", &cropLeft) && in getWidth()
667 width = cropRight + 1 - cropLeft; in getWidth()
674 int cropLeft, cropRight, cropTop, cropBottom; in getHeight() local
676 if (AMediaFormat_getRect(format, "crop", &cropLeft, &cropTop, &cropRight, &cropBottom) || in getHeight()
/cts/tests/tests/mediatranscoding/src/android/media/mediatranscoding/cts/
DMediaTranscodingTestUtil.java333 int cropLeft = crop.left; in dumpYUV420PToFile() local
337 int imageWidth = cropRight - cropLeft; in dumpYUV420PToFile()
351 left = cropLeft; in dumpYUV420PToFile()
356 left = cropLeft / 2; in dumpYUV420PToFile()
/cts/tests/tests/media/codec/src/android/media/codec/cts/
DEncodeDecodeTest.java1080 int cropLeft = format.getInteger("crop-left"); in checkFrame() local
1085 cropLeft = image.getCropRect().left; in checkFrame()
1090 int cropWidth = cropRight - cropLeft + 1; in checkFrame()
1107 x += cropLeft; in checkFrame()
DVideoCodecTestBase.java600 int cropLeft = 0; in decode() local
713 cropLeft = format.getInteger("crop-left"); in decode()
719 cropWidth = format.getInteger("crop-right") - cropLeft + 1; in decode()
728 Log.d(TAG, "Frame crop window origin: " + cropLeft + " x " + cropTop in decode()
730 cropWidth = Math.min(frameWidth - cropLeft, cropWidth); in decode()
762 frame = PackYUV420(cropLeft, cropTop, cropWidth, cropHeight, in decode()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DMediaUtils.java1358 int cropLeft = crop.left; in getImageMD5Checksum() local
1363 int imageWidth = cropRight - cropLeft; in getImageMD5Checksum()
1376 left = cropLeft; in getImageMD5Checksum()
1381 left = cropLeft / 2; in getImageMD5Checksum()
/cts/tests/tests/graphics/src/android/graphics/cts/
DAImageDecoderTest.java1303 int cropLeft, int cropTop, int cropRight, int cropBottom);