Home
last modified time | relevance | path

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

/hardware/ti/omap4xxx/libI420colorconvert/
DColorConvert.cpp34 int dstHeight = srcRect.bottom - srcRect.top + 1; in convertDecoderOutputToI420() local
35 size_t dst_y_size = dstWidth * dstHeight; in convertDecoderOutputToI420()
37 size_t dst_uv_size = dstWidth / 2 * dstHeight / 2; in convertDecoderOutputToI420()
42 for (int y = 0; y < dstHeight; ++y) { in convertDecoderOutputToI420()
49 for (int y = 0; y < (dstHeight + 1) / 2; ++y) { in convertDecoderOutputToI420()
67 int dstWidth, int dstHeight, ARect dstRect, in convertI420ToEncoderInput() argument
78 uint8_t* pDst_uv = (uint8_t*)dstBits + dstWidth * dstHeight; in convertI420ToEncoderInput()
/hardware/qcom/media/libc2dcolorconvert/
DC2DColorConverter.cpp58 …C2DColorConverter(size_t srcWidth, size_t srcHeight, size_t dstWidth, size_t dstHeight, ColorConve…
110 …lorConverter(size_t srcWidth, size_t srcHeight, size_t dstWidth, size_t dstHeight, ColorConvertFor… in C2DColorConverter() argument
139 mDstHeight = dstHeight; in C2DColorConverter()
143 mDstSize = calcSize(dstFormat, dstWidth, dstHeight); in C2DColorConverter()
145 mDstYSize = calcYSize(dstFormat, dstWidth, dstHeight); in C2DColorConverter()
160 mDstSurfaceDef = getDummySurfaceDef(dstFormat, dstWidth, dstHeight, false); in C2DColorConverter()
170 mBlit.target_rect.height = dstHeight << 16; in C2DColorConverter()
672 …lorConverter(size_t srcWidth, size_t srcHeight, size_t dstWidth, size_t dstHeight, ColorConvertFor… in createC2DColorConverter() argument
674 …return new C2DColorConverter(srcWidth, srcHeight, dstWidth, dstHeight, srcFormat, dstFormat, flags… in createC2DColorConverter()
DC2DColorConverter.h104 …rConverter_t(size_t srcWidth, size_t srcHeight, size_t dstWidth, size_t dstHeight, ColorConvertFor…
/hardware/samsung_slsi/exynos5/libcamera/
DExynosCameraHWInterface.cpp3510 char *dstBuf, uint32_t dstWidth, uint32_t dstHeight) in m_scaleDownYuv422() argument
3516 if (dstWidth % 2 != 0 || dstHeight % 2 != 0) { in m_scaleDownYuv422()
3522 step_y = srcHeight / dstHeight; in m_scaleDownYuv422()
3525 for (uint32_t y = 0; y < dstHeight; y++) { in m_scaleDownYuv422()