Searched refs:metadata (Results 1 - 3 of 3) sorted by relevance

/system/media/camera/src/
H A Dcamera_metadata.c27 * A single metadata entry, storing an array of values of a given type. If the
44 * A packet of metadata. This is a list of entries, each of which may point to
74 * In short, the entries and data are contiguous in memory after the metadata
147 camera_metadata_t *metadata = (camera_metadata_t*)dst;
148 metadata->version = CURRENT_METADATA_VERSION;
149 metadata->flags = 0;
150 metadata->entry_count = 0;
151 metadata->entry_capacity = entry_capacity;
152 metadata->entries = (camera_metadata_buffer_entry_t*)(metadata
166 free_camera_metadata(camera_metadata_t *metadata) argument
178 get_camera_metadata_size(const camera_metadata_t *metadata) argument
184 get_camera_metadata_compact_size(const camera_metadata_t *metadata) argument
195 get_camera_metadata_entry_count(const camera_metadata_t *metadata) argument
199 get_camera_metadata_entry_capacity(const camera_metadata_t *metadata) argument
203 get_camera_metadata_data_count(const camera_metadata_t *metadata) argument
207 get_camera_metadata_data_capacity(const camera_metadata_t *metadata) argument
224 camera_metadata_t *metadata = (camera_metadata_t*)dst; local
614 dump_camera_metadata(const camera_metadata_t *metadata, int fd, int verbosity) argument
620 dump_indented_camera_metadata(const camera_metadata_t *metadata, int fd, int verbosity, int indentation) argument
[all...]
/system/extras/tests/sdcard/
H A Dplot_sdcard.py33 >>> (metadata, data) = p.Parse('/tmp/data.txt')
34 >>> p.PlotIterations(metadata, data)
35 >>> p.PlotTimes(metadata, data)
133 metadata = Metadata()
142 if not metadata.complete:
143 metadata.Parse(line)
152 metadata.UpdateWith(dataset)
176 if not metadata.complete:
177 print """Error missing metadata. Did you mount debugfs?
180 return (metadata, dat
[all...]
/system/media/camera/include/system/
H A Dcamera_metadata.h74 * A reference to a metadata entry in a buffer.
96 * A read-only reference to a metadata entry in a buffer. Identical to
127 * Main definitions for the metadata entry and array structures
132 * A packet of metadata. This is a list of metadata entries, each of which has
153 * Functions for manipulating camera metadata
168 * Place a camera metadata structure into an existing buffer. Returns NULL if
173 * metadata header placed at the start of the buffer. It is the caller's
187 void free_camera_metadata(camera_metadata_t *metadata);
190 * Calculate the buffer size needed for a metadata structur
[all...]

Completed in 930 milliseconds