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

  /hardware/qcom/display/msm8084/libgralloc/
alloc_controller.cpp 559 size_t ystride, cstride; local
570 ystride = cstride = hnd->width;
575 ycbcr->cstride = cstride;
585 ystride = cstride = hnd->width;
590 ycbcr->cstride = cstride;
597 cstride = ALIGN(hnd->width/2, 16);
601 cstride * hnd->height/2);
603 ycbcr->cstride = cstride
    [all...]
  /hardware/qcom/display/msm8226/libgralloc/
alloc_controller.cpp 556 unsigned int ystride, cstride; local
567 ystride = cstride = hnd->width;
572 ycbcr->cstride = cstride;
581 ystride = cstride = hnd->width;
586 ycbcr->cstride = cstride;
593 cstride = ALIGN(hnd->width/2, 16);
597 cstride * hnd->height/2);
599 ycbcr->cstride = cstride
    [all...]
  /hardware/qcom/display/msm8974/libgralloc/
mapper.cpp 254 int ystride, cstride; local
266 ycbcr->cstride = ystride;
270 ystride = cstride = hnd->width;
275 ycbcr->cstride = cstride;
281 cstride = ALIGN(hnd->width/2, 16);
285 cstride * hnd->height/2);
287 ycbcr->cstride = cstride;
  /hardware/qcom/display/msm8994/libgralloc/
alloc_controller.cpp 629 unsigned int ystride, cstride; local
640 ystride = cstride = hnd->width;
645 ycbcr->cstride = cstride;
655 ystride = cstride = hnd->width;
660 ycbcr->cstride = cstride;
667 cstride = ALIGN(hnd->width/2, 16);
671 cstride * hnd->height/2);
673 ycbcr->cstride = cstride
    [all...]
  /system/core/include/system/
graphics.h 460 * @cstride is the stride of the chroma planes.
472 size_t cstride; member in struct:android_ycbcr
  /hardware/qcom/display/msm8960/libgralloc/
mapper.cpp 253 int ystride, cstride; local
264 ycbcr->cstride = ystride;
275 ycbcr->cstride = ystride;
282 cstride = ALIGN(ystride / 2, 16);
286 + cstride * hnd->height / 2);
288 ycbcr->cstride = cstride;
  /frameworks/av/media/libstagefright/omx/
SoftVideoEncoderOMXComponent.cpp 375 if (ycbcr->cstride == ycbcr->ystride >> 1 && ycbcr->chroma_step == 1) {
380 srcU += ycbcr->cstride;
383 srcV += ycbcr->cstride;
396 srcU += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step;
397 srcV += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step;
590 ycbcr.cstride = srcVStride >> 1;
600 ycbcr.cstride = srcVStride;
  /frameworks/rs/
rsGrallocConsumer.cpp 155 mAlloc->mHal.drvState.lod[1].stride = ycbcr.cstride;
156 mAlloc->mHal.drvState.lod[2].stride = ycbcr.cstride;
  /frameworks/native/libs/gui/
CpuConsumer.cpp 195 nativeBuffer->chromaStride = static_cast<uint32_t>(ycbcr.cstride);
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 841 size_t cStride;
849 cStride = cb->width;
865 ycbcr->cstride = cStride;
880 ".ystride: %d , .cstride: %d, .chroma_step: %d", usage,
881 ycbcr->y, ycbcr->cb, ycbcr->cr, ycbcr->ystride, ycbcr->cstride,
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/test/
venc_test.cpp 1442 int i, lscanl, lstride, cscanl, cstride, height, width; local
    [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_legacy_LegacyCameraDevice.cpp 87 size_t cStride = ycbcr->cstride;
89 ALOGV("%s: yStride is: %zu, cStride is: %zu, cStep is: %zu", __FUNCTION__, yStride, cStride,
93 cStep, yStride, cStride);
284 uint32_t cStride = ALIGN(stride / 2, 16);
289 uint8_t* cbPlane = crPlane + cStride * static_cast<uint32_t>(height) / 2;
292 crPlane, cbPlane, chromaStep, stride, cStride);
  /frameworks/base/media/jni/
android_media_ImageWriter.cpp 764 image->chromaStride = static_cast<uint32_t>(ycbcr.cstride);
832 uint32_t dataSize, ySize, cSize, cStride;
838 dataSize = ySize = cSize = cStride = 0;
888 cStride = ALIGN(buffer->stride / 2, 16);
890 cSize = cStride * buffer->height / 2;
    [all...]
  /frameworks/av/media/libstagefright/
ACodec.cpp 3874 size_t cstride = align(params.nStride \/ 2, 16); local
    [all...]

Completed in 1001 milliseconds