Home
last modified time | relevance | path

Searched refs:dstHeight (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/media/java/android/media/
DMediaMetadataRetriever.java300 long timeUs, @Option int option, int dstWidth, int dstHeight) { in getScaledFrameAtTime() argument
308 if (dstHeight <= 0) { in getScaledFrameAtTime()
309 throw new IllegalArgumentException("Invalid height: " + dstHeight); in getScaledFrameAtTime()
312 return _getFrameAtTime(timeUs, option, dstWidth, dstHeight); in getScaledFrameAtTime()
/frameworks/layoutlib/bridge/src/android/view/
DShadowPainter.java89 int dstHeight = image.getHeight(); in createDropShadow() local
96 int yStop = dstHeight - right; in createDropShadow()
110 for (int y = 0, bufferOffset = 0; y < dstHeight; y++, bufferOffset = y * dstWidth) { in createDropShadow()
/frameworks/av/media/libstagefright/include/media/stagefright/
DColorConverter.h42 size_t dstWidth, size_t dstHeight,
/frameworks/av/media/libstagefright/omx/
DSoftVideoDecoderOMXComponent.cpp310 size_t dstHeight = outputBufferHeight(); in copyYV12FrameToOutputBuffer() local
319 dst = dstStart + dstYStride * dstHeight; in copyYV12FrameToOutputBuffer()
326 dst = dstStart + (5 * dstYStride * dstHeight) / 4; in copyYV12FrameToOutputBuffer()
/frameworks/base/graphics/java/android/graphics/
DBitmap.java710 public static Bitmap createScaledBitmap(@NonNull Bitmap src, int dstWidth, int dstHeight, in createScaledBitmap() argument
716 if (width != dstWidth || height != dstHeight) { in createScaledBitmap()
718 final float sy = dstHeight / (float) height; in createScaledBitmap()
/frameworks/av/media/libstagefright/colorconversion/
DColorConverter.cpp119 size_t dstWidth, size_t dstHeight, in convert() argument
129 dstWidth, dstHeight, in convert()