Home
last modified time | relevance | path

Searched refs:dstUV (Results 1 - 4 of 4) sorted by relevance

/foundation/multimedia/image_framework/frameworks/innerkitsimpl/utils/src/
H A Dpixel_yuv_ext_utils.cpp166 auto dstUV = dst + dstStrides.uvOffset; in NV12Rotate() local
168 dstY, dstYStride, dstUV, dstUVStride, dstWidth, dstHeight) == -1) { in NV12Rotate()
304 uint8_t *dstUV = dst + GetYSize(dstYStride, dstYHeight); in ScaleUVPlane() local
312 converter.MergeUVPlane(tempUData, dstUWidth, tempVData, dstUWidth, dstUV, dstUVStride, dstUWidth, dstUHeight); in ScaleUVPlane()
314 converter.MergeUVPlane(tempVData, dstUWidth, tempUData, dstUWidth, dstUV, dstUVStride, dstUWidth, dstUHeight); in ScaleUVPlane()
327 uint16_t* dstUV = dstY + dstStrides.uvOffset; in CopyP010Pixels() local
340 errno_t ret = memcpy_s(dstUV, stride * BYTE_PER_PIXEL, srcUV, stride * BYTE_PER_PIXEL); in CopyP010Pixels()
345 dstUV += dstStrides.yStride; in CopyP010Pixels()
440 uint8_t* dstUV = dst + dstStrides.uvOffset; in ScaleYuv420() local
448 dstY, dstYStride, dstUV, dstUVStrid in ScaleYuv420()
467 uint8_t* dstUV = dst + dstStrides.uvOffset; ScaleYuv420() local
490 uint8_t* dstUV = dst + dstStrides.uvOffset; FlipXaxis() local
511 uint8_t *dstUV = dst + dstStrides.uvOffset; Mirror() local
[all...]
H A Dpixel_yuv_utils.cpp126 uint8_t *dstUV = dstPixels + yuvDataInfo.uvOffset; in WriteDataNV12Convert() local
138 if (memcpy_s(dstUV + ((dstPos.y) / NUM_2 + i) * GetUVStride(yuvDataInfo.uvStride) + dstPos.x, in WriteDataNV12Convert()
153 uint16_t *dstUV = dstPixels + yuvDataInfo.uvOffset; in WriteDataNV12P010Convert() local
165 if (memcpy_s(dstUV + ((dstPos.y) / NUM_2 + i) * GetUVStride(yuvDataInfo.uvStride) + dstPos.x, in WriteDataNV12P010Convert()
980 uint8_t *dstUV = dstPixels + strides.uvOffset; in Yuv420SPTranslate() local
1000 dst = dstUV+ newY * static_cast<int32_t>(strides.uvStride) + xOffset; in Yuv420SPTranslate()
1012 uint16_t *dstUV = yuvPixels.dstPixels + strides.uvOffset; in P010Translate() local
1032 *(dstUV + newY * static_cast<int32_t>(strides.yStride) + newX) = in P010Translate()
1034 *(dstUV + newY * static_cast<int32_t>(strides.yStride) + newX + 1) = in P010Translate()
/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/
H A Dav_thumbnail_generator.cpp400 uint8_t *dstUV = dstNV12 + width * i; in ConvertP010ToNV12() local
401 for (int32_t j = 0; j < width && srcUV < maxSrcAddr && dstUV < maxDstAddr; j++) { in ConvertP010ToNV12()
402 *dstUV = static_cast<uint8_t>(*srcUV >> SHIFT_BITS_P010_2_NV12); in ConvertP010ToNV12()
403 *(dstUV + 1) = static_cast<uint8_t>(*(srcUV + 1) >> SHIFT_BITS_P010_2_NV12); in ConvertP010ToNV12()
405 dstUV += 2; // dstUV move by 2 to process U and V component in ConvertP010ToNV12()
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/common/src/
H A Dpixel_yuv.cpp585 auto dstUV = data_ + yuvDataInfo.uvOffset; in WritePixels() local
594 memcpy_s(dstUV, yuvDataInfo.uvWidth, srcUV, yuvDataInfo.uvWidth); in WritePixels()
595 dstUV += yuvDataInfo.uvStride; in WritePixels()

Completed in 7 milliseconds