Shaka Packager SDK
stream_info.h
1 // Copyright 2014 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #ifndef PACKAGER_MEDIA_BASE_STREAM_INFO_H_
8 #define PACKAGER_MEDIA_BASE_STREAM_INFO_H_
9 
10 #include <memory>
11 #include <string>
12 #include <vector>
13 
14 #include "packager/media/base/encryption_config.h"
15 
16 namespace shaka {
17 namespace media {
18 
19 enum StreamType {
20  kStreamUnknown = 0,
21  kStreamAudio,
22  kStreamVideo,
23  kStreamText,
24 };
25 
26 enum Codec {
27  kUnknownCodec = 0,
28 
29  kCodecVideo = 100,
30  kCodecH264 = kCodecVideo,
31  kCodecH265,
32  kCodecVP8,
33  kCodecVP9,
34  kCodecVP10,
35  kCodecVideoMaxPlusOne,
36 
37  kCodecAudio = 200,
38  kCodecAAC = kCodecAudio,
39  kCodecAC3,
40  // TODO(kqyang): Use kCodecDTS and a kDtsStreamFormat for the various DTS
41  // streams.
42  kCodecDTSC,
43  kCodecDTSE,
44  kCodecDTSH,
45  kCodecDTSL,
46  kCodecDTSM,
47  kCodecDTSP,
48  kCodecEAC3,
49  kCodecOpus,
50  kCodecVorbis,
51  kCodecAudioMaxPlusOne,
52 
53  kCodecText = 300,
54  kCodecWebVtt = kCodecText,
55 };
56 
58 class StreamInfo {
59  public:
60  StreamInfo() = default;
61 
62  StreamInfo(StreamType stream_type, int track_id, uint32_t time_scale,
63  uint64_t duration, Codec codec, const std::string& codec_string,
64  const uint8_t* codec_config, size_t codec_config_size,
65  const std::string& language, bool is_encrypted);
66 
67  virtual ~StreamInfo();
68 
71  virtual bool IsValidConfig() const = 0;
72 
74  virtual std::string ToString() const;
75 
79  virtual std::unique_ptr<StreamInfo> Clone() const = 0;
80 
81  StreamType stream_type() const { return stream_type_; }
82  uint32_t track_id() const { return track_id_; }
83  uint32_t time_scale() const { return time_scale_; }
84  uint64_t duration() const { return duration_; }
85  Codec codec() const { return codec_; }
86  const std::string& codec_string() const { return codec_string_; }
87  const std::vector<uint8_t>& codec_config() const { return codec_config_; }
88  const std::string& language() const { return language_; }
89  bool is_encrypted() const { return is_encrypted_; }
90  bool has_clear_lead() const { return has_clear_lead_; }
91  const EncryptionConfig& encryption_config() const {
92  return encryption_config_;
93  }
94 
95  void set_duration(uint64_t duration) { duration_ = duration; }
96  void set_codec(Codec codec) { codec_ = codec; }
97  void set_codec_config(const std::vector<uint8_t>& data) { codec_config_ = data; }
98  void set_codec_string(const std::string& codec_string) {
99  codec_string_ = codec_string;
100  }
101  void set_language(const std::string& language) { language_ = language; }
102  void set_is_encrypted(bool is_encrypted) { is_encrypted_ = is_encrypted; }
103  void set_has_clear_lead(bool has_clear_lead) {
104  has_clear_lead_ = has_clear_lead;
105  }
106  void set_encryption_config(const EncryptionConfig& encryption_config) {
107  encryption_config_ = encryption_config;
108  }
109 
110  private:
111  // Whether the stream is Audio or Video.
112  StreamType stream_type_;
113  uint32_t track_id_;
114  // The actual time is calculated as time / time_scale_ in seconds.
115  uint32_t time_scale_;
116  // Duration base on time_scale.
117  uint64_t duration_;
118  Codec codec_;
119  std::string codec_string_;
120  std::string language_;
121  // Whether the stream is potentially encrypted.
122  // Note that in a potentially encrypted stream, individual buffers
123  // can be encrypted or not encrypted.
124  bool is_encrypted_;
125  // Whether the stream has clear lead.
126  bool has_clear_lead_ = false;
127  EncryptionConfig encryption_config_;
128  // Optional byte data required for some audio/video decoders such as Vorbis
129  // codebooks.
130  std::vector<uint8_t> codec_config_;
131 
132  // Not using DISALLOW_COPY_AND_ASSIGN here intentionally to allow the compiler
133  // generated copy constructor and assignment operator. Since the extra data is
134  // typically small, the performance impact is minimal.
135 };
136 
137 } // namespace media
138 } // namespace shaka
139 
140 #endif // PACKAGER_MEDIA_BASE_STREAM_INFO_H_
Abstract class holds stream information.
Definition: stream_info.h:58
virtual std::unique_ptr< StreamInfo > Clone() const =0
virtual bool IsValidConfig() const =0
virtual std::string ToString() const
Definition: stream_info.cc:37
All the methods that are virtual are virtual for mocking.