Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(387)

Side by Side Diff: media/base/audio_video_metadata_extractor.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_ 5 #ifndef MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_
6 #define MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_ 6 #define MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/macros.h"
13 #include "media/base/media_export.h" 13 #include "media/base/media_export.h"
14 14
15 struct AVDictionary; 15 struct AVDictionary;
16 16
17 namespace media { 17 namespace media {
18 18
19 class DataSource; 19 class DataSource;
20 20
21 // This class extracts a string dictionary of metadata tags for audio and video 21 // This class extracts a string dictionary of metadata tags for audio and video
22 // files. It also provides the format name. 22 // files. It also provides the format name.
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 StreamInfoVector stream_infos_; 97 StreamInfoVector stream_infos_;
98 98
99 std::vector<std::string> attached_images_bytes_; 99 std::vector<std::string> attached_images_bytes_;
100 100
101 DISALLOW_COPY_AND_ASSIGN(AudioVideoMetadataExtractor); 101 DISALLOW_COPY_AND_ASSIGN(AudioVideoMetadataExtractor);
102 }; 102 };
103 103
104 } // namespace media 104 } // namespace media
105 105
106 #endif // MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_ 106 #endif // MEDIA_BASE_AUDIO_VIDEO_METADATA_EXTRACTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698