/frameworks/av/media/ndk/ |
D | NdkImage.cpp | 35 int64_t timestamp, int32_t width, int32_t height, int32_t numPlanes) : in AImage() argument 37 mTimestamp(timestamp), mWidth(width), mHeight(height), mNumPlanes(numPlanes) { in AImage() 135 AImage::getNumPlanes(int32_t* numPlanes) const { in getNumPlanes() 136 if (numPlanes == nullptr) { in getNumPlanes() 139 *numPlanes = -1; in getNumPlanes() 144 *numPlanes = mNumPlanes; in getNumPlanes() 761 media_status_t AImage_getNumberOfPlanes(const AImage* image, /*out*/int32_t* numPlanes) { in AImage_getNumberOfPlanes() argument 763 if (image == nullptr || numPlanes == nullptr) { in AImage_getNumberOfPlanes() 765 __FUNCTION__, image, numPlanes); in AImage_getNumberOfPlanes() 768 return image->getNumPlanes(numPlanes); in AImage_getNumberOfPlanes()
|
D | NdkImagePriv.h | 56 int64_t timestamp, int32_t width, int32_t height, int32_t numPlanes); 75 media_status_t getNumPlanes(/*out*/int32_t* numPlanes) const;
|
/frameworks/base/media/jni/ |
D | android_media_ImageReader.cpp | 781 int numPlanes, jobject buffer, int fenceFd, int format, int cropLeft, int cropTop, in ImageReader_createImagePlanes() argument 784 ALOGV("%s: create ImagePlane array with size %d", __FUNCTION__, numPlanes); in ImageReader_createImagePlanes() 794 if (isFormatOpaque(halReaderFormat) && numPlanes > 0) { in ImageReader_createImagePlanes() 797 " must be 0", halReaderFormat, numPlanes); in ImageReader_createImagePlanes() 802 jobjectArray imagePlanes = env->NewObjectArray(numPlanes, gImagePlaneClassInfo.clazz, in ImageReader_createImagePlanes() 828 for (int i = 0; i < numPlanes; i++) { in ImageReader_createImagePlanes() 850 int numPlanes, int halReaderFormat, uint64_t ndkReaderUsage) in Image_createSurfacePlanes() argument 852 ALOGV("%s: create SurfacePlane array with size %d", __FUNCTION__, numPlanes); in Image_createSurfacePlanes() 859 if (isFormatOpaque(halReaderFormat) && numPlanes > 0) { in Image_createSurfacePlanes() 862 " must be 0", halReaderFormat, numPlanes); in Image_createSurfacePlanes() [all …]
|
D | android_media_ImageWriter.cpp | 1059 int numPlanes, int writerFormat) { in Image_createSurfacePlanes() argument 1060 ALOGV("%s: create SurfacePlane array with size %d", __FUNCTION__, numPlanes); in Image_createSurfacePlanes() 1067 if (isFormatOpaque(halFormat) && numPlanes > 0) { in Image_createSurfacePlanes() 1070 " must be 0", writerFormat, numPlanes); in Image_createSurfacePlanes() 1075 jobjectArray surfacePlanes = env->NewObjectArray(numPlanes, gSurfacePlaneClassInfo.clazz, in Image_createSurfacePlanes() 1092 for (int i = 0; i < numPlanes; i++) { in Image_createSurfacePlanes()
|
/frameworks/av/media/codec2/vndk/ |
D | C2AllocatorGralloc.cpp | 270 layout->numPlanes = 0; in Gralloc4Mapper_lock() 276 uint32_t rootIx = layout->numPlanes; in Gralloc4Mapper_lock() 322 layout->numPlanes++; in Gralloc4Mapper_lock() 512 layout->numPlanes = 4; in map() 585 layout->numPlanes = 3; in map() 676 layout->numPlanes = 3; in map() 740 layout->numPlanes = 3; in map() 806 layout->numPlanes = 3; in map() 871 layout->numPlanes = 1; in map() 908 layout->type, layout->numPlanes, layout->rootPlanes); in map() [all …]
|
D | C2Buffer.cpp | 1279 for (size_t planeIx = 0; planeIx < mLayout.numPlanes; ++planeIx) { in Mapped()
|
/frameworks/av/media/ndk/include/media/ |
D | NdkImage.h | 693 media_status_t AImage_getNumberOfPlanes(const AImage* image, /*out*/int32_t* numPlanes) __INTRODUCE…
|
/frameworks/av/media/img_utils/src/ |
D | DngUtils.cpp | 388 status_t OpcodeListBuilder::addWarpRectilinear(uint32_t numPlanes, in addWarpRectilinear() argument 403 const uint32_t NUMBER_COEFFS = numPlanes * 6; in addWarpRectilinear() 409 err = mEndianOut.write(&numPlanes, 0, 1); in addWarpRectilinear()
|
/frameworks/av/media/img_utils/include/img_utils/ |
D | DngUtils.h | 141 virtual status_t addWarpRectilinear(uint32_t numPlanes,
|
/frameworks/base/media/java/android/media/ |
D | ImageReader.java | 1420 private synchronized native SurfacePlane[] nativeCreatePlanes(int numPlanes, in nativeCreatePlanes() argument 1486 public static ImagePlane[] initializeImagePlanes(int numPlanes, in initializeImagePlanes() argument 1490 return nativeCreateImagePlanes(numPlanes, buffer, fenceFd, format, crop.left, crop.top, in initializeImagePlanes() 1494 private synchronized static native ImagePlane[] nativeCreateImagePlanes(int numPlanes, in nativeCreateImagePlanes() argument
|
D | ImageWriter.java | 1168 int numPlanes = ImageUtils.getNumPlanesForFormat(getFormat()); in getPlanes() local 1169 mPlanes = nativeCreatePlanes(numPlanes, getOwner().getFormat()); in getPlanes() 1279 private synchronized native SurfacePlane[] nativeCreatePlanes(int numPlanes, int writerFmt); in nativeCreatePlanes() argument
|
D | MediaCodec.java | 5408 int numPlanes = info.getInt(); in MediaImage() local 5409 if (numPlanes != 3) { in MediaImage() 5410 throw new RuntimeException("unexpected number of planes: " + numPlanes); in MediaImage() 5440 mPlanes = new MediaPlane[numPlanes]; in MediaImage() 5441 for (int ix = 0; ix < numPlanes; ix++) { in MediaImage()
|
/frameworks/av/media/codec2/sfplugin/ |
D | Codec2Buffer.cpp | 249 if (layout.numPlanes == 0) { in GraphicView2MediaImageConverter() 267 if (layout.numPlanes != 3) { in GraphicView2MediaImageConverter() 268 ALOGD("Converter: %d planes for YUV layout", layout.numPlanes); in GraphicView2MediaImageConverter() 496 if (layout.numPlanes == 1) { in GraphicView2MediaImageConverter() 520 for (uint32_t i = 0; i < layout.numPlanes; ++i) { in GraphicView2MediaImageConverter() 541 for (uint32_t i = 0; i < layout.numPlanes; ++i) { in GraphicView2MediaImageConverter() 553 mediaImage->mNumPlanes = layout.numPlanes; in GraphicView2MediaImageConverter() 560 for (uint32_t i = 0; i < layout.numPlanes; ++i) { in GraphicView2MediaImageConverter()
|
/frameworks/av/media/codec2/sfplugin/utils/ |
D | Codec2BufferUtils.cpp | 74 for (uint32_t i = 0; i < layout.numPlanes; ++i) { in _ImageCopy() 294 return (layout.numPlanes == 3 in IsYUV420() 318 return (layout.numPlanes == 3 in IsYUV420_10bit()
|
/frameworks/av/media/codec2/sfplugin/tests/ |
D | CCodecBuffers_test.cpp | 189 ASSERT_EQ(3u, layout.numPlanes); in TEST() 326 ASSERT_EQ(3u, layout.numPlanes); in TEST() 455 for (size_t i = 0; i < mLayout.numPlanes; ++i) { in map()
|
/frameworks/av/media/codec2/core/include/ |
D | C2Buffer.h | 1705 uint32_t numPlanes; // number of component planes member
|
/frameworks/base/core/jni/ |
D | android_hardware_camera2_DngCreator.cpp | 1019 size_t numChannels, const uint8_t* planeColors, size_t numPlanes, in generateNoiseProfile() argument 1022 for (size_t p = 0; p < numPlanes; ++p) { in generateNoiseProfile()
|