/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 468 static void copyOutputBufferToYV12Frame(uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in copyOutputBufferToYV12Frame() argument 484 memset(dstV, NEUTRAL_UV_VALUE, width / 2); in copyOutputBufferToYV12Frame() 486 dstV += dstUVStride; in copyOutputBufferToYV12Frame() 493 memcpy(dstV, srcV, width / 2); in copyOutputBufferToYV12Frame() 495 dstV += dstUVStride; in copyOutputBufferToYV12Frame() 573 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in convertYUV420Planar16ToYUV420Planar() argument 591 memset(dstV, NEUTRAL_UV_VALUE, (width + 1) / 2); in convertYUV420Planar16ToYUV420Planar() 593 dstV += dstUVStride; in convertYUV420Planar16ToYUV420Planar() 602 dstV[x] = (uint8_t)(srcV[x] >> 2); in convertYUV420Planar16ToYUV420Planar() 608 dstV += dstUVStride; in convertYUV420Planar16ToYUV420Planar() [all …]
|
/frameworks/av/media/libstagefright/omx/ |
D | SoftVideoEncoderOMXComponent.cpp | 394 uint8_t *dstV = dstU + (dstVStride >> 1) * (dstStride >> 1); in ConvertFlexYUVToPlanar() local 407 memcpy(dstV, srcV, width >> 1); in ConvertFlexYUVToPlanar() 408 dstV += dstStride >> 1; in ConvertFlexYUVToPlanar() 416 *dstV++ = *srcV; in ConvertFlexYUVToPlanar() 421 dstV += (dstStride >> 1) - (width >> 1); in ConvertFlexYUVToPlanar() 469 uint8_t *dstV = dstU + (dstStride >> 1) * (dstVStride >> 1); in ConvertRGB32ToPlanar() local 506 dstV[x >> 1] = V; in ConvertRGB32ToPlanar() 513 dstV += dstStride >> 1; in ConvertRGB32ToPlanar()
|
/frameworks/av/media/codec2/components/aom/ |
D | C2SoftAomDec.cpp | 509 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in copyOutputBufferToYuvPlanarFrame() argument 522 memcpy(dstV, srcV, width / 2); in copyOutputBufferToYuvPlanarFrame() 524 dstV += dstUVStride; in copyOutputBufferToYuvPlanarFrame() 598 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in convertYUV420Planar16ToYUV420Planar() argument 616 dstV[x] = (uint8_t)(srcV[x] >> 2); in convertYUV420Planar16ToYUV420Planar() 622 dstV += dstUVStride; in convertYUV420Planar16ToYUV420Planar() 695 uint8_t* dstV = const_cast<uint8_t*>(wView.data()[C2PlanarLayout::PLANE_V]); in outputBuffer() local 714 convertYUV420Planar16ToYUV420Planar(dstY, dstU, dstV, in outputBuffer() 725 dstY, dstU, dstV, srcY, srcU, srcV, in outputBuffer()
|
/frameworks/av/media/codec2/components/vpx/ |
D | C2SoftVpxDec.cpp | 634 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in copyOutputBufferToYuvPlanarFrame() argument 647 memcpy(dstV, srcV, width / 2); in copyOutputBufferToYuvPlanarFrame() 649 dstV += dstUVStride; in copyOutputBufferToYuvPlanarFrame() 724 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, in convertYUV420Planar16ToYUV420Planar() argument 742 dstV[x] = (uint8_t)(srcV[x] >> 2); in convertYUV420Planar16ToYUV420Planar() 748 dstV += dstUVStride; in convertYUV420Planar16ToYUV420Planar() 823 uint8_t *dstV = const_cast<uint8_t *>(wView.data()[C2PlanarLayout::PLANE_V]); in outputBuffer() local 863 convertYUV420Planar16ToYUV420Planar(dstY, dstU, dstV, in outputBuffer() 875 dstY, dstU, dstV, in outputBuffer()
|
/frameworks/av/media/codec2/components/mpeg4_h263/ |
D | C2SoftMpeg4Dec.cpp | 450 uint8_t *dstY, uint8_t *dstU, uint8_t *dstV, uint8_t *src, in copyOutputBufferToYuvPlanarFrame() argument 475 memcpy(dstV, src, width / 2); in copyOutputBufferToYuvPlanarFrame() 477 dstV += dstUVStride; in copyOutputBufferToYuvPlanarFrame()
|
/frameworks/av/media/codec2/sfplugin/utils/ |
D | Codec2BufferUtils.cpp | 535 uint8_t *dstV = dstU + (dstStride >> 1) * (dstVStride >> 1); in ConvertRGBToPlanarYUV() local 573 dstV[x >> 1] = CLIP3(zeroLvl, V, maxLvlChroma); in ConvertRGBToPlanarYUV() 582 dstV += dstStride >> 1; in ConvertRGBToPlanarYUV()
|