Home | History | Annotate | Download | only in ndk

Lines Matching refs:AImage

32 AImage::AImage(AImageReader* reader, int32_t format,
41 AImage::~AImage() {
44 "Error: AImage %p is deleted before returning buffer to AImageReader!", this);
49 AImage::isClosed() const {
55 AImage::close() {
62 LOG_ALWAYS_FATAL("Error: AImage not closed before AImageReader close!");
73 AImage::free() {
75 ALOGE("Cannot free AImage before close!");
83 AImage::lockReader() const {
93 AImage::unlockReader() const {
103 AImage::getWidth(int32_t* width) const {
117 AImage::getHeight(int32_t* height) const {
131 AImage::getFormat(int32_t* format) const {
145 AImage::getNumPlanes(int32_t* numPlanes) const {
159 AImage::getTimestamp(int64_t* timestamp) const {
173 AImage::getPlanePixelStride(int planeIdx, /*out*/int32_t* pixelStride) const {
228 AImage::getPlaneRowStride(int planeIdx, /*out*/int32_t* rowStride) const {
302 AImage::getJpegSize() const {
336 AImage::getPlaneData(int planeIdx,/*out*/uint8_t** data, /*out*/int* dataLength) const {
501 void AImage_delete(AImage* image) {
516 media_status_t AImage_getWidth(const AImage* image, /*out*/int32_t* width) {
527 media_status_t AImage_getHeight(const AImage* image, /*out*/int32_t* height) {
538 media_status_t AImage_getFormat(const AImage* image, /*out*/int32_t* format) {
549 media_status_t AImage_getCropRect(const AImage* image, /*out*/AImageCropRect* rect) {
556 // For now AImage only supports camera outputs where cropRect is always full window
575 media_status_t AImage_getTimestamp(const AImage* image, /*out*/int64_t* timestampNs) {
586 media_status_t AImage_getNumberOfPlanes(const AImage* image, /*out*/int32_t* numPlanes) {
598 const AImage* image, int planeIdx, /*out*/int32_t* pixelStride) {
610 const AImage* image, int planeIdx, /*out*/int32_t* rowStride) {
622 const AImage* image, int planeIdx,