summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2014-05-03 00:28:33 +0000
committerRuben Brunk <rubenbrunk@google.com>2014-05-03 00:28:33 +0000
commit6770260f83f5576b041b7b3a2536d082a631f9b0 (patch)
treeafcf4bf640ea8ad973e2e613d4d5fee2e21377d3 /include
parent4764324d2704f1b08bb7407014bf203924ff2363 (diff)
downloadframeworks_av-6770260f83f5576b041b7b3a2536d082a631f9b0.zip
frameworks_av-6770260f83f5576b041b7b3a2536d082a631f9b0.tar.gz
frameworks_av-6770260f83f5576b041b7b3a2536d082a631f9b0.tar.bz2
Revert "camera3: Update CameraMetadata vendor tag handling."
This reverts commit 4764324d2704f1b08bb7407014bf203924ff2363. Change-Id: I86d7fcc11423502b73fab2a82af6aa89804f0b76
Diffstat (limited to 'include')
-rw-r--r--include/camera/VendorTagDescriptor.h23
1 files changed, 1 insertions, 22 deletions
diff --git a/include/camera/VendorTagDescriptor.h b/include/camera/VendorTagDescriptor.h
index 1758acf..ea21d31 100644
--- a/include/camera/VendorTagDescriptor.h
+++ b/include/camera/VendorTagDescriptor.h
@@ -16,7 +16,6 @@
#ifndef VENDOR_TAG_DESCRIPTOR_H
-#include <utils/Vector.h>
#include <utils/KeyedVector.h>
#include <utils/String8.h>
#include <utils/RefBase.h>
@@ -68,24 +67,6 @@ class VendorTagDescriptor
/*out*/
Parcel* parcel) const;
- /**
- * Convenience method to get a vector containing all vendor tag
- * sections, or an empty vector if none are defined.
- */
- SortedVector<String8> getAllSectionNames() const;
-
- /**
- * Lookup the tag id for a given tag name and section.
- *
- * Returns OK on success, or a negative error code.
- */
- status_t lookupTag(String8 name, String8 section, /*out*/uint32_t* tag) const;
-
- /**
- * Dump the currently configured vendor tags to a file descriptor.
- */
- void dump(int fd, int verbosity, int indentation) const;
-
// Static methods:
/**
@@ -128,11 +109,9 @@ class VendorTagDescriptor
static sp<VendorTagDescriptor> getGlobalVendorTagDescriptor();
protected:
VendorTagDescriptor();
- KeyedVector<String8, KeyedVector<String8, uint32_t>*> mReverseMapping;
KeyedVector<uint32_t, String8> mTagToNameMap;
- KeyedVector<uint32_t, uint32_t> mTagToSectionMap; // Value is offset in mSections
+ KeyedVector<uint32_t, String8> mTagToSectionMap;
KeyedVector<uint32_t, int32_t> mTagToTypeMap;
- SortedVector<String8> mSections;
// must be int32_t to be compatible with Parcel::writeInt32
int32_t mTagCount;
private: