Searched refs:srcU (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/include/
H A DSoftVideoDecoderOMXComponent.h82 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoEncoderOMXComponent.cpp356 const uint8_t *srcU = (const uint8_t *)ycbcr->cb; local
369 memcpy(dstU, srcU, width >> 1);
371 srcU += ycbcr->cstride;
380 *dstU++ = *srcU;
382 srcU += ycbcr->chroma_step;
387 srcU += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step;
H A DSoftVideoDecoderOMXComponent.cpp231 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
246 memcpy(dst, srcU, mWidth / 2);
247 srcU += srcUStride;
230 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
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
H A DSoftAVC.cpp257 const uint8_t *srcU = srcY + mWidth * mHeight; local
258 const uint8_t *srcV = srcU + mWidth * mHeight / 4;
262 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);
/frameworks/av/media/libstagefright/codecs/on2/dec/
H A DSoftVPX.cpp156 const uint8_t *srcU = (const uint8_t *)mImg->planes[PLANE_U]; local
161 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);

Completed in 2368 milliseconds