7 #include "packager/mpd/base/mpd_utils.h"
9 #include <libxml/tree.h>
11 #include "packager/base/logging.h"
12 #include "packager/base/strings/string_number_conversions.h"
13 #include "packager/mpd/base/xml/scoped_xml_ptr.h"
18 std::string TextCodecString(
const MediaInfo& media_info) {
19 CHECK(media_info.has_text_info());
20 const std::string& format = media_info.text_info().format();
22 if (format ==
"ttml" &&
23 (media_info.container_type() == MediaInfo::CONTAINER_MP4)) {
26 if (format ==
"vtt" &&
27 (media_info.container_type() == MediaInfo::CONTAINER_MP4)) {
38 bool HasVODOnlyFields(
const MediaInfo& media_info) {
39 return media_info.has_init_range() || media_info.has_index_range() ||
40 media_info.has_media_file_name();
43 bool HasLiveOnlyFields(
const MediaInfo& media_info) {
44 return media_info.has_init_segment_name() ||
45 media_info.has_segment_template() ||
46 media_info.has_segment_duration_seconds();
49 void RemoveDuplicateAttributes(
50 ContentProtectionElement* content_protection_element) {
51 DCHECK(content_protection_element);
52 typedef std::map<std::string, std::string> AttributesMap;
54 AttributesMap& attributes = content_protection_element->additional_attributes;
55 if (!content_protection_element->value.empty())
56 attributes.erase(
"value");
58 if (!content_protection_element->scheme_id_uri.empty())
59 attributes.erase(
"schemeIdUri");
62 std::string GetLanguage(
const MediaInfo& media_info) {
64 if (media_info.has_audio_info()) {
65 lang = media_info.audio_info().language();
66 }
else if (media_info.has_text_info()) {
67 lang = media_info.text_info().language();
72 std::string GetCodecs(
const MediaInfo& media_info) {
73 CHECK(OnlyOneTrue(media_info.has_video_info(), media_info.has_audio_info(),
74 media_info.has_text_info()));
76 if (media_info.has_video_info()) {
77 if (media_info.container_type() == MediaInfo::CONTAINER_WEBM) {
78 std::string codec = media_info.video_info().codec().substr(0, 4);
88 return media_info.video_info().codec();
91 if (media_info.has_audio_info())
92 return media_info.audio_info().codec();
94 if (media_info.has_text_info())
95 return TextCodecString(media_info);
101 std::string GetBaseCodec(
const MediaInfo& media_info) {
103 if (media_info.has_video_info()) {
104 codec = media_info.video_info().codec();
105 }
else if (media_info.has_audio_info()) {
106 codec = media_info.audio_info().codec();
107 }
else if (media_info.has_text_info()) {
108 codec = media_info.text_info().format();
112 size_t dot = codec.find(
'.');
113 if (dot != std::string::npos) {
119 std::string GetAdaptationSetKey(
const MediaInfo& media_info) {
122 if (media_info.has_video_info()) {
123 key.append(
"video:");
124 }
else if (media_info.has_audio_info()) {
125 key.append(
"audio:");
126 }
else if (media_info.has_text_info()) {
127 key.append(MediaInfo_TextInfo_TextType_Name(media_info.text_info().type()));
130 key.append(
"unknown:");
133 key.append(MediaInfo_ContainerType_Name(media_info.container_type()));
135 key.append(GetBaseCodec(media_info));
137 key.append(GetLanguage(media_info));
141 if (media_info.has_video_info() &&
142 media_info.video_info().trick_play_rate() > 0) {
143 key.append(
":trick_play");
149 std::string SecondsToXmlDuration(
double seconds) {
153 bool GetDurationAttribute(xmlNodePtr node,
float* duration) {
156 static const char kDuration[] =
"duration";
157 xml::scoped_xml_ptr<xmlChar> duration_value(
158 xmlGetProp(node, BAD_CAST kDuration));
163 double duration_double_precision = 0.0;
164 if (!base::StringToDouble(reinterpret_cast<const char*>(duration_value.get()),
165 &duration_double_precision)) {
169 *duration =
static_cast<float>(duration_double_precision);
173 bool MoreThanOneTrue(
bool b1,
bool b2,
bool b3) {
174 return (b1 && b2) || (b2 && b3) || (b3 && b1);
177 bool AtLeastOneTrue(
bool b1,
bool b2,
bool b3) {
return b1 || b2 || b3; }
179 bool OnlyOneTrue(
bool b1,
bool b2,
bool b3) {
180 return !MoreThanOneTrue(b1, b2, b3) && AtLeastOneTrue(b1, b2, b3);
186 std::ostringstream stringstream;
187 stringstream << value;
188 return stringstream.str();
192 bool HexToUUID(
const std::string& data, std::string* uuid_format) {
194 const size_t kExpectedUUIDSize = 16;
195 if (data.size() != kExpectedUUIDSize) {
196 LOG(ERROR) <<
"UUID size is expected to be " << kExpectedUUIDSize
197 <<
" but is " << data.size() <<
" and the data in hex is "
198 << base::HexEncode(data.data(), data.size());
202 const std::string hex_encoded =
203 base::ToLowerASCII(base::HexEncode(data.data(), data.size()));
204 DCHECK_EQ(hex_encoded.size(), kExpectedUUIDSize * 2);
205 base::StringPiece all(hex_encoded);
209 base::StringPiece first = all.substr(0, 8);
210 base::StringPiece second = all.substr(8, 4);
211 base::StringPiece third = all.substr(12, 4);
212 base::StringPiece fourth = all.substr(16, 4);
213 base::StringPiece fifth = all.substr(20, 12);
216 const size_t kHumanReadableUUIDSize = 36;
217 uuid_format->reserve(kHumanReadableUUIDSize);
218 first.CopyToString(uuid_format);
219 uuid_format->append(
"-");
220 second.AppendToString(uuid_format);
221 uuid_format->append(
"-");
222 third.AppendToString(uuid_format);
223 uuid_format->append(
"-");
224 fourth.AppendToString(uuid_format);
225 uuid_format->append(
"-");
226 fifth.AppendToString(uuid_format);
230 void UpdateContentProtectionPsshHelper(
231 const std::string& drm_uuid,
232 const std::string& pssh,
233 std::list<ContentProtectionElement>* content_protection_elements) {
234 const std::string drm_uuid_schemd_id_uri_form =
"urn:uuid:" + drm_uuid;
235 for (std::list<ContentProtectionElement>::iterator protection =
236 content_protection_elements->begin();
237 protection != content_protection_elements->end(); ++protection) {
238 if (protection->scheme_id_uri != drm_uuid_schemd_id_uri_form) {
242 for (std::vector<Element>::iterator subelement =
243 protection->subelements.begin();
244 subelement != protection->subelements.end(); ++subelement) {
245 if (subelement->name == kPsshElementName) {
248 protection->subelements.erase(subelement);
269 ContentProtectionElement content_protection;
270 content_protection.scheme_id_uri = drm_uuid_schemd_id_uri_form;
276 content_protection_elements->push_back(content_protection);
283 template <
typename ContentProtectionParent>
284 void AddContentProtectionElementsHelperTemplated(
285 const MediaInfo& media_info,
286 ContentProtectionParent* parent) {
288 if (!media_info.has_protected_content())
291 const MediaInfo::ProtectedContent& protected_content =
292 media_info.protected_content();
296 const bool is_mp4_container =
297 media_info.container_type() == MediaInfo::CONTAINER_MP4;
298 std::string key_id_uuid_format;
299 if (protected_content.has_default_key_id()) {
300 if (!
HexToUUID(protected_content.default_key_id(), &key_id_uuid_format)) {
301 LOG(ERROR) <<
"Failed to convert default key ID into UUID format.";
305 if (is_mp4_container) {
306 ContentProtectionElement mp4_content_protection;
307 mp4_content_protection.scheme_id_uri = kEncryptedMp4Scheme;
308 mp4_content_protection.value = protected_content.protection_scheme();
309 if (!key_id_uuid_format.empty()) {
310 mp4_content_protection.additional_attributes[
"cenc:default_KID"] =
314 parent->AddContentProtectionElement(mp4_content_protection);
317 for (
int i = 0; i < protected_content.content_protection_entry().size();
319 const MediaInfo::ProtectedContent::ContentProtectionEntry& entry =
320 protected_content.content_protection_entry(i);
321 if (!entry.has_uuid()) {
323 <<
"ContentProtectionEntry was specified but no UUID is set for "
324 << entry.name_version() <<
", skipping.";
328 ContentProtectionElement drm_content_protection;
329 drm_content_protection.scheme_id_uri =
"urn:uuid:" + entry.uuid();
330 if (entry.has_name_version())
331 drm_content_protection.value = entry.name_version();
333 if (entry.has_pssh()) {
334 std::string base64_encoded_pssh;
336 base::StringPiece(entry.pssh().data(), entry.pssh().size()),
337 &base64_encoded_pssh);
339 cenc_pssh.name = kPsshElementName;
340 cenc_pssh.content = base64_encoded_pssh;
341 drm_content_protection.subelements.push_back(cenc_pssh);
344 if (!key_id_uuid_format.empty() && !is_mp4_container) {
345 drm_content_protection.additional_attributes[
"cenc:default_KID"] =
349 parent->AddContentProtectionElement(drm_content_protection);
352 LOG_IF(WARNING, protected_content.content_protection_entry().size() == 0)
353 <<
"The media is encrypted but no content protection specified.";
359 AddContentProtectionElementsHelperTemplated(media_info, parent);
364 AddContentProtectionElementsHelperTemplated(media_info, parent);
void AddContentProtectionElements(const MediaInfo &media_info, Representation *parent)
bool HexToUUID(const std::string &data, std::string *uuid_format)
std::string DoubleToString(double value)