7 #ifndef MEDIA_BASE_STREAM_INFO_H_
8 #define MEDIA_BASE_STREAM_INFO_H_
13 #include "packager/media/base/encryption_config.h"
29 kCodecH264 = kCodecVideo,
34 kCodecVideoMaxPlusOne,
37 kCodecAAC = kCodecAudio,
50 kCodecAudioMaxPlusOne,
53 kCodecWebVtt = kCodecText,
61 StreamInfo(StreamType stream_type,
int track_id, uint32_t time_scale,
62 uint64_t duration, Codec codec,
const std::string& codec_string,
63 const uint8_t* codec_config,
size_t codec_config_size,
64 const std::string& language,
bool is_encrypted);
73 virtual std::string
ToString()
const;
75 StreamType stream_type()
const {
return stream_type_; }
76 uint32_t track_id()
const {
return track_id_; }
77 uint32_t time_scale()
const {
return time_scale_; }
78 uint64_t duration()
const {
return duration_; }
79 Codec codec()
const {
return codec_; }
80 const std::string& codec_string()
const {
return codec_string_; }
81 const std::vector<uint8_t>& codec_config()
const {
return codec_config_; }
82 const std::string& language()
const {
return language_; }
83 bool is_encrypted()
const {
return is_encrypted_; }
85 return encryption_config_;
88 void set_duration(uint64_t duration) { duration_ = duration; }
89 void set_codec(Codec codec) { codec_ = codec; }
90 void set_codec_config(
const std::vector<uint8_t>& data) { codec_config_ = data; }
91 void set_codec_string(
const std::string& codec_string) {
92 codec_string_ = codec_string;
94 void set_language(
const std::string& language) { language_ = language; }
95 void set_is_encrypted(
bool is_encrypted) { is_encrypted_ = is_encrypted; }
97 encryption_config_ = encryption_config;
102 StreamType stream_type_;
105 uint32_t time_scale_;
109 std::string codec_string_;
110 std::string language_;
118 std::vector<uint8_t> codec_config_;
128 #endif // MEDIA_BASE_STREAM_INFO_H_