7 #ifndef MEDIA_BASE_STREAM_INFO_H_
8 #define MEDIA_BASE_STREAM_INFO_H_
14 #include "packager/media/base/encryption_config.h"
30 kCodecH264 = kCodecVideo,
35 kCodecVideoMaxPlusOne,
38 kCodecAAC = kCodecAudio,
51 kCodecAudioMaxPlusOne,
54 kCodecWebVtt = kCodecText,
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);
74 virtual std::string
ToString()
const;
79 virtual std::unique_ptr<StreamInfo>
Clone()
const = 0;
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_; }
92 return encryption_config_;
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;
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;
107 encryption_config_ = encryption_config;
112 StreamType stream_type_;
115 uint32_t time_scale_;
119 std::string codec_string_;
120 std::string language_;
126 bool has_clear_lead_ =
false;
130 std::vector<uint8_t> codec_config_;
140 #endif // MEDIA_BASE_STREAM_INFO_H_