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

/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp154 const uint8_t *srcV = (const uint8_t *)mImg->planes[PLANE_V]; local
158 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.cpp256 const uint8_t *srcV = srcU + mWidth * mHeight / 4; local
260 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoEncoderOMXComponent.cpp52 const uint8_t *srcV = (const uint8_t *)ycbcr->cr; local
67 memcpy(dstV, srcV, width >> 1);
69 srcV += ycbcr->cstride;
76 *dstV++ = *srcV;
78 srcV += ycbcr->chroma_step;
83 srcV += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step;
H A DSoftVideoDecoderOMXComponent.cpp218 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
240 memcpy(dst, srcV, mWidth / 2);
241 srcV += srcVStride;
217 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

Completed in 83 milliseconds