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/strings/string_number_conversions.h"
15 #include "packager/base/sys_byteorder.h"
16 #include "packager/mpd/base/media_info.pb.h"
17 #include "packager/mpd/base/segment_info.h"
22 typedef MediaInfo::AudioInfo AudioInfo;
23 typedef MediaInfo::VideoInfo VideoInfo;
26 const char kEC3Codec[] =
"ec-3";
28 std::string RangeToString(
const Range& range) {
29 return base::Uint64ToString(range.begin()) +
"-" +
30 base::Uint64ToString(range.end());
33 bool PopulateSegmentTimeline(
const std::list<SegmentInfo>& segment_infos,
34 XmlNode* segment_timeline) {
35 for (std::list<SegmentInfo>::const_iterator it = segment_infos.begin();
36 it != segment_infos.end();
38 XmlNode s_element(
"S");
39 s_element.SetIntegerAttribute(
"t", it->start_time);
40 s_element.SetIntegerAttribute(
"d", it->duration);
42 s_element.SetIntegerAttribute(
"r", it->repeat);
44 CHECK(segment_timeline->AddChild(s_element.PassScopedPtr()));
59 XmlNode::~XmlNode() {}
64 if (!xmlAddChild(node_.get(), child.get()))
69 ignore_result(child.release());
74 for (
size_t element_index = 0; element_index < elements.size();
76 const Element& child_element = elements[element_index];
77 XmlNode child_node(child_element.name.c_str());
78 for (std::map<std::string, std::string>::const_iterator attribute_it =
79 child_element.attributes.begin();
80 attribute_it != child_element.attributes.end(); ++attribute_it) {
82 attribute_it->second);
85 if (!child_node.AddElements(child_element.subelements))
88 child_node.SetContent(child_element.content);
90 if (!xmlAddChild(node_.get(), child_node.GetRawPtr())) {
91 LOG(ERROR) <<
"Failed to set child " << child_element.name
92 <<
" to parent element "
93 <<
reinterpret_cast<const char*
>(node_->name);
98 ignore_result(child_node.Release());
104 const std::string& attribute) {
106 DCHECK(attribute_name);
107 xmlSetProp(node_.get(), BAD_CAST attribute_name, BAD_CAST attribute.c_str());
112 DCHECK(attribute_name);
113 xmlSetProp(node_.get(),
114 BAD_CAST attribute_name,
115 BAD_CAST (base::Uint64ToString(number).c_str()));
121 DCHECK(attribute_name);
122 xmlSetProp(node_.get(),
123 BAD_CAST attribute_name,
124 BAD_CAST (base::DoubleToString(number).c_str()));
133 xmlNodeSetContent(node_.get(), BAD_CAST content.c_str());
137 DVLOG(2) <<
"Passing node_.";
139 return std::move(node_);
143 DVLOG(2) <<
"Releasing node_.";
145 return node_.release();
152 RepresentationBaseXmlNode::RepresentationBaseXmlNode(
const char* name)
154 RepresentationBaseXmlNode::~RepresentationBaseXmlNode() {}
156 bool RepresentationBaseXmlNode::AddContentProtectionElements(
157 const std::list<ContentProtectionElement>& content_protection_elements) {
158 std::list<ContentProtectionElement>::const_iterator content_protection_it =
159 content_protection_elements.begin();
160 for (; content_protection_it != content_protection_elements.end();
161 ++content_protection_it) {
162 if (!AddContentProtectionElement(*content_protection_it))
169 bool RepresentationBaseXmlNode::AddContentProtectionElement(
170 const ContentProtectionElement& content_protection_element) {
171 XmlNode content_protection_node(
"ContentProtection");
174 if (!content_protection_element.value.empty()) {
175 content_protection_node.SetStringAttribute(
176 "value", content_protection_element.value);
178 content_protection_node.SetStringAttribute(
179 "schemeIdUri", content_protection_element.scheme_id_uri);
181 typedef std::map<std::string, std::string> AttributesMapType;
182 const AttributesMapType& additional_attributes =
183 content_protection_element.additional_attributes;
185 AttributesMapType::const_iterator attributes_it =
186 additional_attributes.begin();
187 for (; attributes_it != additional_attributes.end(); ++attributes_it) {
188 content_protection_node.SetStringAttribute(attributes_it->first.c_str(),
189 attributes_it->second);
192 if (!content_protection_node.AddElements(
193 content_protection_element.subelements)) {
196 return AddChild(content_protection_node.PassScopedPtr());
199 AdaptationSetXmlNode::AdaptationSetXmlNode()
200 : RepresentationBaseXmlNode(
"AdaptationSet") {}
201 AdaptationSetXmlNode::~AdaptationSetXmlNode() {}
204 const std::string& value) {
211 RepresentationXmlNode::RepresentationXmlNode()
213 RepresentationXmlNode::~RepresentationXmlNode() {}
218 bool set_frame_rate) {
219 if (!video_info.has_width() || !video_info.has_height()) {
220 LOG(ERROR) <<
"Missing width or height for adding a video info.";
224 if (video_info.has_pixel_width() && video_info.has_pixel_height()) {
227 base::IntToString(video_info.pixel_height()));
234 if (set_frame_rate) {
236 base::IntToString(video_info.time_scale()) +
"/" +
237 base::IntToString(video_info.frame_duration()));
243 if (!AddAudioChannelInfo(audio_info))
246 AddAudioSamplingRateInfo(audio_info);
251 if (media_info.has_media_file_name()) {
253 base_url.
SetContent(media_info.media_file_name());
259 const bool need_segment_base = media_info.has_index_range() ||
260 media_info.has_init_range() ||
261 media_info.has_reference_time_scale();
263 if (need_segment_base) {
264 XmlNode segment_base(
"SegmentBase");
265 if (media_info.has_index_range()) {
267 RangeToString(media_info.index_range()));
270 if (media_info.has_reference_time_scale()) {
272 media_info.reference_time_scale());
275 if (media_info.has_init_range()) {
276 XmlNode initialization(
"Initialization");
278 RangeToString(media_info.init_range()));
288 if (media_info.has_media_duration_seconds()) {
298 const MediaInfo& media_info,
299 const std::list<SegmentInfo>& segment_infos,
300 uint32_t start_number) {
301 XmlNode segment_template(
"SegmentTemplate");
302 if (media_info.has_reference_time_scale()) {
304 media_info.reference_time_scale());
307 if (media_info.has_init_segment_name()) {
312 const std::string& init_segment_name = media_info.init_segment_name();
313 if (init_segment_name.find(
"$Number$") != std::string::npos ||
314 init_segment_name.find(
"$Time$") != std::string::npos) {
315 LOG(ERROR) <<
"$Number$ and $Time$ cannot be used for "
316 "SegmentTemplate@initialization";
320 media_info.init_segment_name());
323 if (media_info.has_segment_template()) {
328 if (media_info.segment_template().find(
"$Number") != std::string::npos) {
329 DCHECK_GE(start_number, 1u);
335 XmlNode segment_timeline(
"SegmentTimeline");
337 return PopulateSegmentTimeline(segment_infos, &segment_timeline) &&
342 bool RepresentationXmlNode::AddAudioChannelInfo(
const AudioInfo& audio_info) {
343 std::string audio_channel_config_scheme;
344 std::string audio_channel_config_value;
346 if (audio_info.codec() == kEC3Codec) {
349 const uint16_t ec3_channel_map =
350 base::HostToNet16(audio_info.codec_specific_data().ec3_channel_map());
351 audio_channel_config_value =
352 base::HexEncode(&ec3_channel_map,
sizeof(ec3_channel_map));
353 audio_channel_config_scheme =
354 "tag:dolby.com,2014:dash:audio_channel_configuration:2011";
356 audio_channel_config_value = base::UintToString(audio_info.num_channels());
357 audio_channel_config_scheme =
358 "urn:mpeg:dash:23003:3:audio_channel_configuration:2011";
361 XmlNode audio_channel_config(
"AudioChannelConfiguration");
362 audio_channel_config.SetStringAttribute(
"schemeIdUri",
363 audio_channel_config_scheme);
364 audio_channel_config.SetStringAttribute(
"value", audio_channel_config_value);
366 return AddChild(audio_channel_config.PassScopedPtr());
371 void RepresentationXmlNode::AddAudioSamplingRateInfo(
372 const AudioInfo& audio_info) {
373 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)