blob: a5cb6d3d81817b1d77f57f221a4cb7a05c8739ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Copyright 2016 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_MEDIA_TRACK_H_
#define MEDIA_BASE_MEDIA_TRACK_H_
#include <string>
#include "media/base/media_export.h"
namespace media {
class MEDIA_EXPORT MediaTrack {
public:
enum Type { Text, Audio, Video };
MediaTrack(Type type,
const std::string& id,
const std::string& kind,
const std::string& label,
const std::string& lang);
~MediaTrack();
Type type() const { return type_; }
const std::string& id() const { return id_; }
const std::string& kind() const { return kind_; }
const std::string& label() const { return label_; }
const std::string& language() const { return language_; }
private:
Type type_;
std::string id_;
std::string kind_;
std::string label_;
std::string language_;
};
} // namespace media
#endif // MEDIA_BASE_MEDIA_TRACK_H_
|