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..a5a6e969e36485ef10d8c1211cec343d544afc2c |
--- /dev/null |
+++ b/media/base/audio_video_metadata_extractor.h |
@@ -0,0 +1,79 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
acolwell GONE FROM CHROMIUM
2014/01/07 00:27:24
nit: Should be 2014 now.
tommycli
2014/01/07 00:55:28
Done.
|
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef MEDIA_BASE_MEDIA_FFMPEG_METADATA_EXTRACTOR_H_ |
acolwell GONE FROM CHROMIUM
2014/01/07 00:27:24
nit: Change guard to MEDIA_BASE_AUDIO_VIDEO_METADA
tommycli
2014/01/07 00:55:28
Done.
|
+#define MEDIA_BASE_MEDIA_FFMPEG_METADATA_EXTRACTOR_H_ |
+ |
+#include <map> |
+#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(media::DataSource* source); |
+ |
+ 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_; |
+ std::map<std::string, std::string> tags_; |
acolwell GONE FROM CHROMIUM
2014/01/07 00:27:24
nit: remove since it isn't used anymore.
tommycli
2014/01/07 00:55:28
Done.
|
+ |
+ 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_MEDIA_FFMPEG_METADATA_EXTRACTOR_H_ |