HomeSort by relevance Sort by last modified time
    Searched refs:srcU (Results 1 - 6 of 6) sorted by null

  /hardware/interfaces/automotive/evs/1.0/vts/functional/
FormatConvert.cpp 111 uint8_t* srcU = src+offsetU;
117 uint8_t* rowU = srcU + (r/2 * strideColor);
  /frameworks/av/media/libstagefright/omx/
SoftVideoEncoderOMXComponent.cpp 392 const uint8_t *srcU = (const uint8_t *)ycbcr->cb;
405 memcpy(dstU, srcU, width >> 1);
407 srcU += ycbcr->cstride;
416 *dstU++ = *srcU;
418 srcU += ycbcr->chroma_step;
423 srcU += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step;
SoftVideoDecoderOMXComponent.cpp 306 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
321 memcpy(dst, srcU, mWidth / 2);
322 srcU += srcUStride;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/
SoftAVC.cpp 267 const uint8_t *srcU = srcY + mWidth * mHeight;
268 const uint8_t *srcV = srcU + mWidth * mHeight / 4;
272 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);
  /frameworks/av/media/libstagefright/include/
SoftVideoDecoderOMXComponent.h 119 uint8_t *dst, const uint8_t *srcY, const uint8_t *srcU, const uint8_t *srcV,
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 162 const uint8_t *srcU = (const uint8_t *)mImg->planes[VPX_PLANE_U];
167 copyYV12FrameToOutputBuffer(dst, srcY, srcU, srcV, srcYStride, srcUStride, srcVStride);

Completed in 330 milliseconds