Lines Matching refs:dstUV
393 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()
578 convertYUV420Planar16ToP010(dstY, dstUV, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride, in convertPlanar16ToP010()