7 #include "packager/mpd/base/xml/xml_node.h"
12 #include "packager/base/logging.h"
13 #include "packager/base/macros.h"
14 #include "packager/base/stl_util.h"
15 #include "packager/base/strings/string_number_conversions.h"
16 #include "packager/base/sys_byteorder.h"
17 #include "packager/mpd/base/media_info.pb.h"
18 #include "packager/mpd/base/segment_info.h"
23 typedef MediaInfo::AudioInfo AudioInfo;
24 typedef MediaInfo::VideoInfo VideoInfo;
27 const char kEC3Codec[] =
"ec-3";
29 std::string RangeToString(
const Range& range) {
30 return base::Uint64ToString(range.begin()) +
"-" +
31 base::Uint64ToString(range.end());
34 bool PopulateSegmentTimeline(
const std::list<SegmentInfo>& segment_infos,
35 XmlNode* segment_timeline) {
36 for (std::list<SegmentInfo>::const_iterator it = segment_infos.begin();
37 it != segment_infos.end();
39 XmlNode s_element(
"S");
40 s_element.SetIntegerAttribute(
"t", it->start_time);
41 s_element.SetIntegerAttribute(
"d", it->duration);
43 s_element.SetIntegerAttribute(
"r", it->repeat);
45 CHECK(segment_timeline->AddChild(s_element.PassScopedPtr()));
60 XmlNode::~XmlNode() {}
65 if (!xmlAddChild(node_.get(), child.get()))
70 ignore_result(child.release());
75 for (
size_t element_index = 0; element_index < elements.size();
77 const Element& child_element = elements[element_index];
78 XmlNode child_node(child_element.name.c_str());
79 for (std::map<std::string, std::string>::const_iterator attribute_it =
80 child_element.attributes.begin();
81 attribute_it != child_element.attributes.end(); ++attribute_it) {
83 attribute_it->second);
86 if (!child_node.AddElements(child_element.subelements))
89 child_node.SetContent(child_element.content);
91 if (!xmlAddChild(node_.get(), child_node.GetRawPtr())) {
92 LOG(ERROR) <<
"Failed to set child " << child_element.name
93 <<
" to parent element "
94 <<
reinterpret_cast<const char*
>(node_->name);
99 ignore_result(child_node.Release());
105 const std::string& attribute) {
107 DCHECK(attribute_name);
108 xmlSetProp(node_.get(), BAD_CAST attribute_name, BAD_CAST attribute.c_str());
113 DCHECK(attribute_name);
114 xmlSetProp(node_.get(),
115 BAD_CAST attribute_name,
116 BAD_CAST (base::Uint64ToString(number).c_str()));
122 DCHECK(attribute_name);
123 xmlSetProp(node_.get(),
124 BAD_CAST attribute_name,
125 BAD_CAST (base::DoubleToString(number).c_str()));
134 xmlNodeSetContent(node_.get(), BAD_CAST content.c_str());
138 DVLOG(2) <<
"Passing node_.";
140 return std::move(node_);
144 DVLOG(2) <<
"Releasing node_.";
146 return node_.release();
153 RepresentationBaseXmlNode::RepresentationBaseXmlNode(
const char* name)
155 RepresentationBaseXmlNode::~RepresentationBaseXmlNode() {}
157 bool RepresentationBaseXmlNode::AddContentProtectionElements(
158 const std::list<ContentProtectionElement>& content_protection_elements) {
159 std::list<ContentProtectionElement>::const_iterator content_protection_it =
160 content_protection_elements.begin();
161 for (; content_protection_it != content_protection_elements.end();
162 ++content_protection_it) {
163 if (!AddContentProtectionElement(*content_protection_it))
170 bool RepresentationBaseXmlNode::AddContentProtectionElement(
171 const ContentProtectionElement& content_protection_element) {
172 XmlNode content_protection_node(
"ContentProtection");
175 if (!content_protection_element.value.empty()) {
176 content_protection_node.SetStringAttribute(
177 "value", content_protection_element.value);
179 content_protection_node.SetStringAttribute(
180 "schemeIdUri", content_protection_element.scheme_id_uri);
182 typedef std::map<std::string, std::string> AttributesMapType;
183 const AttributesMapType& additional_attributes =
184 content_protection_element.additional_attributes;
186 AttributesMapType::const_iterator attributes_it =
187 additional_attributes.begin();
188 for (; attributes_it != additional_attributes.end(); ++attributes_it) {
189 content_protection_node.SetStringAttribute(attributes_it->first.c_str(),
190 attributes_it->second);
193 if (!content_protection_node.AddElements(
194 content_protection_element.subelements)) {
197 return AddChild(content_protection_node.PassScopedPtr());
200 AdaptationSetXmlNode::AdaptationSetXmlNode()
201 : RepresentationBaseXmlNode(
"AdaptationSet") {}
202 AdaptationSetXmlNode::~AdaptationSetXmlNode() {}
205 const std::string& value) {
212 RepresentationXmlNode::RepresentationXmlNode()
214 RepresentationXmlNode::~RepresentationXmlNode() {}
219 bool set_frame_rate) {
220 if (!video_info.has_width() || !video_info.has_height()) {
221 LOG(ERROR) <<
"Missing width or height for adding a video info.";
225 if (video_info.has_pixel_width() && video_info.has_pixel_height()) {
228 base::IntToString(video_info.pixel_height()));
235 if (set_frame_rate) {
237 base::IntToString(video_info.time_scale()) +
"/" +
238 base::IntToString(video_info.frame_duration()));
244 if (!AddAudioChannelInfo(audio_info))
247 AddAudioSamplingRateInfo(audio_info);
252 if (media_info.has_media_file_name()) {
254 base_url.
SetContent(media_info.media_file_name());
260 const bool need_segment_base = media_info.has_index_range() ||
261 media_info.has_init_range() ||
262 media_info.has_reference_time_scale();
264 if (need_segment_base) {
265 XmlNode segment_base(
"SegmentBase");
266 if (media_info.has_index_range()) {
268 RangeToString(media_info.index_range()));
271 if (media_info.has_reference_time_scale()) {
273 media_info.reference_time_scale());
276 if (media_info.has_init_range()) {
277 XmlNode initialization(
"Initialization");
279 RangeToString(media_info.init_range()));
289 if (media_info.has_media_duration_seconds()) {
299 const MediaInfo& media_info,
300 const std::list<SegmentInfo>& segment_infos,
301 uint32_t start_number) {
302 XmlNode segment_template(
"SegmentTemplate");
303 if (media_info.has_reference_time_scale()) {
305 media_info.reference_time_scale());
308 if (media_info.has_init_segment_name()) {
313 const std::string& init_segment_name = media_info.init_segment_name();
314 if (init_segment_name.find(
"$Number$") != std::string::npos ||
315 init_segment_name.find(
"$Time$") != std::string::npos) {
316 LOG(ERROR) <<
"$Number$ and $Time$ cannot be used for "
317 "SegmentTemplate@initialization";
321 media_info.init_segment_name());
324 if (media_info.has_segment_template()) {
329 if (media_info.segment_template().find(
"$Number") != std::string::npos) {
330 DCHECK_GE(start_number, 1u);
336 XmlNode segment_timeline(
"SegmentTimeline");
338 return PopulateSegmentTimeline(segment_infos, &segment_timeline) &&
343 bool RepresentationXmlNode::AddAudioChannelInfo(
const AudioInfo& audio_info) {
344 std::string audio_channel_config_scheme;
345 std::string audio_channel_config_value;
347 if (audio_info.codec() == kEC3Codec) {
350 const uint16_t ec3_channel_map =
351 base::HostToNet16(audio_info.codec_specific_data().ec3_channel_map());
352 audio_channel_config_value =
353 base::HexEncode(&ec3_channel_map,
sizeof(ec3_channel_map));
354 audio_channel_config_scheme =
355 "tag:dolby.com,2014:dash:audio_channel_configuration:2011";
357 audio_channel_config_value = base::UintToString(audio_info.num_channels());
358 audio_channel_config_scheme =
359 "urn:mpeg:dash:23003:3:audio_channel_configuration:2011";
362 XmlNode audio_channel_config(
"AudioChannelConfiguration");
363 audio_channel_config.SetStringAttribute(
"schemeIdUri",
364 audio_channel_config_scheme);
365 audio_channel_config.SetStringAttribute(
"value", audio_channel_config_value);
367 return AddChild(audio_channel_config.PassScopedPtr());
372 void RepresentationXmlNode::AddAudioSamplingRateInfo(
373 const AudioInfo& audio_info) {
374 if (audio_info.has_sampling_frequency())
bool AddVideoInfo(const MediaInfo::VideoInfo &video_info, bool set_width, bool set_height, bool set_frame_rate)
void SetFloatingPointAttribute(const char *attribute_name, double number)
scoped_xml_ptr< xmlNode > PassScopedPtr()
XmlNode(const char *name)
bool AddVODOnlyInfo(const MediaInfo &media_info)
void SetStringAttribute(const char *attribute_name, const std::string &attribute)
bool AddChild(scoped_xml_ptr< xmlNode > child)
bool AddLiveOnlyInfo(const MediaInfo &media_info, const std::list< SegmentInfo > &segment_infos, uint32_t start_number)
bool AddElements(const std::vector< Element > &elements)
Adds Elements to this node using the Element struct.
void SetIntegerAttribute(const char *attribute_name, uint64_t number)
void AddRoleElement(const std::string &scheme_id_uri, const std::string &value)
void SetContent(const std::string &content)
bool AddAudioInfo(const MediaInfo::AudioInfo &audio_info)