HomeSort by relevance Sort by last modified time
    Searched full:uvoffset (Results 1 - 3 of 3) sorted by null

  /frameworks/av/media/libstagefright/yuv/
YUVImage.cpp 91 int32_t uvOffset = (y >> 1) * (mWidth >> 1) + (x >> 1);
93 *uOffset = uvOffset;
94 *vOffset = uvOffset;
98 *uOffset = 2*uvOffset;
99 *vOffset = 2*uvOffset;
  /hardware/ti/omap4-aah/test/CameraHal/
camera_test_surfacetexture.cpp 157 unsigned int uvoffset; local
166 uvoffset = stride * bufHeight;
168 uvoffset += (offset - (offset % stride)) / 2 + (offset % stride);
173 chroma = src + uvoffset;
245 unsigned int uvoffset; local
252 uvoffset = strideSrc * crop.height();
253 uvoffset += (offset - (offset % strideSrc)) / 2 + (offset % strideSrc);
256 chromaSrc = static_cast<unsigned char *>(bufferSrc) + uvoffset;
261 uvoffset = strideDst * height;
264 chromaDst = static_cast<unsigned char *>(bufferDst) + uvoffset;
    [all...]
  /hardware/ti/omap4-aah/camera/
AppCallbackNotifier.cpp 705 uint32_t offset, uvoffset; local
718 uvoffset = (offset + size) * 2 / 3;
720 uvoffset += (offset - (offset % stride)) / 2 + (offset % stride);
725 unsigned const char *chroma = src + uvoffset;
    [all...]

Completed in 135 milliseconds