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

  /frameworks/native/libs/gui/
CpuConsumer.cpp 92 android_ycbcr ycbcr = android_ycbcr(); local
99 &ycbcr);
102 CC_LOGE("Unable to lock YCbCr buffer for CPU reading: %s (%d)",
106 bufferPointer = ycbcr.y;
139 nativeBuffer->stride = (ycbcr.y != NULL) ?
140 ycbcr.ystride :
149 nativeBuffer->dataCb = reinterpret_cast<uint8_t*>(ycbcr.cb);
150 nativeBuffer->dataCr = reinterpret_cast<uint8_t*>(ycbcr.cr);
151 nativeBuffer->chromaStride = ycbcr.cstride;
152 nativeBuffer->chromaStep = ycbcr.chroma_step
    [all...]
  /hardware/qcom/display/libgralloc/
mapper.cpp 250 struct android_ycbcr *ycbcr)
261 ycbcr->y = (void*)hnd->base;
262 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height);
263 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1);
264 ycbcr->ystride = ystride;
265 ycbcr->cstride = ystride;
266 ycbcr->chroma_step = 2;
267 memset(ycbcr->reserved, 0, sizeof(ycbcr->reserved));
gralloc.cpp 50 struct android_ycbcr *ycbcr);
  /frameworks/native/include/ui/
GraphicBufferMapper.h 49 int usage, const Rect& bounds, android_ycbcr *ycbcr);
GraphicBuffer.h 96 status_t lockYCbCr(uint32_t usage, android_ycbcr *ycbcr);
97 status_t lockYCbCr(uint32_t usage, const Rect& rect, android_ycbcr *ycbcr);
  /frameworks/native/libs/ui/
GraphicBufferMapper.cpp 88 int usage, const Rect& bounds, android_ycbcr *ycbcr)
95 ycbcr);
GraphicBuffer.cpp 177 status_t GraphicBuffer::lockYCbCr(uint32_t usage, android_ycbcr *ycbcr)
180 status_t res = lockYCbCr(usage, lockBounds, ycbcr);
185 android_ycbcr *ycbcr)
194 status_t res = getBufferMapper().lockYCbCr(handle, usage, rect, ycbcr);
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 787 android_ycbcr *ycbcr)
789 // Not supporting fallback module for YCbCr
794 if (!ycbcr) {
795 ALOGE("gralloc_lock_ycbcr got NULL ycbcr struct");
862 ycbcr->y = cpu_addr + yOffset;
863 ycbcr->cb = cpu_addr + uOffset;
864 ycbcr->cr = cpu_addr + vOffset;
865 ycbcr->ystride = yStride;
866 ycbcr->cstride = cStride;
867 ycbcr->chroma_step = cStep
    [all...]
  /hardware/libhardware/include/hardware/
gralloc.h 46 * Add support for flexible YCbCr format with (*lock_ycbcr)() method.
227 * difference that it fills a struct ycbcr with a description of the buffer
239 struct android_ycbcr *ycbcr);
  /device/generic/goldfish/camera/
EmulatedFakeCamera3.cpp 906 android_ycbcr ycbcr = android_ycbcr(); local
910 &ycbcr);
913 destBuf.img = static_cast<uint8_t*>(ycbcr.y);
    [all...]

Completed in 355 milliseconds