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

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

Issue 1716503002: Basic media tracks implementation for media stream parsers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CR feedback Created 4 years, 9 months 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_BASE_MEDIA_TRACKS_H_
6 #define MEDIA_BASE_MEDIA_TRACKS_H_
7
8 #include <map>
9 #include <string>
10 #include <vector>
11
12 #include "base/macros.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "media/base/media_export.h"
15 #include "media/base/media_track.h"
16
17 namespace media {
18
19 class AudioDecoderConfig;
20 class VideoDecoderConfig;
21
22 class MEDIA_EXPORT MediaTracks {
23 public:
24 typedef std::vector<scoped_ptr<MediaTrack>> MediaTracksCollection;
25
26 MediaTracks();
27 ~MediaTracks();
28
29 void AddAudioTrack(const AudioDecoderConfig& config,
30 const std::string& id,
31 const std::string& kind,
32 const std::string& label,
33 const std::string& language);
34 void AddVideoTrack(const VideoDecoderConfig& config,
35 const std::string& id,
36 const std::string& kind,
37 const std::string& label,
38 const std::string& language);
39
40 const MediaTracksCollection& tracks() const { return tracks_; }
41
42 const AudioDecoderConfig& getAudioConfig(const std::string& id) const;
43 const VideoDecoderConfig& getVideoConfig(const std::string& id) const;
44
45 // TODO(servolk): These are temporary helpers useful until all code paths are
46 // converted to properly handle multiple media tracks.
47 const AudioDecoderConfig& getFirstAudioConfig() const;
48 const VideoDecoderConfig& getFirstVideoConfig() const;
49
50 private:
51 MediaTracksCollection tracks_;
52 std::map<std::string, AudioDecoderConfig> audio_configs_;
53 std::map<std::string, VideoDecoderConfig> video_configs_;
54
55 DISALLOW_COPY_AND_ASSIGN(MediaTracks);
56 };
57
58 } // namespace media
59
60 #endif // MEDIA_BASE_MEDIA_TRACKS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698