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

  /hardware/qcom/display/msm8084/libgralloc/
alloc_controller.cpp 557 size_t ystride, cstride; local
568 ystride = cstride = hnd->width;
573 ycbcr->cstride = cstride;
583 ystride = cstride = hnd->width;
588 ycbcr->cstride = cstride;
595 cstride = ALIGN(hnd->width/2, 16);
599 cstride * hnd->height/2);
601 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/msm8909/libgralloc/
alloc_controller.cpp 569 unsigned int ystride, cstride; local
580 ystride = cstride = hnd->width;
585 ycbcr->cstride = cstride;
593 ystride = cstride = hnd->width;
598 ycbcr->cstride = cstride;
605 cstride = ALIGN(hnd->width/2, 16);
609 cstride * hnd->height/2);
611 ycbcr->cstride = cstride
    [all...]
  /hardware/qcom/display/msm8994/libgralloc/
alloc_controller.cpp 648 unsigned int ystride, cstride; local
659 ystride = cstride = hnd->width;
664 ycbcr->cstride = cstride;
674 ystride = cstride = hnd->width;
679 ycbcr->cstride = cstride;
686 cstride = ALIGN(hnd->width/2, 16);
690 cstride * hnd->height/2);
692 ycbcr->cstride = cstride
    [all...]
  /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 399 if (ycbcr->cstride == ycbcr->ystride >> 1 && ycbcr->chroma_step == 1) {
404 srcU += ycbcr->cstride;
407 srcV += ycbcr->cstride;
420 srcU += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step;
421 srcV += ycbcr->cstride - (width >> 1) * ycbcr->chroma_step;
611 ycbcr.cstride = srcVStride >> 1;
621 ycbcr.cstride = srcVStride;
  /hardware/qcom/display/msm8996/libgralloc/
alloc_controller.cpp 752 ycbcr->cstride = VENUS_UV_STRIDE(color_format, width);
760 unsigned int ystride, cstride; local
762 ystride = cstride = width * bpp;
767 ycbcr->cstride = cstride;
778 unsigned int ystride, cstride; local
839 cstride = ALIGN(width/2, 16);
843 cstride * height/2);
845 ycbcr->cstride = cstride;
    [all...]
  /system/core/include/system/
graphics.h 461 * @cstride is the stride of the chroma planes.
473 size_t cstride; member in struct:android_ycbcr
    [all...]
  /frameworks/rs/
rsGrallocConsumer.cpp 191 mAlloc[idx]->mHal.drvState.lod[1].stride = ycbcr.cstride;
192 mAlloc[idx]->mHal.drvState.lod[2].stride = ycbcr.cstride;
212 size_t cStride = rsRound(yStride >> 1, 16);
216 uint8_t *cbPtr = crPtr + cStride * cHeight;
222 mAlloc[idx]->mHal.drvState.lod[1].stride = cStride;
223 mAlloc[idx]->mHal.drvState.lod[2].stride = cStride;
  /external/drm_gralloc/
gralloc.cpp 143 ycbcr->cstride = handle->stride;
  /frameworks/native/libs/gui/
CpuConsumer.cpp 199 nativeBuffer->chromaStride = static_cast<uint32_t>(ycbcr.cstride);
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 840 size_t cStride;
848 cStride = cb->width;
864 ycbcr->cstride = cStride;
879 ".ystride: %d , .cstride: %d, .chroma_step: %d", usage,
880 ycbcr->y, ycbcr->cb, ycbcr->cr, ycbcr->ystride, ycbcr->cstride,
    [all...]
  /hardware/qcom/media/msm8974/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 88 size_t cStride = ycbcr->cstride;
90 ALOGV("%s: yStride is: %zu, cStride is: %zu, cStep is: %zu", __FUNCTION__, yStride, cStride,
94 cStep, yStride, cStride);
273 uint32_t cStride = ALIGN(stride / 2, 16);
278 uint8_t* cbPlane = crPlane + cStride * static_cast<uint32_t>(height) / 2;
281 crPlane, cbPlane, chromaStep, stride, cStride);
  /frameworks/base/media/jni/
android_media_Utils.cpp 658 uint32_t dataSize, ySize, cSize, cStride;
664 dataSize = ySize = cSize = cStride = 0;
714 cStride = ALIGN(buffer->stride / 2, 16);
716 cSize = cStride * buffer->height / 2;
898 outputImage->chromaStride = static_cast<uint32_t>(ycbcr.cstride);
  /frameworks/av/media/libstagefright/
ACodec.cpp 4555 size_t cstride = align(params.nStride \/ 2, 16); local
    [all...]

Completed in 1094 milliseconds