Index: media/base/audio_video_metadata_extractor.h |
diff --git a/media/base/audio_video_metadata_extractor.h b/media/base/audio_video_metadata_extractor.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..affe7945d374be43bd56c91bf2bb5fe1d6f07871 |
--- /dev/null |
+++ b/media/base/audio_video_metadata_extractor.h |
@@ -0,0 +1,78 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_ |
+#define MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_ |
+ |
+#include <string> |
+ |
+#include "base/basictypes.h" |
+#include "media/base/media_export.h" |
+ |
+struct AVDictionary; |
+ |
+namespace media { |
+ |
+class DataSource; |
+ |
+// This class extracts a string dictionary of metadata tags for audio and video |
+// files. It also provides the format name. |
+class MEDIA_EXPORT AudioVideoMetadataExtractor { |
+ public: |
+ AudioVideoMetadataExtractor(); |
+ ~AudioVideoMetadataExtractor(); |
+ |
+ // Returns whether or not the fields were successfully extracted. Should only |
+ // be called once. |
+ bool Extract(DataSource* source); |
+ |
+ // Returns -1 if we cannot extract the duration. In seconds. |
+ double duration() const; |
+ |
+ // Returns -1 for containers without video. |
+ int width() const; |
+ int height() const; |
+ |
+ // Returns -1 or an empty string if the value is undefined. |
+ const std::string& album() const; |
+ const std::string& artist() const; |
+ const std::string& comment() const; |
+ const std::string& copyright() const; |
+ const std::string& date() const; |
+ int disc() const; |
+ const std::string& encoder() const; |
+ const std::string& encoded_by() const; |
+ const std::string& genre() const; |
+ const std::string& language() const; |
+ const std::string& title() const; |
+ int track() const; |
+ |
+ private: |
+ void ExtractDictionary(AVDictionary* metadata); |
+ |
+ bool extracted_; |
+ |
+ int duration_; |
+ int width_; |
+ int height_; |
+ |
+ std::string album_; |
+ std::string artist_; |
+ std::string comment_; |
+ std::string copyright_; |
+ std::string date_; |
+ int disc_; |
+ std::string encoder_; |
+ std::string encoded_by_; |
+ std::string genre_; |
+ std::string language_; |
+ std::string title_; |
+ int track_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(AudioVideoMetadataExtractor); |
+}; |
+ |
+} // namespace media |
+ |
+#endif // MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_ |