Home
last modified time | relevance | path

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

/cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
DMockTvInputService.java290 int srcHeight = b.getHeight(); in draw() local
294 c.drawBitmap(b, new Rect(0, 0, srcWidth, srcHeight), in draw()
/cts/tests/tests/media/src/android/media/cts/
DVp8CodecTestBase.java438 private static byte[] imageScale(byte[] src, int srcWidth, int srcHeight, in imageScale() argument
440 int srcYSize = srcWidth * srcHeight; in imageScale()
443 if (dstWidth == 2 * srcWidth && dstHeight <= 2 * srcHeight) { in imageScale()
452 } else if (dstWidth == 4 * srcWidth && dstHeight <= 4 * srcHeight) { in imageScale()
455 int midHeight = 2 * srcHeight; in imageScale()
456 byte[] midBuffer = imageScale(src, srcWidth, srcHeight, midWidth, midHeight); in imageScale()