ACameraMetadata_const_entry
#include <NdkCameraMetadata.h>
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::@113
Pointer to the data held in this metadata entry.
|
f
|
const float *
|
i32
|
const int32_t *
|
i64
|
const int64_t *
|
r
|
const ACameraMetadata_rational *
|
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
uint32_t ACameraMetadata_const_entry::count
Count of elements (NOT count of bytes) in this metadata entry.
d
const double * ACameraMetadata_const_entry::d
data
union ACameraMetadata_const_entry::@113 ACameraMetadata_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
const float * ACameraMetadata_const_entry::f
i32
const int32_t * ACameraMetadata_const_entry::i32
i64
const int64_t * ACameraMetadata_const_entry::i64
r
const ACameraMetadata_rational * ACameraMetadata_const_entry::r
tag
uint32_t ACameraMetadata_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
uint8_t ACameraMetadata_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
const uint8_t * ACameraMetadata_const_entry::u8