summaryrefslogtreecommitdiffstats
path: root/include/media/MediaMetadataRetrieverInterface.h
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-01-06 12:20:35 -0800
committerJames Dong <jdong@google.com>2011-01-12 14:14:11 -0800
commit7f7d52ac18dfc3c6d8f6267dad29306613e9bd0e (patch)
tree5e17f415d44cdba3c8b37a42c487e28e26593a64 /include/media/MediaMetadataRetrieverInterface.h
parent67988a9ba5a081d14dbd8a663516e1d484d829df (diff)
downloadframeworks_av-7f7d52ac18dfc3c6d8f6267dad29306613e9bd0e.zip
frameworks_av-7f7d52ac18dfc3c6d8f6267dad29306613e9bd0e.tar.gz
frameworks_av-7f7d52ac18dfc3c6d8f6267dad29306613e9bd0e.tar.bz2
Publish MediaMetadataRetriever.java as public API
o Removed setMode() methods and related mode constants o Removed some of the unused the metadata keys o Updated the javadoc o part of a multi-project change. bug - 2433195 Change-Id: I5ed167f1fd6a53cb143b7dc385b149431d434438
Diffstat (limited to 'include/media/MediaMetadataRetrieverInterface.h')
-rw-r--r--include/media/MediaMetadataRetrieverInterface.h26
1 files changed, 1 insertions, 25 deletions
diff --git a/include/media/MediaMetadataRetrieverInterface.h b/include/media/MediaMetadataRetrieverInterface.h
index 717849d..0449122 100644
--- a/include/media/MediaMetadataRetrieverInterface.h
+++ b/include/media/MediaMetadataRetrieverInterface.h
@@ -32,7 +32,6 @@ public:
virtual ~MediaMetadataRetrieverBase() {}
virtual status_t setDataSource(const char *url) = 0;
virtual status_t setDataSource(int fd, int64_t offset, int64_t length) = 0;
- virtual status_t setMode(int mode) = 0;
virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0;
virtual MediaAlbumArt* extractAlbumArt() = 0;
virtual const char* extractMetadata(int keyCode) = 0;
@@ -42,35 +41,12 @@ public:
class MediaMetadataRetrieverInterface : public MediaMetadataRetrieverBase
{
public:
- MediaMetadataRetrieverInterface()
- : mMode(0) {
- }
+ MediaMetadataRetrieverInterface() {}
virtual ~MediaMetadataRetrieverInterface() {}
-
- // @param mode The intended mode of operations:
- // can be any of the following:
- // METADATA_MODE_NOOP: Experimental - just add and remove data source.
- // METADATA_MODE_FRAME_CAPTURE_ONLY: For capture frame/thumbnail only.
- // METADATA_MODE_METADATA_RETRIEVAL_ONLY: For meta data retrieval only.
- // METADATA_MODE_FRAME_CAPTURE_AND_METADATA_RETRIEVAL: For both frame
- // capture and meta data retrieval.
- virtual status_t setMode(int mode) {
- if (mode < METADATA_MODE_NOOP ||
- mode > METADATA_MODE_FRAME_CAPTURE_AND_METADATA_RETRIEVAL) {
- return BAD_VALUE;
- }
-
- mMode = mode;
- return NO_ERROR;
- }
-
- virtual status_t getMode(int* mode) const { *mode = mMode; return NO_ERROR; }
virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) { return NULL; }
virtual MediaAlbumArt* extractAlbumArt() { return NULL; }
virtual const char* extractMetadata(int keyCode) { return NULL; }
-
- uint32_t mMode;
};
}; // namespace android