ACameraMetadata_const_entry

A single read-only camera metadata entry.

Summary

Each entry is an array of values, though many metadata fields may only have 1 entry in the array.

Public attributes

count
uint32_t
Count of elements (NOT count of bytes) in this metadata entry.
d
const double *
data
union ACameraMetadata_const_entry::@114
Pointer to the data held in this metadata entry.
f
const float *
i32
const int32_t *
i64
const int64_t *
r
tag
uint32_t
The tag identifying the entry.
type
uint8_t
The data type of this metadata entry.
u8
const uint8_t *

Public attributes

count

Declared in camera/NdkCameraMetadata.h
uint32_tACameraMetadata_const_entry::count

Count of elements (NOT count of bytes) in this metadata entry.

d

Declared in camera/NdkCameraMetadata.h
constdouble*ACameraMetadata_const_entry::d

data

Declared in camera/NdkCameraMetadata.h
unionACameraMetadata_const_entry::@114ACameraMetadata_const_entry::data

Pointer to the data held in this metadata entry.

The type field above defines which union member pointer is valid. The count field above defines the length of the data in number of elements.

f

Declared in camera/NdkCameraMetadata.h
constfloat*ACameraMetadata_const_entry::f

i32

Declared in camera/NdkCameraMetadata.h
constint32_t*ACameraMetadata_const_entry::i32

i64

Declared in camera/NdkCameraMetadata.h
constint64_t*ACameraMetadata_const_entry::i64

r

Declared in camera/NdkCameraMetadata.h
constACameraMetadata_rational *ACameraMetadata_const_entry::r

tag

Declared in camera/NdkCameraMetadata.h
uint32_tACameraMetadata_const_entry::tag

The tag identifying the entry.

It is one of the values defined in NdkCameraMetadataTags.h , and defines how the entry should be interpreted and which parts of the API provide it. See NdkCameraMetadataTags.h for more details.

type

Declared in camera/NdkCameraMetadata.h
uint8_tACameraMetadata_const_entry::type

The data type of this metadata entry.

Must be one of ACAMERA_TYPE_* enum values defined above. A particular tag always has the same type.

u8

Declared in camera/NdkCameraMetadata.h
constuint8_t*ACameraMetadata_const_entry::u8

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025年11月03日 UTC.