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

  /external/skia/src/gpu/
GrTextureToYUVPlanes.cpp 171 SkISize yuvSize = sizes[0];
173 SkAutoSTMalloc<128 * 128, uint32_t> tempYUV(yuvSize.fWidth * yuvSize.fHeight);
174 if (!yuvTex->readPixels(0, 0, yuvSize.fWidth, yuvSize.fHeight,
178 size_t yRowBytes = rowBytes[0] ? rowBytes[0] : yuvSize.fWidth;
179 size_t uRowBytes = rowBytes[1] ? rowBytes[1] : yuvSize.fWidth;
180 size_t vRowBytes = rowBytes[2] ? rowBytes[2] : yuvSize.fWidth;
181 if (yRowBytes < (size_t)yuvSize.fWidth || uRowBytes < (size_t)yuvSize.fWidth |
    [all...]
  /external/libjpeg-turbo/
tjunittest.c 414 unsigned long yuvSize=tjBufSizeYUV2(w, pad, h, subsamp);
419 if((yuvBuf=(unsigned char *)malloc(yuvSize))==NULL)
421 memset(yuvBuf, 0, yuvSize);
476 unsigned long yuvSize=tjBufSizeYUV2(scaledWidth, pad, scaledHeight,
481 if((yuvBuf=(unsigned char *)malloc(yuvSize))==NULL)
483 memset(yuvBuf, 0, yuvSize);
  /cts/tests/camera/src/android/hardware/camera2/cts/
DngCreatorTest.java 674 Size yuvSize = (mOrderedPreviewSizes.size() == 0) ? null :
676 assertNotNull("Must support at least one small YUV size.", yuvSize);
677 previewReader = createImageReader(yuvSize, ImageFormat.YUV_420_888,
    [all...]
CameraDeviceTest.java 682 Size yuvSize = getSortedSizesForFormat(cameraId, mCameraManager, ImageFormat.YUV_420_888,
693 imageReaders.add(ImageReader.newInstance(yuvSize.getWidth(), yuvSize.getHeight(),
    [all...]

Completed in 775 milliseconds