/frameworks/av/media/codec2/components/gav1/ |
D | C2SoftGav1Dec.cpp | 475 const uint8_t *srcV, size_t srcYStride, in copyOutputBufferToYV12Frame() argument 490 memcpy(dst, srcV, width / 2); in copyOutputBufferToYV12Frame() 491 srcV += srcVStride; in copyOutputBufferToYV12Frame() 505 const uint16_t *srcV, size_t srcYStride, in convertYUV420Planar16ToY410() argument 516 uint16_t *vSrc = (uint16_t *)srcV; in convertYUV420Planar16ToY410() 565 srcV += srcVStride; in convertYUV420Planar16ToY410() 572 const uint16_t *srcV, size_t srcYStride, size_t srcUStride, in convertYUV420Planar16ToYUV420Planar() argument 593 dstV[x] = (uint8_t)(srcV[x] >> 2); in convertYUV420Planar16ToYUV420Planar() 597 srcV += srcVStride; in convertYUV420Planar16ToYUV420Planar() 690 const uint16_t *srcV = (const uint16_t *)buffer->plane[2]; in outputBuffer() local [all …]
|
/frameworks/av/media/codec2/components/vpx/ |
D | C2SoftVpxDec.cpp | 634 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV, in copyOutputBufferToYuvPlanarFrame() argument 648 memcpy(dst, srcV, width / 2); in copyOutputBufferToYuvPlanarFrame() 649 srcV += srcVStride; in copyOutputBufferToYuvPlanarFrame() 662 const uint16_t *srcY, const uint16_t *srcU, const uint16_t *srcV, in convertYUV420Planar16ToY410() argument 673 uint16_t *vSrc = (uint16_t*) srcV; in convertYUV420Planar16ToY410() 717 srcV += srcVStride; in convertYUV420Planar16ToY410() 725 const uint16_t *srcY, const uint16_t *srcU, const uint16_t *srcV, in convertYUV420Planar16ToYUV420Planar() argument 747 dstV[x] = (uint8_t)(srcV[x] >> 2); in convertYUV420Planar16ToYUV420Planar() 751 srcV += srcVStride; in convertYUV420Planar16ToYUV420Planar() 837 const uint16_t *srcV = (const uint16_t *)img->planes[VPX_PLANE_V]; in outputBuffer() local [all …]
|
/frameworks/av/media/codec2/components/aom/ |
D | C2SoftAomDec.cpp | 509 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV, in copyOutputBufferToYuvPlanarFrame() argument 523 memcpy(dst, srcV, width / 2); in copyOutputBufferToYuvPlanarFrame() 524 srcV += srcVStride; in copyOutputBufferToYuvPlanarFrame() 537 const uint16_t *srcY, const uint16_t *srcU, const uint16_t *srcV, in convertYUV420Planar16ToY410() argument 548 uint16_t *vSrc = (uint16_t*) srcV; in convertYUV420Planar16ToY410() 592 srcV += srcVStride; in convertYUV420Planar16ToY410() 600 const uint16_t *srcY, const uint16_t *srcU, const uint16_t *srcV, in convertYUV420Planar16ToYUV420Planar() argument 622 dstV[x] = (uint8_t)(srcV[x] >> 2); in convertYUV420Planar16ToYUV420Planar() 626 srcV += srcVStride; in convertYUV420Planar16ToYUV420Planar() 710 const uint16_t *srcV = (const uint16_t *)img->planes[AOM_PLANE_V]; in outputBuffer() local [all …]
|
/frameworks/av/media/libstagefright/omx/ |
D | SoftVideoEncoderOMXComponent.cpp | 392 const uint8_t *srcV = (const uint8_t *)ycbcr->cr; in ConvertFlexYUVToPlanar() local 407 memcpy(dstV, srcV, width >> 1); in ConvertFlexYUVToPlanar() 409 srcV += ycbcr->cstride; in ConvertFlexYUVToPlanar() 416 *dstV++ = *srcV; in ConvertFlexYUVToPlanar() 418 srcV += ycbcr->chroma_step; in ConvertFlexYUVToPlanar() 423 srcV += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step; in ConvertFlexYUVToPlanar()
|
D | SoftVideoDecoderOMXComponent.cpp | 316 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV, in copyYV12FrameToOutputBuffer() argument 341 memcpy(dst, srcV, mWidth / 2 * bpp); in copyYV12FrameToOutputBuffer() 342 srcV += srcVStride; in copyYV12FrameToOutputBuffer()
|
/frameworks/av/media/libstagefright/codecs/on2/dec/ |
D | SoftVPX.cpp | 185 const uint8_t *srcV = (const uint8_t *)mImg->planes[VPX_PLANE_V]; in outputBuffers() local 189 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride); in outputBuffers()
|
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/ |
D | SoftVideoDecoderOMXComponent.h | 133 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
|