Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/components/base/
DSimpleC2Component.cpp393 void convertYUV420Planar16ToP010(uint16_t *dstY, uint16_t *dstUV, const uint16_t *srcY, in convertYUV420Planar16ToP010() argument
410 dstUV[2 * x] = kNeutralUVBitDepth10 << 6; in convertYUV420Planar16ToP010()
411 dstUV[2 * x + 1] = kNeutralUVBitDepth10 << 6; in convertYUV420Planar16ToP010()
413 dstUV += dstUVStride; in convertYUV420Planar16ToP010()
420 dstUV[2 * x] = srcU[x] << 6; in convertYUV420Planar16ToP010()
421 dstUV[2 * x + 1] = srcV[x] << 6; in convertYUV420Planar16ToP010()
425 dstUV += dstUVStride; in convertYUV420Planar16ToP010()
546 void convertPlanar16ToP010(uint16_t* dstY, uint16_t* dstUV, const uint16_t* srcY, in convertPlanar16ToP010() argument
571 dstUV, dstUStride, width, height); in convertPlanar16ToP010()
573 convertYUV420Planar16ToP010(dstY, dstUV, srcY, srcU, srcV, srcYStride, srcUStride, in convertPlanar16ToP010()
[all …]
/frameworks/av/media/codec2/components/base/include/
DSimpleC2Component.h59 void convertYUV420Planar16ToP010(uint16_t *dstY, uint16_t *dstUV, const uint16_t *srcY,
82 void convertPlanar16ToP010(uint16_t* dstY, uint16_t* dstUV, const uint16_t* srcY,