Searched refs:readerFormat (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/media/java/android/media/ |
D | ImageReader.java | 672 int readerFormat = ImageReader.this.getImageFormat(); in getFormat() local 674 mFormat = (readerFormat == ImageFormat.PRIVATE) ? readerFormat : in getFormat() 675 nativeGetFormat(readerFormat); in getFormat() 847 private synchronized native ByteBuffer nativeImageGetBuffer(int idx, int readerFormat); in nativeImageGetBuffer() argument 848 private synchronized native SurfacePlane nativeCreatePlane(int idx, int readerFormat); in nativeCreatePlane() argument 851 private synchronized native int nativeGetFormat(int readerFormat); in nativeGetFormat() argument
|
/frameworks/base/media/jni/ |
D | android_media_ImageReader.cpp | 384 uint8_t **base, uint32_t *size, int32_t readerFormat) in Image_getLockedBufferInfo() argument 401 bool usingRGBAOverride = usingRGBAToJpegOverride(fmt, readerFormat); in Image_getLockedBufferInfo() 402 fmt = applyFormatOverrides(fmt, readerFormat); in Image_getLockedBufferInfo() 1142 static jobject Image_createSurfacePlane(JNIEnv* env, jobject thiz, int idx, int readerFormat) in Image_createSurfacePlane() argument 1145 PublicFormat publicReaderFormat = static_cast<PublicFormat>(readerFormat); in Image_createSurfacePlane() 1172 static jobject Image_getByteBuffer(JNIEnv* env, jobject thiz, int idx, int readerFormat) in Image_getByteBuffer() argument 1177 PublicFormat readerPublicFormat = static_cast<PublicFormat>(readerFormat); in Image_getByteBuffer() 1236 static jint Image_getFormat(JNIEnv* env, jobject thiz, jint readerFormat) in Image_getFormat() argument 1238 if (isFormatOpaque(readerFormat)) { in Image_getFormat() 1244 static_cast<PublicFormat>(readerFormat)); in Image_getFormat()
|