Searched refs:yPlane (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/codec2/components/mpeg4_h263/ |
D | C2SoftMpeg4Enc.cpp | 484 uint8_t *yPlane = const_cast<uint8_t *>(rView->data()[C2PlanarLayout::PLANE_Y]); in process() local 502 yPlane = conversionBuffer.data(); in process() 503 uPlane = yPlane + yPlaneSize; in process() 507 ConvertRGBToPlanarYUV(yPlane, yStride, height, conversionBuffer.size(), *rView.get()); in process() 536 yPlane = conversionBuffer.data(); in process() 537 uPlane = yPlane + yPlaneSize; in process() 555 CHECK(NULL != yPlane); in process() 560 vin.yChan = yPlane; in process() 596 mConversionBuffersInUse.erase(yPlane); in process()
|
/frameworks/base/core/jni/ |
D | android_hardware_camera2_legacy_LegacyCameraDevice.cpp | 71 static void rgbToYuv420(uint8_t* rgbBuf, size_t width, size_t height, uint8_t* yPlane, in rgbToYuv420() argument 78 uint8_t* y = yPlane; in rgbToYuv420() 94 yPlane += yStride; in rgbToYuv420() 262 uint8_t* yPlane = img; in produceFrame() local 269 rgbToYuv420(pixelBuffer, width, height, yPlane, in produceFrame() 301 uint8_t* yPlane = img; in produceFrame() local 305 rgbToYuv420(pixelBuffer, width, height, yPlane, in produceFrame()
|
/frameworks/av/media/codec2/components/hevc/ |
D | C2SoftHevcEnc.cpp | 577 uint8_t* yPlane = in setEncodeArgs() local 606 yPlane = conversionBuffer.data(); in setEncodeArgs() 607 uPlane = yPlane + yPlaneSize; in setEncodeArgs() 611 ConvertRGBToPlanarYUV(yPlane, yStride, height, in setEncodeArgs() 643 yPlane = conversionBuffer.data(); in setEncodeArgs() 644 uPlane = yPlane + yPlaneSize; in setEncodeArgs() 662 ps_encode_ip->apv_inp_planes[0] = yPlane; in setEncodeArgs() 684 ps_encode_ip->apv_inp_planes[0] = yPlane; in setEncodeArgs()
|
/frameworks/base/core/java/android/hardware/camera2/ |
D | DngCreator.java | 556 Image.Plane yPlane = yuvImage.getPlanes()[0]; in convertToRGB() local 560 ByteBuffer yBuf = yPlane.getBuffer(); in convertToRGB() 568 int yRowStride = yPlane.getRowStride(); in convertToRGB() 572 int yPixStride = yPlane.getPixelStride(); in convertToRGB()
|