Home | History | Annotate | Download | only in ndk

Lines Matching refs:AImage

48  * AImage is an opaque type that allows direct application access to image data rendered into a
57 * The maxImages parameter determines the maximum number of {@link AImage} objects that can be
72 * by the user, one of them has to be released before a new {@link AImage} will become
83 * @see AImage
92 * <p>This method will return all {@link AImage} objects acquired by this reader (via
102 * Get a {@link ANativeWindow} that can be used to produce {@link AImage} for this image reader.
116 * Query the default width of the {@link AImage} generated by this reader, in pixels.
132 * Query the default height of the {@link AImage} generated by this reader, in pixels.
148 * Query the format of the {@link AImage} generated by this reader.
161 * Query the maximum number of concurrently acquired {@link AImage}s of this reader.
174 * Acquire the next {@link AImage} from the image reader's queue.
194 * @param image the acquired {@link AImage} will be filled here if the method call succeeeds.
207 media_status_t AImageReader_acquireNextImage(AImageReader* reader, /*out*/AImage** image);
211 * Acquire the latest {@link AImage} from the image reader's queue, dropping older images.
222 * {@link AImageReader_acquireNextImage} - discarding all-but-the-newest {@link AImage} requires
223 * temporarily acquiring two {@link AImage}s at once. Or more generally, calling
238 * @param image the acquired {@link AImage} will be filled here if the method call succeeeds.
251 media_status_t AImageReader_acquireLatestImage(AImageReader* reader, /*out*/AImage** image);