DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
mpd_utils.cc
1 // Copyright 2014 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #include "packager/mpd/base/mpd_utils.h"
8 
9 #include <libxml/tree.h>
10 
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"
14 
15 namespace shaka {
16 namespace {
17 
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();
21  // DASH IOP mentions that the codec for ttml in mp4 is stpp.
22  if (format == "ttml" &&
23  (media_info.container_type() == MediaInfo::CONTAINER_MP4)) {
24  return "stpp";
25  }
26  if (format == "vtt" &&
27  (media_info.container_type() == MediaInfo::CONTAINER_MP4)) {
28  return "wvtt";
29  }
30 
31  // Otherwise codec doesn't need to be specified, e.g. vtt and ttml+xml are
32  // obvious from the mime type.
33  return "";
34 }
35 
36 } // namespace
37 
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();
41 }
42 
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();
47 }
48 
49 void RemoveDuplicateAttributes(
50  ContentProtectionElement* content_protection_element) {
51  DCHECK(content_protection_element);
52  typedef std::map<std::string, std::string> AttributesMap;
53 
54  AttributesMap& attributes = content_protection_element->additional_attributes;
55  if (!content_protection_element->value.empty())
56  attributes.erase("value");
57 
58  if (!content_protection_element->scheme_id_uri.empty())
59  attributes.erase("schemeIdUri");
60 }
61 
62 std::string GetLanguage(const MediaInfo& media_info) {
63  std::string lang;
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();
68  }
69  return lang;
70 }
71 
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()));
75 
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);
79  // media_info.video_info().codec() contains new revised codec string
80  // specified by "VPx in ISO BMFF" document, which is not compatible to
81  // old codec strings in WebM. Hack it here before all browsers support
82  // new codec strings.
83  if (codec == "vp08")
84  return "vp8";
85  if (codec == "vp09")
86  return "vp9";
87  }
88  return media_info.video_info().codec();
89  }
90 
91  if (media_info.has_audio_info())
92  return media_info.audio_info().codec();
93 
94  if (media_info.has_text_info())
95  return TextCodecString(media_info);
96 
97  NOTREACHED();
98  return "";
99 }
100 
101 std::string GetBaseCodec(const MediaInfo& media_info) {
102  std::string codec;
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();
109  }
110  // Convert, for example, "mp4a.40.2" to simply "mp4a".
111  // "mp4a.40.2" and "mp4a.40.5" can exist in the same AdaptationSet.
112  size_t dot = codec.find('.');
113  if (dot != std::string::npos) {
114  codec.erase(dot);
115  }
116  return codec;
117 }
118 
119 std::string GetAdaptationSetKey(const MediaInfo& media_info) {
120  std::string key;
121 
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()));
128  key.append(":");
129  } else {
130  key.append("unknown:");
131  }
132 
133  key.append(MediaInfo_ContainerType_Name(media_info.container_type()));
134  key.append(":");
135  key.append(GetBaseCodec(media_info));
136  key.append(":");
137  key.append(GetLanguage(media_info));
138 
139  return key;
140 }
141 
142 std::string SecondsToXmlDuration(double seconds) {
143  return "PT" + DoubleToString(seconds) + "S";
144 }
145 
146 bool GetDurationAttribute(xmlNodePtr node, float* duration) {
147  DCHECK(node);
148  DCHECK(duration);
149  static const char kDuration[] = "duration";
150  xml::scoped_xml_ptr<xmlChar> duration_value(
151  xmlGetProp(node, BAD_CAST kDuration));
152 
153  if (!duration_value)
154  return false;
155 
156  double duration_double_precision = 0.0;
157  if (!base::StringToDouble(reinterpret_cast<const char*>(duration_value.get()),
158  &duration_double_precision)) {
159  return false;
160  }
161 
162  *duration = static_cast<float>(duration_double_precision);
163  return true;
164 }
165 
166 bool MoreThanOneTrue(bool b1, bool b2, bool b3) {
167  return (b1 && b2) || (b2 && b3) || (b3 && b1);
168 }
169 
170 bool AtLeastOneTrue(bool b1, bool b2, bool b3) { return b1 || b2 || b3; }
171 
172 bool OnlyOneTrue(bool b1, bool b2, bool b3) {
173  return !MoreThanOneTrue(b1, b2, b3) && AtLeastOneTrue(b1, b2, b3);
174 }
175 
176 // Implement our own DoubleToString as base::DoubleToString uses third_party
177 // library dmg_fp.
178 std::string DoubleToString(double value) {
179  std::ostringstream stringstream;
180  stringstream << value;
181  return stringstream.str();
182 }
183 
184 // Coverts binary data into human readable UUID format.
185 bool HexToUUID(const std::string& data, std::string* uuid_format) {
186  DCHECK(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());
192  return false;
193  }
194 
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);
199  // Note UUID has 5 parts separated with dashes.
200  // e.g. 123e4567-e89b-12d3-a456-426655440000
201  // These StringPieces have each part.
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);
207 
208  // 32 hexadecimal characters with 4 hyphens.
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);
220  return true;
221 }
222 
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) {
232  continue;
233  }
234 
235  for (std::vector<Element>::iterator subelement =
236  protection->subelements.begin();
237  subelement != protection->subelements.end(); ++subelement) {
238  if (subelement->name == kPsshElementName) {
239  // For now, we want to remove the PSSH element because some players do
240  // not support updating pssh.
241  protection->subelements.erase(subelement);
242 
243  // TODO(rkuroiwa): Uncomment this and remove the line above when
244  // shaka-player supports updating PSSH.
245  // subelement->content = pssh;
246  return;
247  }
248  }
249 
250  // Reaching here means <cenc:pssh> does not exist under the
251  // ContentProtection element. Add it.
252  // TODO(rkuroiwa): Uncomment this when shaka-player supports updating PSSH.
253  // Element cenc_pssh;
254  // cenc_pssh.name = kPsshElementName;
255  // cenc_pssh.content = pssh;
256  // protection->subelements.push_back(cenc_pssh);
257  return;
258  }
259 
260  // Reaching here means that ContentProtection for the DRM does not exist.
261  // Add it.
262  ContentProtectionElement content_protection;
263  content_protection.scheme_id_uri = drm_uuid_schemd_id_uri_form;
264  // TODO(rkuroiwa): Uncomment this when shaka-player supports updating PSSH.
265  // Element cenc_pssh;
266  // cenc_pssh.name = kPsshElementName;
267  // cenc_pssh.content = pssh;
268  // content_protection.subelements.push_back(cenc_pssh);
269  content_protection_elements->push_back(content_protection);
270  return;
271 }
272 
273 namespace {
274 // Helper function. This works because Representation and AdaptationSet both
275 // have AddContentProtectionElement().
276 template <typename ContentProtectionParent>
277 void AddContentProtectionElementsHelperTemplated(
278  const MediaInfo& media_info,
279  ContentProtectionParent* parent) {
280  DCHECK(parent);
281  if (!media_info.has_protected_content())
282  return;
283 
284  const MediaInfo::ProtectedContent& protected_content =
285  media_info.protected_content();
286 
287  // DASH MPD spec specifies a default ContentProtection element for ISO BMFF
288  // (MP4) files.
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.";
295  }
296  }
297 
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"] =
304  key_id_uuid_format;
305  }
306 
307  parent->AddContentProtectionElement(mp4_content_protection);
308  }
309 
310  for (int i = 0; i < protected_content.content_protection_entry().size();
311  ++i) {
312  const MediaInfo::ProtectedContent::ContentProtectionEntry& entry =
313  protected_content.content_protection_entry(i);
314  if (!entry.has_uuid()) {
315  LOG(WARNING)
316  << "ContentProtectionEntry was specified but no UUID is set for "
317  << entry.name_version() << ", skipping.";
318  continue;
319  }
320 
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();
325 
326  if (entry.has_pssh()) {
327  std::string base64_encoded_pssh;
328  base::Base64Encode(
329  base::StringPiece(entry.pssh().data(), entry.pssh().size()),
330  &base64_encoded_pssh);
331  Element cenc_pssh;
332  cenc_pssh.name = kPsshElementName;
333  cenc_pssh.content = base64_encoded_pssh;
334  drm_content_protection.subelements.push_back(cenc_pssh);
335  }
336 
337  if (!key_id_uuid_format.empty() && !is_mp4_container) {
338  drm_content_protection.additional_attributes["cenc:default_KID"] =
339  key_id_uuid_format;
340  }
341 
342  parent->AddContentProtectionElement(drm_content_protection);
343  }
344 
345  LOG_IF(WARNING, protected_content.content_protection_entry().size() == 0)
346  << "The media is encrypted but no content protection specified.";
347 }
348 } // namespace
349 
350 void AddContentProtectionElements(const MediaInfo& media_info,
351  Representation* parent) {
352  AddContentProtectionElementsHelperTemplated(media_info, parent);
353 }
354 
355 void AddContentProtectionElements(const MediaInfo& media_info,
356  AdaptationSet* parent) {
357  AddContentProtectionElementsHelperTemplated(media_info, parent);
358 }
359 
360 
361 } // namespace shaka
void AddContentProtectionElements(const MediaInfo &media_info, Representation *parent)
Definition: mpd_utils.cc:350
bool HexToUUID(const std::string &data, std::string *uuid_format)
Definition: mpd_utils.cc:185
std::string DoubleToString(double value)
Definition: mpd_utils.cc:178