Searched defs:srcV (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp175 const uint8_t *srcV = (const uint8_t *)mImg->planes[VPX_PLANE_V]; local
179 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp316 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
341 memcpy(dst, srcV, mWidth / 2 * bpp);
342 srcV += srcVStride;
315 copyYV12FrameToOutputBuffer( uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV, size_t srcYStride, size_t srcUStride, size_t srcVStride) argument
H A DSoftVideoEncoderOMXComponent.cpp392 const uint8_t *srcV = (const uint8_t *)ycbcr->cr; local
407 memcpy(dstV, srcV, width >> 1);
409 srcV += ycbcr->cstride;
416 *dstV++ = *srcV;
418 srcV += ycbcr->chroma_step;
423 srcV += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step;

Completed in 109 milliseconds