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

  /development/ndk/platforms/android-24/include/media/
NdkImageReader.h 57 * The maxImages parameter determines the maximum number of {@link AImage} objects that can be
70 * @param maxImages The maximum number of images the user will want to access simultaneously. This
71 * should be as small as possible to limit memory use. Once maxImages Images are obtained
80 * height, format, maxImages arguments is not supported.</li>
86 int32_t width, int32_t height, int32_t format, int32_t maxImages,
164 * @param maxImages the maximum number of concurrently acquired images of the reader will be filled
169 * <li>{@link AMEDIA_ERROR_INVALID_PARAMETER} if reader or maxImages is NULL.</li></ul>
171 media_status_t AImageReader_getMaxImages(const AImageReader* reader, /*out*/int32_t* maxImages);
184 * This method will fail if {@link AImageReader_getMaxImages maxImages} have been acquired with
187 * calls greater than {@link AImageReader_getMaxImages maxImages} without callin
    [all...]
  /frameworks/av/media/ndk/include/media/
NdkImageReader.h 61 * The maxImages parameter determines the maximum number of {@link AImage} objects that can be
76 * @param maxImages The maximum number of images the user will want to access simultaneously. This
77 * should be as small as possible to limit memory use. Once maxImages Images are obtained
86 * height, format, maxImages arguments is not supported.</li>
92 int32_t width, int32_t height, int32_t format, int32_t maxImages,
170 * @param maxImages the maximum number of concurrently acquired images of the reader will be filled
175 * <li>{@link AMEDIA_ERROR_INVALID_PARAMETER} if reader or maxImages is NULL.</li></ul>
177 media_status_t AImageReader_getMaxImages(const AImageReader* reader, /*out*/int32_t* maxImages);
190 * This method will fail if {@link AImageReader_getMaxImages maxImages} have been acquired with
193 * calls greater than {@link AImageReader_getMaxImages maxImages} without callin
    [all...]
  /frameworks/base/media/java/android/media/
ImageWriter.java 57 * {@code maxImages} constructor parameter.
101 * The {@code maxImages} parameter determines the maximum number of
113 * @param maxImages The maximum number of Images the user will want to
115 * as small as possible to limit memory use. Once maxImages
121 public static ImageWriter newInstance(Surface surface, int maxImages) {
122 return new ImageWriter(surface, maxImages, ImageFormat.UNKNOWN);
130 * The {@code maxImages} parameter determines the maximum number of
155 * @param maxImages The maximum number of Images the user will want to
157 * as small as possible to limit memory use. Once maxImages
167 public static ImageWriter newInstance(Surface surface, int maxImages, int format)
    [all...]
ImageReader.java 51 * {@code maxImages} constructor parameter. New images sent to an ImageReader
71 * because the consumer has already acquired {@maxImages} and cannot
87 * The {@code maxImages} parameter determines the maximum number of
122 * @param maxImages The maximum number of images the user will want to
124 * limit memory use. Once maxImages Images are obtained by the
131 public static ImageReader newInstance(int width, int height, int format, int maxImages) {
132 return new ImageReader(width, height, format, maxImages, BUFFER_USAGE_UNKNOWN);
140 * The {@code maxImages} parameter determines the maximum number of {@link Image} objects that
205 * @param maxImages The maximum number of images the user will want to access simultaneously.
206 * This should be as small as possible to limit memory use. Once maxImages Images ar
    [all...]
  /frameworks/av/media/ndk/
NdkImageReader.cpp 251 int32_t maxImages)
256 mMaxImages(maxImages),
374 " maxImages buffers");
590 int32_t width, int32_t height, int32_t format, int32_t maxImages,
594 width, height, format, AHARDWAREBUFFER_USAGE_CPU_READ_OFTEN, maxImages, reader);
600 int32_t maxImages, /*out*/ AImageReader** reader) {
609 if (maxImages < 1) {
611 __FUNCTION__, maxImages);
615 if (maxImages > BufferQueueDefs::NUM_BUFFER_SLOTS) {
617 __FUNCTION__, maxImages, BufferQueueDefs::NUM_BUFFER_SLOTS)
    [all...]
NdkImageReaderPriv.h 59 int32_t maxImages);
  /packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
AndroidImageReaderProxy.java 46 public static ImageReaderProxy newInstance(int width, int height, int format, int maxImages) {
48 format, maxImages));
  /external/deqp/modules/gles31/functional/
