summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/include/StagefrightMetadataRetriever.h
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2010-01-08 10:57:34 -0800
committerAndreas Huber <andih@google.com>2010-01-08 11:54:36 -0800
commit67e5a4f6f6879d512a859e5dba92e9beec7a2f91 (patch)
treedb31b16d1b6e0ec2074c76058da7a86c1ea2a9c6 /media/libstagefright/include/StagefrightMetadataRetriever.h
parent23d7a43fb32482e2573b7f203fd9dd5a8349b329 (diff)
downloadframeworks_av-67e5a4f6f6879d512a859e5dba92e9beec7a2f91.zip
frameworks_av-67e5a4f6f6879d512a859e5dba92e9beec7a2f91.tar.gz
frameworks_av-67e5a4f6f6879d512a859e5dba92e9beec7a2f91.tar.bz2
Reorganize some of the stagefright implementation related to metadata.
Diffstat (limited to 'media/libstagefright/include/StagefrightMetadataRetriever.h')
-rw-r--r--media/libstagefright/include/StagefrightMetadataRetriever.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/media/libstagefright/include/StagefrightMetadataRetriever.h b/media/libstagefright/include/StagefrightMetadataRetriever.h
new file mode 100644
index 0000000..16127d7
--- /dev/null
+++ b/media/libstagefright/include/StagefrightMetadataRetriever.h
@@ -0,0 +1,53 @@
+/*
+**
+** Copyright 2009, The Android Open Source Project
+**
+** Licensed under the Apache License, Version 2.0 (the "License");
+** you may not use this file except in compliance with the License.
+** You may obtain a copy of the License at
+**
+** http://www.apache.org/licenses/LICENSE-2.0
+**
+** Unless required by applicable law or agreed to in writing, software
+** distributed under the License is distributed on an "AS IS" BASIS,
+** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+** See the License for the specific language governing permissions and
+** limitations under the License.
+*/
+
+#ifndef STAGEFRIGHT_METADATA_RETRIEVER_H_
+
+#define STAGEFRIGHT_METADATA_RETRIEVER_H_
+
+#include <media/MediaMetadataRetrieverInterface.h>
+
+#include <media/stagefright/OMXClient.h>
+
+namespace android {
+
+class MediaExtractor;
+
+struct StagefrightMetadataRetriever : public MediaMetadataRetrieverInterface {
+ StagefrightMetadataRetriever();
+ virtual ~StagefrightMetadataRetriever();
+
+ virtual status_t setDataSource(const char *url);
+ virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
+
+ virtual VideoFrame *captureFrame();
+ virtual MediaAlbumArt *extractAlbumArt();
+ virtual const char *extractMetadata(int keyCode);
+
+private:
+ OMXClient mClient;
+ sp<MediaExtractor> mExtractor;
+
+ StagefrightMetadataRetriever(const StagefrightMetadataRetriever &);
+
+ StagefrightMetadataRetriever &operator=(
+ const StagefrightMetadataRetriever &);
+};
+
+} // namespace android
+
+#endif // STAGEFRIGHT_METADATA_RETRIEVER_H_