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));
142 std::string SecondsToXmlDuration(
double seconds) {
146 bool GetDurationAttribute(xmlNodePtr node,
float* duration) {
149 static const char kDuration[] =
"duration";
150 xml::scoped_xml_ptr<xmlChar> duration_value(
151 xmlGetProp(node, BAD_CAST kDuration));
156 double duration_double_precision = 0.0;
157 if (!base::StringToDouble(reinterpret_cast<const char*>(duration_value.get()),
158 &duration_double_precision)) {
162 *duration =
static_cast<float>(duration_double_precision);
166 bool MoreThanOneTrue(
bool b1,
bool b2,
bool b3) {
167 return (b1 && b2) || (b2 && b3) || (b3 && b1);
170 bool AtLeastOneTrue(
bool b1,
bool b2,
bool b3) {
return b1 || b2 || b3; }
172 bool OnlyOneTrue(
bool b1,
bool b2,
bool b3) {
173 return !MoreThanOneTrue(b1, b2, b3) && AtLeastOneTrue(b1, b2, b3);
179 std::ostringstream stringstream;
180 stringstream << value;
181 return stringstream.str();
185 bool HexToUUID(
const std::string& data, std::string* uuid_format) {
187 const size_t kExpectedUUIDSize = 16;
188 if (data.size() != kExpectedUUIDSize) {
189 LOG(ERROR) <<
"UUID size is expected to be " << kExpectedUUIDSize
190 <<
" but is " << data.size() <<
" and the data in hex is "
191 << base::HexEncode(data.data(), data.size());
195 const std::string hex_encoded =
196 base::ToLowerASCII(base::HexEncode(data.data(), data.size()));
197 DCHECK_EQ(hex_encoded.size(), kExpectedUUIDSize * 2);
198 base::StringPiece all(hex_encoded);
202 base::StringPiece first = all.substr(0, 8);
203 base::StringPiece second = all.substr(8, 4);
204 base::StringPiece third = all.substr(12, 4);
205 base::StringPiece fourth = all.substr(16, 4);
206 base::StringPiece fifth = all.substr(20, 12);
209 const size_t kHumanReadableUUIDSize = 36;
210 uuid_format->reserve(kHumanReadableUUIDSize);
211 first.CopyToString(uuid_format);
212 uuid_format->append(
"-");
213 second.AppendToString(uuid_format);
214 uuid_format->append(
"-");
215 third.AppendToString(uuid_format);
216 uuid_format->append(
"-");
217 fourth.AppendToString(uuid_format);
218 uuid_format->append(
"-");
219 fifth.AppendToString(uuid_format);
223 void UpdateContentProtectionPsshHelper(
224 const std::string& drm_uuid,
225 const std::string& pssh,
226 std::list<ContentProtectionElement>* content_protection_elements) {
227 const std::string drm_uuid_schemd_id_uri_form =
"urn:uuid:" + drm_uuid;
228 for (std::list<ContentProtectionElement>::iterator protection =
229 content_protection_elements->begin();
230 protection != content_protection_elements->end(); ++protection) {
231 if (protection->scheme_id_uri != drm_uuid_schemd_id_uri_form) {
235 for (std::vector<Element>::iterator subelement =
236 protection->subelements.begin();
237 subelement != protection->subelements.end(); ++subelement) {
238 if (subelement->name == kPsshElementName) {
241 protection->subelements.erase(subelement);
262 ContentProtectionElement content_protection;
263 content_protection.scheme_id_uri = drm_uuid_schemd_id_uri_form;
269 content_protection_elements->push_back(content_protection);
276 template <
typename ContentProtectionParent>
277 void AddContentProtectionElementsHelperTemplated(
278 const MediaInfo& media_info,
279 ContentProtectionParent* parent) {
281 if (!media_info.has_protected_content())
284 const MediaInfo::ProtectedContent& protected_content =
285 media_info.protected_content();
289 const bool is_mp4_container =
290 media_info.container_type() == MediaInfo::CONTAINER_MP4;
291 std::string key_id_uuid_format;
292 if (protected_content.has_default_key_id()) {
293 if (!
HexToUUID(protected_content.default_key_id(), &key_id_uuid_format)) {
294 LOG(ERROR) <<
"Failed to convert default key ID into UUID format.";
298 if (is_mp4_container) {
299 ContentProtectionElement mp4_content_protection;
300 mp4_content_protection.scheme_id_uri = kEncryptedMp4Scheme;
301 mp4_content_protection.value = protected_content.protection_scheme();
302 if (!key_id_uuid_format.empty()) {
303 mp4_content_protection.additional_attributes[
"cenc:default_KID"] =
307 parent->AddContentProtectionElement(mp4_content_protection);
310 for (
int i = 0; i < protected_content.content_protection_entry().size();
312 const MediaInfo::ProtectedContent::ContentProtectionEntry& entry =
313 protected_content.content_protection_entry(i);
314 if (!entry.has_uuid()) {
316 <<
"ContentProtectionEntry was specified but no UUID is set for "
317 << entry.name_version() <<
", skipping.";
321 ContentProtectionElement drm_content_protection;
322 drm_content_protection.scheme_id_uri =
"urn:uuid:" + entry.uuid();
323 if (entry.has_name_version())
324 drm_content_protection.value = entry.name_version();
326 if (entry.has_pssh()) {
327 std::string base64_encoded_pssh;
329 base::StringPiece(entry.pssh().data(), entry.pssh().size()),
330 &base64_encoded_pssh);
332 cenc_pssh.name = kPsshElementName;
333 cenc_pssh.content = base64_encoded_pssh;
334 drm_content_protection.subelements.push_back(cenc_pssh);
337 if (!key_id_uuid_format.empty() && !is_mp4_container) {
338 drm_content_protection.additional_attributes[
"cenc:default_KID"] =
342 parent->AddContentProtectionElement(drm_content_protection);
345 LOG_IF(WARNING, protected_content.content_protection_entry().size() == 0)
346 <<
"The media is encrypted but no content protection specified.";
352 AddContentProtectionElementsHelperTemplated(media_info, parent);
357 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)