es31fIndexedStateQueryTests.cpp 493 int maxImages = -1;
497 gl.glGetIntegerv(GL_MAX_IMAGE_UNITS, &maxImages);
503 for (int ndx = 0; ndx < maxImages; ++ndx)
512 const int ndxB = maxImages / 2;
557 int maxImages = -1;
561 gl.glGetIntegerv(GL_MAX_IMAGE_UNITS, &maxImages);
567 for (int ndx = 0; ndx < maxImages; ++ndx)
576 const int ndxB = maxImages / 2;
621 int maxImages = -1;
625 gl.glGetIntegerv(GL_MAX_IMAGE_UNITS, &maxImages);
    [all...]
  /frameworks/base/media/jni/
android_media_ImageReader.cpp 85 JNIImageReaderContext(JNIEnv* env, jobject weakThiz, jclass clazz, int maxImages);
129 jobject weakThiz, jclass clazz, int maxImages) :
136 for (int i = 0; i < maxImages; i++) {
334 jint format, jint maxImages, jlong ndkUsage)
340 ALOGV("%s: width:%d, height: %d, format: 0x%x, maxImages:%d",
341 __FUNCTION__, width, height, format, maxImages);
354 sp<JNIImageReaderContext> ctx(new JNIImageReaderContext(env, weakThiz, clazz, maxImages));
361 width, height, format, maxImages, getpid(),
381 bufferConsumer = new BufferItemConsumer(gbConsumer, consumerUsage, maxImages,
509 " maxImages buffers")
    [all...]
android_media_ImageWriter.cpp 224 jint maxImages, jint userFormat) {
227 ALOGV("%s: maxImages:%d", __FUNCTION__, maxImages);
308 size_t totalBufferCount = maxImages + minUndequeuedBufferCount;
  /cts/tests/tests/graphics/jni/
android_graphics_cts_CameraGpuCtsActivity.cpp 287 int32_t maxImages)
288 : mWidth(width), mHeight(height), mFormat(format), mUsage(usage), mMaxImages(maxImages) {}
  /cts/tests/tests/media/libimagereaderjni/
AImageReaderCts.cpp 270 int32_t maxImages,
276 mMaxImages(maxImages),
535 ALOGE("Test takePictures failed for test case usage=%" PRIu64 ", maxImages=%d, "
  /packages/apps/Camera2/src/com/android/camera/one/v2/
ImageCaptureManager.java 320 * @param maxImages the maximum number of images provided by the
329 ImageCaptureManager(int maxImages, Handler listenerHandler,
335 maxImages - 2);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
Camera2ReprocessCaptureTest.java 459 /*maxImages*/1);
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
ReprocessCaptureTest.java 254 reprocessOutputFormat, /*maxImages*/1);
708 /*maxImages*/1);
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraTestUtils.java 189 * @param maxImages The max number of Images that can be dequeued simultaneously.
195 Surface inputSurface, int maxImages,
197 ImageWriter writer = ImageWriter.newInstance(inputSurface, maxImages);
274 // when the queued images reaches the reader maxImages
276 // maxImages held by the queue in async mode.
294 * reach to maxImages queued. If the caller doesn't call getImage(), the
300 * @param maxImages The max number of images held by this listener.
306 public SimpleImageReaderListener(boolean asyncMode, int maxImages) {
308 mMaxImages = maxImages;
    [all...]
  /cts/tests/camera/utils/src/android/hardware/camera2/cts/
CameraTestUtils.java 189 * @param maxImages The max number of Images that can be dequeued simultaneously.
195 Surface inputSurface, int maxImages,
197 ImageWriter writer = ImageWriter.newInstance(inputSurface, maxImages);
289 // when the queued images reaches the reader maxImages
291 // maxImages held by the queue in async mode.
309 * reach to maxImages queued. If the caller doesn't call getImage(), the
315 * @param maxImages The max number of images held by this listener.
321 public SimpleImageReaderListener(boolean asyncMode, int maxImages) {
323 mMaxImages = maxImages;
    [all...]
  /cts/tests/camera/libctscamera2jni/
native-camera-jni.cpp 528 int32_t width, int32_t height, int32_t format, int32_t maxImages,
537 maxImages, &mImgReader);
    [all...]
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/21/
android.jar 

Completed in 1631 milliseconds