diff options
author | Igor Murashkin <iam@google.com> | 2013-02-13 18:23:39 -0800 |
---|---|---|
committer | Igor Murashkin <iam@google.com> | 2013-02-22 10:50:14 -0800 |
commit | 537799199bdd7a585585dee409e0e3a86bad93b7 (patch) | |
tree | 662d09dd904faaea81bff84f4587cdf7a59918d9 /include/camera/CameraMetadata.h | |
parent | bd02dd1bf1f34eb4e100d0d058f1fe5a2790d67e (diff) | |
download | frameworks_av-537799199bdd7a585585dee409e0e3a86bad93b7.zip frameworks_av-537799199bdd7a585585dee409e0e3a86bad93b7.tar.gz frameworks_av-537799199bdd7a585585dee409e0e3a86bad93b7.tar.bz2 |
Camera: Add exists function to CameraMetadata
Change-Id: I081f61417fca7c8408e9e767129647ddce5364ab
Diffstat (limited to 'include/camera/CameraMetadata.h')
-rw-r--r-- | include/camera/CameraMetadata.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/camera/CameraMetadata.h b/include/camera/CameraMetadata.h index cf599e1..4289126 100644 --- a/include/camera/CameraMetadata.h +++ b/include/camera/CameraMetadata.h @@ -121,6 +121,12 @@ class CameraMetadata { } /** + * Check if a metadata entry exists for a given tag id + * + */ + bool exists(uint32_t tag) const; + + /** * Get metadata entry by tag id */ camera_metadata_entry find(uint32_t tag); |