DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerator
box_definitions.cc
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "packager/media/formats/mp4/box_definitions.h"
6 
7 #include <limits>
8 
9 #include "packager/base/logging.h"
10 #include "packager/media/base/bit_reader.h"
11 #include "packager/media/formats/mp4/box_buffer.h"
12 #include "packager/media/formats/mp4/rcheck.h"
13 
14 namespace {
15 const uint32_t kFourCCSize = 4;
16 // Additional 32-bit size. We don't support 64-bit size.
17 const uint32_t kBoxSize = kFourCCSize + sizeof(uint32_t);
18 // Additional 1-byte version and 3-byte flags.
19 const uint32_t kFullBoxSize = kBoxSize + 4;
20 
21 // Key Id size as defined in CENC spec.
22 const uint32_t kCencKeyIdSize = 16;
23 
24 // 9 uint32_t in big endian formatted array.
25 const uint8_t kUnityMatrix[] = {0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
26  0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,
27  0, 0, 0, 0, 0, 0, 0, 0, 0x40, 0, 0, 0};
28 
29 // Default entries for HandlerReference box.
30 const char kVideoHandlerName[] = "VideoHandler";
31 const char kAudioHandlerName[] = "SoundHandler";
32 
33 // Default values for VideoSampleEntry box.
34 const uint32_t kVideoResolution = 0x00480000; // 72 dpi.
35 const uint16_t kVideoFrameCount = 1;
36 const uint16_t kVideoDepth = 0x0018;
37 
38 const uint32_t kCompressorNameSize = 32u;
39 const char kAvcCompressorName[] = "\012AVC Coding";
40 const char kHevcCompressorName[] = "\013HEVC Coding";
41 const char kVpcCompressorName[] = "\012VPC Coding";
42 
43 // Utility functions to check if the 64bit integers can fit in 32bit integer.
44 bool IsFitIn32Bits(uint64_t a) {
45  return a <= std::numeric_limits<uint32_t>::max();
46 }
47 
48 bool IsFitIn32Bits(int64_t a) {
49  return a <= std::numeric_limits<int32_t>::max() &&
50  a >= std::numeric_limits<int32_t>::min();
51 }
52 
53 template <typename T1, typename T2>
54 bool IsFitIn32Bits(T1 a1, T2 a2) {
55  return IsFitIn32Bits(a1) && IsFitIn32Bits(a2);
56 }
57 
58 template <typename T1, typename T2, typename T3>
59 bool IsFitIn32Bits(T1 a1, T2 a2, T3 a3) {
60  return IsFitIn32Bits(a1) && IsFitIn32Bits(a2) && IsFitIn32Bits(a3);
61 }
62 
63 } // namespace
64 
65 namespace edash_packager {
66 namespace media {
67 namespace mp4 {
68 
69 FileType::FileType() : major_brand(FOURCC_NULL), minor_version(0) {}
70 FileType::~FileType() {}
71 FourCC FileType::BoxType() const { return FOURCC_FTYP; }
72 
74  RCHECK(Box::ReadWrite(buffer) &&
75  buffer->ReadWriteFourCC(&major_brand) &&
76  buffer->ReadWriteUInt32(&minor_version));
77  size_t num_brands;
78  if (buffer->Reading()) {
79  num_brands = (buffer->Size() - buffer->Pos()) / sizeof(FourCC);
80  compatible_brands.resize(num_brands);
81  } else {
82  num_brands = compatible_brands.size();
83  }
84  for (size_t i = 0; i < num_brands; ++i)
85  RCHECK(buffer->ReadWriteFourCC(&compatible_brands[i]));
86  return true;
87 }
88 
90  atom_size = kBoxSize + kFourCCSize + sizeof(minor_version) +
91  kFourCCSize * compatible_brands.size();
92  return atom_size;
93 }
94 
95 SegmentType::SegmentType() {}
96 SegmentType::~SegmentType() {}
97 FourCC SegmentType::BoxType() const { return FOURCC_STYP; }
98 
100  return FileType::ReadWrite(buffer);
101 }
102 
104  return FileType::ComputeSize();
105 }
106 
107 ProtectionSystemSpecificHeader::ProtectionSystemSpecificHeader() {}
108 ProtectionSystemSpecificHeader::~ProtectionSystemSpecificHeader() {}
109 FourCC ProtectionSystemSpecificHeader::BoxType() const { return FOURCC_PSSH; }
110 
112  if (!buffer->Reading() && !raw_box.empty()) {
113  // Write the raw box directly.
114  buffer->writer()->AppendVector(raw_box);
115  return true;
116  }
117 
118  uint32_t size = data.size();
119  RCHECK(FullBox::ReadWrite(buffer) &&
120  buffer->ReadWriteVector(&system_id, 16) &&
121  buffer->ReadWriteUInt32(&size) &&
122  buffer->ReadWriteVector(&data, size));
123 
124  if (buffer->Reading()) {
125  // Copy the entire box, including the header, for passing to EME as
126  // initData.
127  DCHECK(raw_box.empty());
128  BoxReader* reader = buffer->reader();
129  DCHECK(reader);
130  raw_box.assign(reader->data(), reader->data() + reader->size());
131  }
132  return true;
133 }
134 
136  if (!raw_box.empty()) {
137  atom_size = raw_box.size();
138  } else {
139  atom_size =
140  kFullBoxSize + system_id.size() + sizeof(uint32_t) + data.size();
141  }
142  return atom_size;
143 }
144 
145 SampleAuxiliaryInformationOffset::SampleAuxiliaryInformationOffset() {}
146 SampleAuxiliaryInformationOffset::~SampleAuxiliaryInformationOffset() {}
147 FourCC SampleAuxiliaryInformationOffset::BoxType() const { return FOURCC_SAIO; }
148 
150  RCHECK(FullBox::ReadWrite(buffer));
151  if (flags & 1)
152  RCHECK(buffer->IgnoreBytes(8)); // aux_info_type and parameter.
153 
154  uint32_t count = offsets.size();
155  RCHECK(buffer->ReadWriteUInt32(&count));
156  offsets.resize(count);
157 
158  size_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
159  for (uint32_t i = 0; i < count; ++i)
160  RCHECK(buffer->ReadWriteUInt64NBytes(&offsets[i], num_bytes));
161  return true;
162 }
163 
165  // This box is optional. Skip it if it is empty.
166  atom_size = 0;
167  if (offsets.size() != 0) {
168  size_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
169  atom_size = kFullBoxSize + sizeof(uint32_t) + num_bytes * offsets.size();
170  }
171  return atom_size;
172 }
173 
174 SampleAuxiliaryInformationSize::SampleAuxiliaryInformationSize()
175  : default_sample_info_size(0), sample_count(0) {}
176 SampleAuxiliaryInformationSize::~SampleAuxiliaryInformationSize() {}
177 FourCC SampleAuxiliaryInformationSize::BoxType() const { return FOURCC_SAIZ; }
178 
180  RCHECK(FullBox::ReadWrite(buffer));
181  if (flags & 1)
182  RCHECK(buffer->IgnoreBytes(8));
183 
184  RCHECK(buffer->ReadWriteUInt8(&default_sample_info_size) &&
185  buffer->ReadWriteUInt32(&sample_count));
186  if (default_sample_info_size == 0)
187  RCHECK(buffer->ReadWriteVector(&sample_info_sizes, sample_count));
188  return true;
189 }
190 
192  // This box is optional. Skip it if it is empty.
193  atom_size = 0;
194  if (sample_count != 0) {
195  atom_size = kFullBoxSize + sizeof(default_sample_info_size) +
196  sizeof(sample_count) +
197  (default_sample_info_size == 0 ? sample_info_sizes.size() : 0);
198  }
199  return atom_size;
200 }
201 
202 OriginalFormat::OriginalFormat() : format(FOURCC_NULL) {}
203 OriginalFormat::~OriginalFormat() {}
204 FourCC OriginalFormat::BoxType() const { return FOURCC_FRMA; }
205 
207  return Box::ReadWrite(buffer) && buffer->ReadWriteFourCC(&format);
208 }
209 
211  atom_size = kBoxSize + kFourCCSize;
212  return atom_size;
213 }
214 
215 SchemeType::SchemeType() : type(FOURCC_NULL), version(0) {}
216 SchemeType::~SchemeType() {}
217 FourCC SchemeType::BoxType() const { return FOURCC_SCHM; }
218 
220  RCHECK(FullBox::ReadWrite(buffer) &&
221  buffer->ReadWriteFourCC(&type) &&
222  buffer->ReadWriteUInt32(&version));
223  return true;
224 }
225 
227  atom_size = kFullBoxSize + kFourCCSize + sizeof(version);
228  return atom_size;
229 }
230 
231 TrackEncryption::TrackEncryption()
232  : is_encrypted(false), default_iv_size(0), default_kid(16, 0) {}
233 TrackEncryption::~TrackEncryption() {}
234 FourCC TrackEncryption::BoxType() const { return FOURCC_TENC; }
235 
237  if (!buffer->Reading()) {
238  if (default_kid.size() != kCencKeyIdSize) {
239  LOG(WARNING) << "CENC defines key id length of " << kCencKeyIdSize
240  << " bytes; got " << default_kid.size()
241  << ". Resized accordingly.";
242  default_kid.resize(kCencKeyIdSize);
243  }
244  }
245 
246  uint8_t flag = is_encrypted ? 1 : 0;
247  RCHECK(FullBox::ReadWrite(buffer) &&
248  buffer->IgnoreBytes(2) && // reserved.
249  buffer->ReadWriteUInt8(&flag) &&
250  buffer->ReadWriteUInt8(&default_iv_size) &&
251  buffer->ReadWriteVector(&default_kid, kCencKeyIdSize));
252  if (buffer->Reading()) {
253  is_encrypted = (flag != 0);
254  if (is_encrypted) {
255  RCHECK(default_iv_size == 8 || default_iv_size == 16);
256  } else {
257  RCHECK(default_iv_size == 0);
258  }
259  }
260  return true;
261 }
262 
264  atom_size = kFullBoxSize + sizeof(uint32_t) + kCencKeyIdSize;
265  return atom_size;
266 }
267 
268 SchemeInfo::SchemeInfo() {}
269 SchemeInfo::~SchemeInfo() {}
270 FourCC SchemeInfo::BoxType() const { return FOURCC_SCHI; }
271 
273  RCHECK(Box::ReadWrite(buffer) && buffer->PrepareChildren() &&
274  buffer->ReadWriteChild(&track_encryption));
275  return true;
276 }
277 
279  atom_size = kBoxSize + track_encryption.ComputeSize();
280  return atom_size;
281 }
282 
283 ProtectionSchemeInfo::ProtectionSchemeInfo() {}
284 ProtectionSchemeInfo::~ProtectionSchemeInfo() {}
285 FourCC ProtectionSchemeInfo::BoxType() const { return FOURCC_SINF; }
286 
288  RCHECK(Box::ReadWrite(buffer) &&
289  buffer->PrepareChildren() &&
290  buffer->ReadWriteChild(&format) &&
291  buffer->ReadWriteChild(&type));
292  if (type.type == FOURCC_CENC)
293  RCHECK(buffer->ReadWriteChild(&info));
294  // Other protection schemes are silently ignored. Since the protection scheme
295  // type can't be determined until this box is opened, we return 'true' for
296  // non-CENC protection scheme types. It is the parent box's responsibility to
297  // ensure that this scheme type is a supported one.
298  return true;
299 }
300 
302  // Skip sinf box if it is not initialized.
303  atom_size = 0;
304  if (format.format != FOURCC_NULL) {
305  atom_size = kBoxSize + format.ComputeSize() + type.ComputeSize() +
306  info.ComputeSize();
307  }
308  return atom_size;
309 }
310 
311 MovieHeader::MovieHeader()
312  : creation_time(0),
313  modification_time(0),
314  timescale(0),
315  duration(0),
316  rate(1 << 16),
317  volume(1 << 8),
318  next_track_id(0) {}
319 MovieHeader::~MovieHeader() {}
320 FourCC MovieHeader::BoxType() const { return FOURCC_MVHD; }
321 
323  RCHECK(FullBox::ReadWrite(buffer));
324 
325  size_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
326  RCHECK(buffer->ReadWriteUInt64NBytes(&creation_time, num_bytes) &&
327  buffer->ReadWriteUInt64NBytes(&modification_time, num_bytes) &&
328  buffer->ReadWriteUInt32(&timescale) &&
329  buffer->ReadWriteUInt64NBytes(&duration, num_bytes));
330 
331  std::vector<uint8_t> matrix(kUnityMatrix,
332  kUnityMatrix + arraysize(kUnityMatrix));
333  RCHECK(buffer->ReadWriteInt32(&rate) &&
334  buffer->ReadWriteInt16(&volume) &&
335  buffer->IgnoreBytes(10) && // reserved
336  buffer->ReadWriteVector(&matrix, matrix.size()) &&
337  buffer->IgnoreBytes(24) && // predefined zero
338  buffer->ReadWriteUInt32(&next_track_id));
339  return true;
340 }
341 
343  version = IsFitIn32Bits(creation_time, modification_time, duration) ? 0 : 1;
344  atom_size = kFullBoxSize + sizeof(uint32_t) * (1 + version) * 3 +
345  sizeof(timescale) + sizeof(rate) + sizeof(volume) +
346  sizeof(next_track_id) + sizeof(kUnityMatrix) + 10 +
347  24; // 10 bytes reserved, 24 bytes predefined.
348  return atom_size;
349 }
350 
351 TrackHeader::TrackHeader()
352  : creation_time(0),
353  modification_time(0),
354  track_id(0),
355  duration(0),
356  layer(0),
357  alternate_group(0),
358  volume(-1),
359  width(0),
360  height(0) {
361  flags = kTrackEnabled | kTrackInMovie;
362 }
363 TrackHeader::~TrackHeader() {}
364 FourCC TrackHeader::BoxType() const { return FOURCC_TKHD; }
365 
367  RCHECK(FullBox::ReadWrite(buffer));
368 
369  size_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
370  RCHECK(buffer->ReadWriteUInt64NBytes(&creation_time, num_bytes) &&
371  buffer->ReadWriteUInt64NBytes(&modification_time, num_bytes) &&
372  buffer->ReadWriteUInt32(&track_id) &&
373  buffer->IgnoreBytes(4) && // reserved
374  buffer->ReadWriteUInt64NBytes(&duration, num_bytes));
375 
376  if (!buffer->Reading()) {
377  // Set default value for volume, if track is audio, 0x100 else 0.
378  if (volume == -1)
379  volume = (width != 0 && height != 0) ? 0 : 0x100;
380  }
381  std::vector<uint8_t> matrix(kUnityMatrix,
382  kUnityMatrix + arraysize(kUnityMatrix));
383  RCHECK(buffer->IgnoreBytes(8) && // reserved
384  buffer->ReadWriteInt16(&layer) &&
385  buffer->ReadWriteInt16(&alternate_group) &&
386  buffer->ReadWriteInt16(&volume) &&
387  buffer->IgnoreBytes(2) && // reserved
388  buffer->ReadWriteVector(&matrix, matrix.size()) &&
389  buffer->ReadWriteUInt32(&width) &&
390  buffer->ReadWriteUInt32(&height));
391  return true;
392 }
393 
395  version = IsFitIn32Bits(creation_time, modification_time, duration) ? 0 : 1;
396  atom_size = kFullBoxSize + sizeof(track_id) +
397  sizeof(uint32_t) * (1 + version) * 3 + sizeof(layer) +
398  sizeof(alternate_group) + sizeof(volume) + sizeof(width) +
399  sizeof(height) + sizeof(kUnityMatrix) + 14; // 14 bytes reserved.
400  return atom_size;
401 }
402 
403 SampleDescription::SampleDescription() : type(kInvalid) {}
404 SampleDescription::~SampleDescription() {}
405 FourCC SampleDescription::BoxType() const { return FOURCC_STSD; }
406 
408  uint32_t count = 0;
409  if (type == kVideo)
410  count = video_entries.size();
411  else
412  count = audio_entries.size();
413  RCHECK(FullBox::ReadWrite(buffer) &&
414  buffer->ReadWriteUInt32(&count));
415 
416  if (buffer->Reading()) {
417  BoxReader* reader = buffer->reader();
418  DCHECK(reader);
419  video_entries.clear();
420  audio_entries.clear();
421  // Note: this value is preset before scanning begins. See comments in the
422  // Parse(Media*) function.
423  if (type == kVideo) {
424  RCHECK(reader->ReadAllChildren(&video_entries));
425  RCHECK(video_entries.size() == count);
426  } else if (type == kAudio) {
427  RCHECK(reader->ReadAllChildren(&audio_entries));
428  RCHECK(audio_entries.size() == count);
429  }
430  } else {
431  DCHECK_LT(0u, count);
432  if (type == kVideo) {
433  for (uint32_t i = 0; i < count; ++i)
434  RCHECK(video_entries[i].ReadWrite(buffer));
435  } else if (type == kAudio) {
436  for (uint32_t i = 0; i < count; ++i)
437  RCHECK(audio_entries[i].ReadWrite(buffer));
438  } else {
439  NOTIMPLEMENTED();
440  }
441  }
442  return true;
443 }
444 
446  atom_size = kFullBoxSize + sizeof(uint32_t);
447  if (type == kVideo) {
448  for (uint32_t i = 0; i < video_entries.size(); ++i)
449  atom_size += video_entries[i].ComputeSize();
450  } else if (type == kAudio) {
451  for (uint32_t i = 0; i < audio_entries.size(); ++i)
452  atom_size += audio_entries[i].ComputeSize();
453  }
454  return atom_size;
455 }
456 
457 DecodingTimeToSample::DecodingTimeToSample() {}
458 DecodingTimeToSample::~DecodingTimeToSample() {}
459 FourCC DecodingTimeToSample::BoxType() const { return FOURCC_STTS; }
460 
462  uint32_t count = decoding_time.size();
463  RCHECK(FullBox::ReadWrite(buffer) &&
464  buffer->ReadWriteUInt32(&count));
465 
466  decoding_time.resize(count);
467  for (uint32_t i = 0; i < count; ++i) {
468  RCHECK(buffer->ReadWriteUInt32(&decoding_time[i].sample_count) &&
469  buffer->ReadWriteUInt32(&decoding_time[i].sample_delta));
470  }
471  return true;
472 }
473 
475  atom_size = kFullBoxSize + sizeof(uint32_t) +
476  sizeof(DecodingTime) * decoding_time.size();
477  return atom_size;
478 }
479 
480 CompositionTimeToSample::CompositionTimeToSample() {}
481 CompositionTimeToSample::~CompositionTimeToSample() {}
482 FourCC CompositionTimeToSample::BoxType() const { return FOURCC_CTTS; }
483 
485  uint32_t count = composition_offset.size();
486  if (!buffer->Reading()) {
487  // Determine whether version 0 or version 1 should be used.
488  // Use version 0 if possible, use version 1 if there is a negative
489  // sample_offset value.
490  version = 0;
491  for (uint32_t i = 0; i < count; ++i) {
492  if (composition_offset[i].sample_offset < 0) {
493  version = 1;
494  break;
495  }
496  }
497  }
498 
499  RCHECK(FullBox::ReadWrite(buffer) &&
500  buffer->ReadWriteUInt32(&count));
501 
502  composition_offset.resize(count);
503  for (uint32_t i = 0; i < count; ++i) {
504  RCHECK(buffer->ReadWriteUInt32(&composition_offset[i].sample_count));
505 
506  if (version == 0) {
507  uint32_t sample_offset = composition_offset[i].sample_offset;
508  RCHECK(buffer->ReadWriteUInt32(&sample_offset));
509  composition_offset[i].sample_offset = sample_offset;
510  } else {
511  int32_t sample_offset = composition_offset[i].sample_offset;
512  RCHECK(buffer->ReadWriteInt32(&sample_offset));
513  composition_offset[i].sample_offset = sample_offset;
514  }
515  }
516  return true;
517 }
518 
520  // This box is optional. Skip it if it is empty.
521  atom_size = 0;
522  if (!composition_offset.empty()) {
523  // Structure CompositionOffset contains |sample_offset| (uint32_t) and
524  // |sample_offset| (int64_t). The actual size of |sample_offset| is
525  // 4 bytes (uint32_t for version 0 and int32_t for version 1).
526  const uint32_t kCompositionOffsetSize = sizeof(uint32_t) * 2;
527  atom_size = kFullBoxSize + sizeof(uint32_t) +
528  kCompositionOffsetSize * composition_offset.size();
529  }
530  return atom_size;
531 }
532 
533 SampleToChunk::SampleToChunk() {}
534 SampleToChunk::~SampleToChunk() {}
535 FourCC SampleToChunk::BoxType() const { return FOURCC_STSC; }
536 
538  uint32_t count = chunk_info.size();
539  RCHECK(FullBox::ReadWrite(buffer) &&
540  buffer->ReadWriteUInt32(&count));
541 
542  chunk_info.resize(count);
543  for (uint32_t i = 0; i < count; ++i) {
544  RCHECK(buffer->ReadWriteUInt32(&chunk_info[i].first_chunk) &&
545  buffer->ReadWriteUInt32(&chunk_info[i].samples_per_chunk) &&
546  buffer->ReadWriteUInt32(&chunk_info[i].sample_description_index));
547  // first_chunk values are always increasing.
548  RCHECK(i == 0 ? chunk_info[i].first_chunk == 1
549  : chunk_info[i].first_chunk > chunk_info[i - 1].first_chunk);
550  }
551  return true;
552 }
553 
555  atom_size =
556  kFullBoxSize + sizeof(uint32_t) + sizeof(ChunkInfo) * chunk_info.size();
557  return atom_size;
558 }
559 
560 SampleSize::SampleSize() : sample_size(0), sample_count(0) {}
561 SampleSize::~SampleSize() {}
562 FourCC SampleSize::BoxType() const { return FOURCC_STSZ; }
563 
565  RCHECK(FullBox::ReadWrite(buffer) &&
566  buffer->ReadWriteUInt32(&sample_size) &&
567  buffer->ReadWriteUInt32(&sample_count));
568 
569  if (sample_size == 0) {
570  if (buffer->Reading())
571  sizes.resize(sample_count);
572  else
573  DCHECK(sample_count == sizes.size());
574  for (uint32_t i = 0; i < sample_count; ++i)
575  RCHECK(buffer->ReadWriteUInt32(&sizes[i]));
576  }
577  return true;
578 }
579 
581  atom_size = kFullBoxSize + sizeof(sample_size) + sizeof(sample_count) +
582  (sample_size == 0 ? sizeof(uint32_t) * sizes.size() : 0);
583  return atom_size;
584 }
585 
586 CompactSampleSize::CompactSampleSize() : field_size(0) {}
587 CompactSampleSize::~CompactSampleSize() {}
588 FourCC CompactSampleSize::BoxType() const { return FOURCC_STZ2; }
589 
591  uint32_t sample_count = sizes.size();
592  RCHECK(FullBox::ReadWrite(buffer) &&
593  buffer->IgnoreBytes(3) &&
594  buffer->ReadWriteUInt8(&field_size) &&
595  buffer->ReadWriteUInt32(&sample_count));
596 
597  // Reserve one more entry if field size is 4 bits.
598  sizes.resize(sample_count + (field_size == 4 ? 1 : 0), 0);
599  switch (field_size) {
600  case 4:
601  for (uint32_t i = 0; i < sample_count; i += 2) {
602  if (buffer->Reading()) {
603  uint8_t size = 0;
604  RCHECK(buffer->ReadWriteUInt8(&size));
605  sizes[i] = size >> 4;
606  sizes[i + 1] = size & 0x0F;
607  } else {
608  DCHECK_LT(sizes[i], 16u);
609  DCHECK_LT(sizes[i + 1], 16u);
610  uint8_t size = (sizes[i] << 4) | sizes[i + 1];
611  RCHECK(buffer->ReadWriteUInt8(&size));
612  }
613  }
614  break;
615  case 8:
616  for (uint32_t i = 0; i < sample_count; ++i) {
617  uint8_t size = sizes[i];
618  RCHECK(buffer->ReadWriteUInt8(&size));
619  sizes[i] = size;
620  }
621  break;
622  case 16:
623  for (uint32_t i = 0; i < sample_count; ++i) {
624  uint16_t size = sizes[i];
625  RCHECK(buffer->ReadWriteUInt16(&size));
626  sizes[i] = size;
627  }
628  break;
629  default:
630  RCHECK(false);
631  }
632  sizes.resize(sample_count);
633  return true;
634 }
635 
637  atom_size = kFullBoxSize + sizeof(uint32_t) + sizeof(uint32_t) +
638  (field_size * sizes.size() + 7) / 8;
639  return atom_size;
640 }
641 
642 ChunkOffset::ChunkOffset() {}
643 ChunkOffset::~ChunkOffset() {}
644 FourCC ChunkOffset::BoxType() const { return FOURCC_STCO; }
645 
647  uint32_t count = offsets.size();
648  RCHECK(FullBox::ReadWrite(buffer) &&
649  buffer->ReadWriteUInt32(&count));
650 
651  offsets.resize(count);
652  for (uint32_t i = 0; i < count; ++i)
653  RCHECK(buffer->ReadWriteUInt64NBytes(&offsets[i], sizeof(uint32_t)));
654  return true;
655 }
656 
658  atom_size =
659  kFullBoxSize + sizeof(uint32_t) + sizeof(uint32_t) * offsets.size();
660  return atom_size;
661 }
662 
663 ChunkLargeOffset::ChunkLargeOffset() {}
664 ChunkLargeOffset::~ChunkLargeOffset() {}
665 FourCC ChunkLargeOffset::BoxType() const { return FOURCC_CO64; }
666 
668  uint32_t count = offsets.size();
669 
670  if (!buffer->Reading()) {
671  // Switch to ChunkOffset box if it is able to fit in 32 bits offset.
672  if (count == 0 || IsFitIn32Bits(offsets[count - 1])) {
673  ChunkOffset stco;
674  stco.offsets.swap(offsets);
675  DCHECK(buffer->writer());
676  stco.Write(buffer->writer());
677  stco.offsets.swap(offsets);
678  return true;
679  }
680  }
681 
682  RCHECK(FullBox::ReadWrite(buffer) &&
683  buffer->ReadWriteUInt32(&count));
684 
685  offsets.resize(count);
686  for (uint32_t i = 0; i < count; ++i)
687  RCHECK(buffer->ReadWriteUInt64(&offsets[i]));
688  return true;
689 }
690 
692  uint32_t count = offsets.size();
693  int use_large_offset =
694  (count > 0 && !IsFitIn32Bits(offsets[count - 1])) ? 1 : 0;
695  atom_size = kFullBoxSize + sizeof(count) +
696  sizeof(uint32_t) * (1 + use_large_offset) * offsets.size();
697  return atom_size;
698 }
699 
700 SyncSample::SyncSample() {}
701 SyncSample::~SyncSample() {}
702 FourCC SyncSample::BoxType() const { return FOURCC_STSS; }
703 
705  uint32_t count = sample_number.size();
706  RCHECK(FullBox::ReadWrite(buffer) &&
707  buffer->ReadWriteUInt32(&count));
708 
709  sample_number.resize(count);
710  for (uint32_t i = 0; i < count; ++i)
711  RCHECK(buffer->ReadWriteUInt32(&sample_number[i]));
712  return true;
713 }
714 
716  // Sync sample box is optional. Skip it if it is empty.
717  atom_size = 0;
718  if (!sample_number.empty()) {
719  atom_size = kFullBoxSize + sizeof(uint32_t) +
720  sizeof(uint32_t) * sample_number.size();
721  }
722  return atom_size;
723 }
724 
725 SampleTable::SampleTable() {}
726 SampleTable::~SampleTable() {}
727 FourCC SampleTable::BoxType() const { return FOURCC_STBL; }
728 
730  RCHECK(Box::ReadWrite(buffer) &&
731  buffer->PrepareChildren() &&
732  buffer->ReadWriteChild(&description) &&
733  buffer->ReadWriteChild(&decoding_time_to_sample) &&
734  buffer->TryReadWriteChild(&composition_time_to_sample) &&
735  buffer->ReadWriteChild(&sample_to_chunk));
736 
737  if (buffer->Reading()) {
738  BoxReader* reader = buffer->reader();
739  DCHECK(reader);
740 
741  // Either SampleSize or CompactSampleSize must present.
742  if (reader->ChildExist(&sample_size)) {
743  RCHECK(reader->ReadChild(&sample_size));
744  } else {
745  CompactSampleSize compact_sample_size;
746  RCHECK(reader->ReadChild(&compact_sample_size));
747  sample_size.sample_size = 0;
748  sample_size.sample_count = compact_sample_size.sizes.size();
749  sample_size.sizes.swap(compact_sample_size.sizes);
750  }
751 
752  // Either ChunkOffset or ChunkLargeOffset must present.
753  if (reader->ChildExist(&chunk_large_offset)) {
754  RCHECK(reader->ReadChild(&chunk_large_offset));
755  } else {
756  ChunkOffset chunk_offset;
757  RCHECK(reader->ReadChild(&chunk_offset));
758  chunk_large_offset.offsets.swap(chunk_offset.offsets);
759  }
760  } else {
761  RCHECK(sample_size.ReadWrite(buffer) &&
762  chunk_large_offset.ReadWrite(buffer));
763  }
764  RCHECK(buffer->TryReadWriteChild(&sync_sample));
765  return true;
766 }
767 
769  atom_size = kBoxSize + description.ComputeSize() +
770  decoding_time_to_sample.ComputeSize() +
771  composition_time_to_sample.ComputeSize() +
772  sample_to_chunk.ComputeSize() + sample_size.ComputeSize() +
773  chunk_large_offset.ComputeSize() + sync_sample.ComputeSize();
774  return atom_size;
775 }
776 
777 EditList::EditList() {}
778 EditList::~EditList() {}
779 FourCC EditList::BoxType() const { return FOURCC_ELST; }
780 
782  uint32_t count = edits.size();
783  RCHECK(FullBox::ReadWrite(buffer) && buffer->ReadWriteUInt32(&count));
784  edits.resize(count);
785 
786  size_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
787  for (uint32_t i = 0; i < count; ++i) {
788  RCHECK(
789  buffer->ReadWriteUInt64NBytes(&edits[i].segment_duration, num_bytes) &&
790  buffer->ReadWriteInt64NBytes(&edits[i].media_time, num_bytes) &&
791  buffer->ReadWriteInt16(&edits[i].media_rate_integer) &&
792  buffer->ReadWriteInt16(&edits[i].media_rate_fraction));
793  }
794  return true;
795 }
796 
798  // EditList box is optional. Skip it if it is empty.
799  atom_size = 0;
800  if (edits.empty())
801  return 0;
802 
803  version = 0;
804  for (uint32_t i = 0; i < edits.size(); ++i) {
805  if (!IsFitIn32Bits(edits[i].segment_duration, edits[i].media_time)) {
806  version = 1;
807  break;
808  }
809  }
810  atom_size = kFullBoxSize + sizeof(uint32_t) +
811  (sizeof(uint32_t) * (1 + version) * 2 + sizeof(int16_t) * 2) *
812  edits.size();
813  return atom_size;
814 }
815 
816 Edit::Edit() {}
817 Edit::~Edit() {}
818 FourCC Edit::BoxType() const { return FOURCC_EDTS; }
819 
820 bool Edit::ReadWrite(BoxBuffer* buffer) {
821  return Box::ReadWrite(buffer) &&
822  buffer->PrepareChildren() &&
823  buffer->ReadWriteChild(&list);
824 }
825 
826 uint32_t Edit::ComputeSize() {
827  // Edit box is optional. Skip it if it is empty.
828  atom_size = 0;
829  if (!list.edits.empty())
830  atom_size = kBoxSize + list.ComputeSize();
831  return atom_size;
832 }
833 
834 HandlerReference::HandlerReference() : type(kInvalid) {}
835 HandlerReference::~HandlerReference() {}
836 FourCC HandlerReference::BoxType() const { return FOURCC_HDLR; }
837 
839  FourCC hdlr_type = FOURCC_NULL;
840  std::vector<uint8_t> handler_name;
841  if (!buffer->Reading()) {
842  if (type == kVideo) {
843  hdlr_type = FOURCC_VIDE;
844  handler_name.assign(kVideoHandlerName,
845  kVideoHandlerName + arraysize(kVideoHandlerName));
846  } else if (type == kAudio) {
847  hdlr_type = FOURCC_SOUN;
848  handler_name.assign(kAudioHandlerName,
849  kAudioHandlerName + arraysize(kAudioHandlerName));
850  } else {
851  NOTIMPLEMENTED();
852  return false;
853  }
854  }
855  RCHECK(FullBox::ReadWrite(buffer) &&
856  buffer->IgnoreBytes(4) && // predefined.
857  buffer->ReadWriteFourCC(&hdlr_type));
858  if (buffer->Reading()) {
859  // Note: for reading, remaining fields in box ignored.
860  if (hdlr_type == FOURCC_VIDE) {
861  type = kVideo;
862  } else if (hdlr_type == FOURCC_SOUN) {
863  type = kAudio;
864  } else {
865  type = kInvalid;
866  }
867  } else {
868  RCHECK(buffer->IgnoreBytes(12) && // reserved.
869  buffer->ReadWriteVector(&handler_name, handler_name.size()));
870  }
871  return true;
872 }
873 
875  atom_size =
876  kFullBoxSize + kFourCCSize + 16 + // 16 bytes Reserved
877  (type == kVideo ? sizeof(kVideoHandlerName) : sizeof(kAudioHandlerName));
878  return atom_size;
879 }
880 
881 CodecConfigurationRecord::CodecConfigurationRecord() : box_type(FOURCC_NULL) {}
882 CodecConfigurationRecord::~CodecConfigurationRecord() {}
883 FourCC CodecConfigurationRecord::BoxType() const {
884  // CodecConfigurationRecord should be parsed according to format recovered in
885  // VideoSampleEntry. |box_type| is determined dynamically there.
886  return box_type;
887 }
888 
890  RCHECK(Box::ReadWrite(buffer));
891  if (buffer->Reading()) {
892  RCHECK(buffer->ReadWriteVector(&data, buffer->Size() - buffer->Pos()));
893  } else {
894  RCHECK(buffer->ReadWriteVector(&data, data.size()));
895  }
896  return true;
897 }
898 
900  atom_size = 0;
901  if (!data.empty())
902  atom_size = kBoxSize + data.size();
903  return atom_size;
904 }
905 
906 PixelAspectRatioBox::PixelAspectRatioBox() : h_spacing(0), v_spacing(0) {}
907 PixelAspectRatioBox::~PixelAspectRatioBox() {}
908 FourCC PixelAspectRatioBox::BoxType() const { return FOURCC_PASP; }
909 
911  RCHECK(Box::ReadWrite(buffer) &&
912  buffer->ReadWriteUInt32(&h_spacing) &&
913  buffer->ReadWriteUInt32(&v_spacing));
914  return true;
915 }
916 
918  // This box is optional. Skip it if it is not initialized.
919  atom_size = 0;
920  if (h_spacing != 0 || v_spacing != 0) {
921  // Both values must be positive.
922  DCHECK(h_spacing != 0 && v_spacing != 0);
923  atom_size = kBoxSize + sizeof(h_spacing) + sizeof(v_spacing);
924  }
925  return atom_size;
926 }
927 
928 VideoSampleEntry::VideoSampleEntry()
929  : format(FOURCC_NULL), data_reference_index(1), width(0), height(0) {}
930 
931 VideoSampleEntry::~VideoSampleEntry() {}
932 FourCC VideoSampleEntry::BoxType() const {
933  LOG(ERROR) << "VideoSampleEntry should be parsed according to the "
934  << "handler type recovered in its Media ancestor.";
935  return FOURCC_NULL;
936 }
937 
939  std::vector<uint8_t> compressor_name;
940  if (buffer->Reading()) {
941  DCHECK(buffer->reader());
942  format = buffer->reader()->type();
943  } else {
944  RCHECK(buffer->ReadWriteUInt32(&atom_size) &&
945  buffer->ReadWriteFourCC(&format));
946 
947  const FourCC actual_format = GetActualFormat();
948  switch (actual_format) {
949  case FOURCC_AVC1:
950  compressor_name.assign(
951  kAvcCompressorName,
952  kAvcCompressorName + arraysize(kAvcCompressorName));
953  break;
954  case FOURCC_HEV1:
955  case FOURCC_HVC1:
956  compressor_name.assign(
957  kHevcCompressorName,
958  kHevcCompressorName + arraysize(kHevcCompressorName));
959  break;
960  case FOURCC_VP08:
961  case FOURCC_VP09:
962  case FOURCC_VP10:
963  compressor_name.assign(
964  kVpcCompressorName,
965  kVpcCompressorName + arraysize(kVpcCompressorName));
966  break;
967  default:
968  LOG(ERROR) << FourCCToString(actual_format) << " is not supported.";
969  return false;
970  }
971  compressor_name.resize(kCompressorNameSize);
972  }
973 
974  uint32_t video_resolution = kVideoResolution;
975  uint16_t video_frame_count = kVideoFrameCount;
976  uint16_t video_depth = kVideoDepth;
977  int16_t predefined = -1;
978  RCHECK(buffer->IgnoreBytes(6) && // reserved.
979  buffer->ReadWriteUInt16(&data_reference_index) &&
980  buffer->IgnoreBytes(16) && // predefined 0.
981  buffer->ReadWriteUInt16(&width) &&
982  buffer->ReadWriteUInt16(&height) &&
983  buffer->ReadWriteUInt32(&video_resolution) &&
984  buffer->ReadWriteUInt32(&video_resolution) &&
985  buffer->IgnoreBytes(4) && // reserved.
986  buffer->ReadWriteUInt16(&video_frame_count) &&
987  buffer->ReadWriteVector(&compressor_name, kCompressorNameSize) &&
988  buffer->ReadWriteUInt16(&video_depth) &&
989  buffer->ReadWriteInt16(&predefined));
990 
991  RCHECK(buffer->PrepareChildren());
992 
993  if (format == FOURCC_ENCV) {
994  if (buffer->Reading()) {
995  // Continue scanning until a recognized protection scheme is found,
996  // or until we run out of protection schemes.
997  while (sinf.type.type != FOURCC_CENC) {
998  if (!buffer->ReadWriteChild(&sinf))
999  return false;
1000  }
1001  } else {
1002  RCHECK(buffer->ReadWriteChild(&sinf));
1003  }
1004  }
1005 
1006  const FourCC actual_format = GetActualFormat();
1007  switch (actual_format) {
1008  case FOURCC_AVC1:
1009  codec_config_record.box_type = FOURCC_AVCC;
1010  break;
1011  case FOURCC_HEV1:
1012  case FOURCC_HVC1:
1013  codec_config_record.box_type = FOURCC_HVCC;
1014  break;
1015  case FOURCC_VP08:
1016  case FOURCC_VP09:
1017  case FOURCC_VP10:
1018  codec_config_record.box_type = FOURCC_VPCC;
1019  break;
1020  default:
1021  LOG(ERROR) << FourCCToString(actual_format) << " is not supported.";
1022  return false;
1023  }
1024  RCHECK(buffer->ReadWriteChild(&codec_config_record));
1025  RCHECK(buffer->TryReadWriteChild(&pixel_aspect));
1026  return true;
1027 }
1028 
1030  atom_size = kBoxSize + sizeof(data_reference_index) + sizeof(width) +
1031  sizeof(height) + sizeof(kVideoResolution) * 2 +
1032  sizeof(kVideoFrameCount) + sizeof(kVideoDepth) +
1033  pixel_aspect.ComputeSize() + sinf.ComputeSize() +
1034  codec_config_record.ComputeSize() + kCompressorNameSize +
1035  6 + 4 + 16 + 2; // 6 + 4 bytes reserved, 16 + 2 bytes predefined.
1036  return atom_size;
1037 }
1038 
1039 ElementaryStreamDescriptor::ElementaryStreamDescriptor() {}
1040 ElementaryStreamDescriptor::~ElementaryStreamDescriptor() {}
1041 FourCC ElementaryStreamDescriptor::BoxType() const { return FOURCC_ESDS; }
1042 
1044  RCHECK(FullBox::ReadWrite(buffer));
1045  if (buffer->Reading()) {
1046  std::vector<uint8_t> data;
1047  RCHECK(buffer->ReadWriteVector(&data, buffer->Size() - buffer->Pos()));
1048  RCHECK(es_descriptor.Parse(data));
1049  if (es_descriptor.IsAAC()) {
1050  RCHECK(aac_audio_specific_config.Parse(
1051  es_descriptor.decoder_specific_info()));
1052  }
1053  } else {
1054  DCHECK(buffer->writer());
1055  es_descriptor.Write(buffer->writer());
1056  }
1057  return true;
1058 }
1059 
1061  // This box is optional. Skip it if not initialized.
1062  atom_size = 0;
1063  if (es_descriptor.object_type() != kForbidden)
1064  atom_size = kFullBoxSize + es_descriptor.ComputeSize();
1065  return atom_size;
1066 }
1067 
1068 AudioSampleEntry::AudioSampleEntry()
1069  : format(FOURCC_NULL),
1070  data_reference_index(1),
1071  channelcount(2),
1072  samplesize(16),
1073  samplerate(0) {}
1074 
1075 AudioSampleEntry::~AudioSampleEntry() {}
1076 
1077 FourCC AudioSampleEntry::BoxType() const {
1078  LOG(ERROR) << "AudioSampleEntry should be parsed according to the "
1079  << "handler type recovered in its Media ancestor.";
1080  return FOURCC_NULL;
1081 }
1082 
1084  if (buffer->Reading()) {
1085  DCHECK(buffer->reader());
1086  format = buffer->reader()->type();
1087  } else {
1088  RCHECK(buffer->ReadWriteUInt32(&atom_size) &&
1089  buffer->ReadWriteFourCC(&format));
1090  }
1091 
1092  // Convert from integer to 16.16 fixed point for writing.
1093  samplerate <<= 16;
1094  RCHECK(buffer->IgnoreBytes(6) && // reserved.
1095  buffer->ReadWriteUInt16(&data_reference_index) &&
1096  buffer->IgnoreBytes(8) && // reserved.
1097  buffer->ReadWriteUInt16(&channelcount) &&
1098  buffer->ReadWriteUInt16(&samplesize) &&
1099  buffer->IgnoreBytes(4) && // predefined.
1100  buffer->ReadWriteUInt32(&samplerate));
1101  // Convert from 16.16 fixed point to integer.
1102  samplerate >>= 16;
1103 
1104  if (format == FOURCC_ENCA || format == FOURCC_MP4A) {
1105  RCHECK(buffer->PrepareChildren());
1106  if (format == FOURCC_ENCA) {
1107  if (buffer->Reading()) {
1108  // Continue scanning until a recognized protection scheme is found,
1109  // or until we run out of protection schemes.
1110  while (sinf.type.type != FOURCC_CENC) {
1111  if (!buffer->ReadWriteChild(&sinf))
1112  return false;
1113  }
1114  } else {
1115  RCHECK(buffer->ReadWriteChild(&sinf));
1116  }
1117  }
1118 
1119  // ESDS is not valid in case of EAC3.
1120  RCHECK(buffer->TryReadWriteChild(&esds));
1121  }
1122 
1123  // Read/write all other data in the buffer extra_data.
1124  if (buffer->Reading()) {
1125  LOG(INFO) << "read vector: " << buffer->Size() << ", " << buffer->Pos();
1126  RCHECK(buffer->ReadWriteVector(&extra_data, buffer->Size() - buffer->Pos()));
1127  } else {
1128  LOG(INFO) << "write vector: " << extra_data.size();
1129  RCHECK(buffer->ReadWriteVector(&extra_data, extra_data.size()));
1130  }
1131 
1132  return true;
1133 }
1134 
1136  atom_size = kBoxSize + sizeof(data_reference_index) + sizeof(channelcount) +
1137  sizeof(samplesize) + sizeof(samplerate) + sinf.ComputeSize() +
1138  esds.ComputeSize() + extra_data.size() +
1139  6 + 8 + // 6 + 8 bytes reserved.
1140  4; // 4 bytes predefined.
1141  return atom_size;
1142 }
1143 
1144 MediaHeader::MediaHeader()
1145  : creation_time(0), modification_time(0), timescale(0), duration(0) {
1146  language[0] = 0;
1147 }
1148 MediaHeader::~MediaHeader() {}
1149 FourCC MediaHeader::BoxType() const { return FOURCC_MDHD; }
1150 
1152  RCHECK(FullBox::ReadWrite(buffer));
1153 
1154  uint8_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
1155  RCHECK(buffer->ReadWriteUInt64NBytes(&creation_time, num_bytes) &&
1156  buffer->ReadWriteUInt64NBytes(&modification_time, num_bytes) &&
1157  buffer->ReadWriteUInt32(&timescale) &&
1158  buffer->ReadWriteUInt64NBytes(&duration, num_bytes));
1159 
1160  if (buffer->Reading()) {
1161  // Read language codes into temp first then use BitReader to read the
1162  // values. ISO-639-2/T language code: unsigned int(5)[3] language (2 bytes).
1163  std::vector<uint8_t> temp;
1164  RCHECK(buffer->ReadWriteVector(&temp, 2));
1165 
1166  BitReader bit_reader(&temp[0], 2);
1167  bit_reader.SkipBits(1);
1168  for (int i = 0; i < 3; ++i) {
1169  CHECK(bit_reader.ReadBits(5, &language[i]));
1170  language[i] += 0x60;
1171  }
1172  language[3] = '\0';
1173  } else {
1174  // Set up default language if it is not set.
1175  const char kUndefinedLanguage[] = "und";
1176  if (language[0] == 0)
1177  strcpy(language, kUndefinedLanguage);
1178 
1179  // Lang format: bit(1) pad, unsigned int(5)[3] language.
1180  uint16_t lang = 0;
1181  for (int i = 0; i < 3; ++i)
1182  lang |= (language[i] - 0x60) << ((2 - i) * 5);
1183  RCHECK(buffer->ReadWriteUInt16(&lang));
1184  }
1185 
1186  RCHECK(buffer->IgnoreBytes(2)); // predefined.
1187  return true;
1188 }
1189 
1191  version = IsFitIn32Bits(creation_time, modification_time, duration) ? 0 : 1;
1192  atom_size = kFullBoxSize + sizeof(timescale) +
1193  sizeof(uint32_t) * (1 + version) * 3 + 2 + // 2 bytes language.
1194  2; // 2 bytes predefined.
1195  return atom_size;
1196 }
1197 
1198 VideoMediaHeader::VideoMediaHeader()
1199  : graphicsmode(0), opcolor_red(0), opcolor_green(0), opcolor_blue(0) {
1200  const uint32_t kVideoMediaHeaderFlags = 1;
1201  flags = kVideoMediaHeaderFlags;
1202 }
1203 VideoMediaHeader::~VideoMediaHeader() {}
1204 FourCC VideoMediaHeader::BoxType() const { return FOURCC_VMHD; }
1206  RCHECK(FullBox::ReadWrite(buffer) &&
1207  buffer->ReadWriteUInt16(&graphicsmode) &&
1208  buffer->ReadWriteUInt16(&opcolor_red) &&
1209  buffer->ReadWriteUInt16(&opcolor_green) &&
1210  buffer->ReadWriteUInt16(&opcolor_blue));
1211  return true;
1212 }
1213 
1215  atom_size = kFullBoxSize + sizeof(graphicsmode) + sizeof(opcolor_red) +
1216  sizeof(opcolor_green) + sizeof(opcolor_blue);
1217  return atom_size;
1218 }
1219 
1220 SoundMediaHeader::SoundMediaHeader() : balance(0) {}
1221 SoundMediaHeader::~SoundMediaHeader() {}
1222 FourCC SoundMediaHeader::BoxType() const { return FOURCC_SMHD; }
1224  RCHECK(FullBox::ReadWrite(buffer) &&
1225  buffer->ReadWriteUInt16(&balance) &&
1226  buffer->IgnoreBytes(2)); // reserved.
1227  return true;
1228 }
1229 
1231  atom_size = kFullBoxSize + sizeof(balance) + sizeof(uint16_t);
1232  return atom_size;
1233 }
1234 
1235 DataEntryUrl::DataEntryUrl() {
1236  const uint32_t kDataEntryUrlFlags = 1;
1237  flags = kDataEntryUrlFlags;
1238 }
1239 DataEntryUrl::~DataEntryUrl() {}
1240 FourCC DataEntryUrl::BoxType() const { return FOURCC_URL; }
1242  RCHECK(FullBox::ReadWrite(buffer));
1243  if (buffer->Reading()) {
1244  RCHECK(buffer->ReadWriteVector(&location, buffer->Size() - buffer->Pos()));
1245  } else {
1246  RCHECK(buffer->ReadWriteVector(&location, location.size()));
1247  }
1248  return true;
1249 }
1250 
1252  atom_size = kBoxSize + sizeof(flags) + location.size();
1253  return atom_size;
1254 }
1255 
1256 DataReference::DataReference() {
1257  // Default 1 entry.
1258  data_entry.resize(1);
1259 }
1260 DataReference::~DataReference() {}
1261 FourCC DataReference::BoxType() const { return FOURCC_DREF; }
1263  uint32_t entry_count = data_entry.size();
1264  RCHECK(FullBox::ReadWrite(buffer) &&
1265  buffer->ReadWriteUInt32(&entry_count));
1266  data_entry.resize(entry_count);
1267  RCHECK(buffer->PrepareChildren());
1268  for (uint32_t i = 0; i < entry_count; ++i)
1269  RCHECK(buffer->ReadWriteChild(&data_entry[i]));
1270  return true;
1271 }
1272 
1274  uint32_t count = data_entry.size();
1275  atom_size = kFullBoxSize + sizeof(count);
1276  for (uint32_t i = 0; i < count; ++i)
1277  atom_size += data_entry[i].ComputeSize();
1278  return atom_size;
1279 }
1280 
1281 DataInformation::DataInformation() {}
1282 DataInformation::~DataInformation() {}
1283 FourCC DataInformation::BoxType() const { return FOURCC_DINF; }
1284 
1286  return Box::ReadWrite(buffer) &&
1287  buffer->PrepareChildren() &&
1288  buffer->ReadWriteChild(&dref);
1289 }
1290 
1292  atom_size = kBoxSize + dref.ComputeSize();
1293  return atom_size;
1294 }
1295 
1296 MediaInformation::MediaInformation() {}
1297 MediaInformation::~MediaInformation() {}
1298 FourCC MediaInformation::BoxType() const { return FOURCC_MINF; }
1299 
1301  RCHECK(Box::ReadWrite(buffer) &&
1302  buffer->PrepareChildren() &&
1303  buffer->ReadWriteChild(&dinf) &&
1304  buffer->ReadWriteChild(&sample_table));
1305  if (sample_table.description.type == kVideo)
1306  RCHECK(buffer->ReadWriteChild(&vmhd));
1307  else if (sample_table.description.type == kAudio)
1308  RCHECK(buffer->ReadWriteChild(&smhd));
1309  else
1310  NOTIMPLEMENTED();
1311  // Hint is not supported for now.
1312  return true;
1313 }
1314 
1316  atom_size = kBoxSize + dinf.ComputeSize() + sample_table.ComputeSize();
1317  if (sample_table.description.type == kVideo)
1318  atom_size += vmhd.ComputeSize();
1319  else if (sample_table.description.type == kAudio)
1320  atom_size += smhd.ComputeSize();
1321  return atom_size;
1322 }
1323 
1324 Media::Media() {}
1325 Media::~Media() {}
1326 FourCC Media::BoxType() const { return FOURCC_MDIA; }
1327 
1329  RCHECK(Box::ReadWrite(buffer) &&
1330  buffer->PrepareChildren() &&
1331  buffer->ReadWriteChild(&header) &&
1332  buffer->ReadWriteChild(&handler));
1333  if (buffer->Reading()) {
1334  // Maddeningly, the HandlerReference box specifies how to parse the
1335  // SampleDescription box, making the latter the only box (of those that we
1336  // support) which cannot be parsed correctly on its own (or even with
1337  // information from its strict ancestor tree). We thus copy the handler type
1338  // to the sample description box *before* parsing it to provide this
1339  // information while parsing.
1340  information.sample_table.description.type = handler.type;
1341  } else {
1342  DCHECK_EQ(information.sample_table.description.type, handler.type);
1343  }
1344  RCHECK(buffer->ReadWriteChild(&information));
1345  return true;
1346 }
1347 
1349  atom_size = kBoxSize + header.ComputeSize() + handler.ComputeSize() +
1350  information.ComputeSize();
1351  return atom_size;
1352 }
1353 
1354 Track::Track() {}
1355 Track::~Track() {}
1356 FourCC Track::BoxType() const { return FOURCC_TRAK; }
1357 
1359  RCHECK(Box::ReadWrite(buffer) &&
1360  buffer->PrepareChildren() &&
1361  buffer->ReadWriteChild(&header) &&
1362  buffer->ReadWriteChild(&media) &&
1363  buffer->TryReadWriteChild(&edit));
1364  return true;
1365 }
1366 
1368  atom_size = kBoxSize + header.ComputeSize() + media.ComputeSize() +
1369  edit.ComputeSize();
1370  return atom_size;
1371 }
1372 
1373 MovieExtendsHeader::MovieExtendsHeader() : fragment_duration(0) {}
1374 MovieExtendsHeader::~MovieExtendsHeader() {}
1375 FourCC MovieExtendsHeader::BoxType() const { return FOURCC_MEHD; }
1376 
1378  RCHECK(FullBox::ReadWrite(buffer));
1379  size_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
1380  RCHECK(buffer->ReadWriteUInt64NBytes(&fragment_duration, num_bytes));
1381  return true;
1382 }
1383 
1385  atom_size = 0;
1386  // This box is optional. Skip it if it is not used.
1387  if (fragment_duration != 0) {
1388  version = IsFitIn32Bits(fragment_duration) ? 0 : 1;
1389  atom_size = kFullBoxSize + sizeof(uint32_t) * (1 + version);
1390  }
1391  return atom_size;
1392 }
1393 
1394 TrackExtends::TrackExtends()
1395  : track_id(0),
1396  default_sample_description_index(0),
1397  default_sample_duration(0),
1398  default_sample_size(0),
1399  default_sample_flags(0) {}
1400 TrackExtends::~TrackExtends() {}
1401 FourCC TrackExtends::BoxType() const { return FOURCC_TREX; }
1402 
1404  RCHECK(FullBox::ReadWrite(buffer) &&
1405  buffer->ReadWriteUInt32(&track_id) &&
1406  buffer->ReadWriteUInt32(&default_sample_description_index) &&
1407  buffer->ReadWriteUInt32(&default_sample_duration) &&
1408  buffer->ReadWriteUInt32(&default_sample_size) &&
1409  buffer->ReadWriteUInt32(&default_sample_flags));
1410  return true;
1411 }
1412 
1414  atom_size = kFullBoxSize + sizeof(track_id) +
1415  sizeof(default_sample_description_index) +
1416  sizeof(default_sample_duration) + sizeof(default_sample_size) +
1417  sizeof(default_sample_flags);
1418  return atom_size;
1419 }
1420 
1421 MovieExtends::MovieExtends() {}
1422 MovieExtends::~MovieExtends() {}
1423 FourCC MovieExtends::BoxType() const { return FOURCC_MVEX; }
1424 
1426  RCHECK(Box::ReadWrite(buffer) &&
1427  buffer->PrepareChildren() &&
1428  buffer->TryReadWriteChild(&header));
1429  if (buffer->Reading()) {
1430  DCHECK(buffer->reader());
1431  RCHECK(buffer->reader()->ReadChildren(&tracks));
1432  } else {
1433  for (uint32_t i = 0; i < tracks.size(); ++i)
1434  RCHECK(tracks[i].ReadWrite(buffer));
1435  }
1436  return true;
1437 }
1438 
1440  // This box is optional. Skip it if it does not contain any track.
1441  atom_size = 0;
1442  if (tracks.size() != 0) {
1443  atom_size = kBoxSize + header.ComputeSize();
1444  for (uint32_t i = 0; i < tracks.size(); ++i)
1445  atom_size += tracks[i].ComputeSize();
1446  }
1447  return atom_size;
1448 }
1449 
1450 Movie::Movie() {}
1451 Movie::~Movie() {}
1452 FourCC Movie::BoxType() const { return FOURCC_MOOV; }
1453 
1455  RCHECK(Box::ReadWrite(buffer) &&
1456  buffer->PrepareChildren() &&
1457  buffer->ReadWriteChild(&header) &&
1458  buffer->TryReadWriteChild(&extends));
1459  if (buffer->Reading()) {
1460  BoxReader* reader = buffer->reader();
1461  DCHECK(reader);
1462  RCHECK(reader->ReadChildren(&tracks) &&
1463  reader->TryReadChildren(&pssh));
1464  } else {
1465  for (uint32_t i = 0; i < tracks.size(); ++i)
1466  RCHECK(tracks[i].ReadWrite(buffer));
1467  for (uint32_t i = 0; i < pssh.size(); ++i)
1468  RCHECK(pssh[i].ReadWrite(buffer));
1469  }
1470  return true;
1471 }
1472 
1474  atom_size = kBoxSize + header.ComputeSize() + extends.ComputeSize();
1475  for (uint32_t i = 0; i < tracks.size(); ++i)
1476  atom_size += tracks[i].ComputeSize();
1477  for (uint32_t i = 0; i < pssh.size(); ++i)
1478  atom_size += pssh[i].ComputeSize();
1479  return atom_size;
1480 }
1481 
1482 TrackFragmentDecodeTime::TrackFragmentDecodeTime() : decode_time(0) {}
1483 TrackFragmentDecodeTime::~TrackFragmentDecodeTime() {}
1484 FourCC TrackFragmentDecodeTime::BoxType() const { return FOURCC_TFDT; }
1485 
1487  RCHECK(FullBox::ReadWrite(buffer));
1488  size_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
1489  RCHECK(buffer->ReadWriteUInt64NBytes(&decode_time, num_bytes));
1490  return true;
1491 }
1492 
1494  version = IsFitIn32Bits(decode_time) ? 0 : 1;
1495  atom_size = kFullBoxSize + sizeof(uint32_t) * (1 + version);
1496  return atom_size;
1497 }
1498 
1499 MovieFragmentHeader::MovieFragmentHeader() : sequence_number(0) {}
1500 MovieFragmentHeader::~MovieFragmentHeader() {}
1501 FourCC MovieFragmentHeader::BoxType() const { return FOURCC_MFHD; }
1502 
1504  return FullBox::ReadWrite(buffer) &&
1505  buffer->ReadWriteUInt32(&sequence_number);
1506 }
1507 
1509  atom_size = kFullBoxSize + sizeof(sequence_number);
1510  return atom_size;
1511 }
1512 
1513 TrackFragmentHeader::TrackFragmentHeader()
1514  : track_id(0),
1515  sample_description_index(0),
1516  default_sample_duration(0),
1517  default_sample_size(0),
1518  default_sample_flags(0) {}
1519 
1520 TrackFragmentHeader::~TrackFragmentHeader() {}
1521 FourCC TrackFragmentHeader::BoxType() const { return FOURCC_TFHD; }
1522 
1524  RCHECK(FullBox::ReadWrite(buffer) &&
1525  buffer->ReadWriteUInt32(&track_id));
1526 
1527  if (flags & kBaseDataOffsetPresentMask) {
1528  // MSE requires 'default-base-is-moof' to be set and
1529  // 'base-data-offset-present' not to be set. We omit these checks as some
1530  // valid files in the wild don't follow these rules, though they use moof as
1531  // base.
1532  uint64_t base_data_offset;
1533  RCHECK(buffer->ReadWriteUInt64(&base_data_offset));
1534  DLOG(WARNING) << "base-data-offset-present is not expected. Assumes "
1535  "default-base-is-moof.";
1536  }
1537 
1538  if (flags & kSampleDescriptionIndexPresentMask) {
1539  RCHECK(buffer->ReadWriteUInt32(&sample_description_index));
1540  } else if (buffer->Reading()) {
1541  sample_description_index = 0;
1542  }
1543 
1544  if (flags & kDefaultSampleDurationPresentMask) {
1545  RCHECK(buffer->ReadWriteUInt32(&default_sample_duration));
1546  } else if (buffer->Reading()) {
1547  default_sample_duration = 0;
1548  }
1549 
1550  if (flags & kDefaultSampleSizePresentMask) {
1551  RCHECK(buffer->ReadWriteUInt32(&default_sample_size));
1552  } else if (buffer->Reading()) {
1553  default_sample_size = 0;
1554  }
1555 
1556  if (flags & kDefaultSampleFlagsPresentMask)
1557  RCHECK(buffer->ReadWriteUInt32(&default_sample_flags));
1558  return true;
1559 }
1560 
1562  atom_size = kFullBoxSize + sizeof(track_id);
1563  if (flags & kSampleDescriptionIndexPresentMask)
1564  atom_size += sizeof(sample_description_index);
1565  if (flags & kDefaultSampleDurationPresentMask)
1566  atom_size += sizeof(default_sample_duration);
1567  if (flags & kDefaultSampleSizePresentMask)
1568  atom_size += sizeof(default_sample_size);
1569  if (flags & kDefaultSampleFlagsPresentMask)
1570  atom_size += sizeof(default_sample_flags);
1571  return atom_size;
1572 }
1573 
1574 TrackFragmentRun::TrackFragmentRun() : sample_count(0), data_offset(0) {}
1575 TrackFragmentRun::~TrackFragmentRun() {}
1576 FourCC TrackFragmentRun::BoxType() const { return FOURCC_TRUN; }
1577 
1579  if (!buffer->Reading()) {
1580  // Determine whether version 0 or version 1 should be used.
1581  // Use version 0 if possible, use version 1 if there is a negative
1582  // sample_offset value.
1583  version = 0;
1584  if (flags & kSampleCompTimeOffsetsPresentMask) {
1585  for (uint32_t i = 0; i < sample_count; ++i) {
1586  if (sample_composition_time_offsets[i] < 0) {
1587  version = 1;
1588  break;
1589  }
1590  }
1591  }
1592  }
1593 
1594  RCHECK(FullBox::ReadWrite(buffer) &&
1595  buffer->ReadWriteUInt32(&sample_count));
1596 
1597  bool data_offset_present = (flags & kDataOffsetPresentMask) != 0;
1598  bool first_sample_flags_present = (flags & kFirstSampleFlagsPresentMask) != 0;
1599  bool sample_duration_present = (flags & kSampleDurationPresentMask) != 0;
1600  bool sample_size_present = (flags & kSampleSizePresentMask) != 0;
1601  bool sample_flags_present = (flags & kSampleFlagsPresentMask) != 0;
1602  bool sample_composition_time_offsets_present =
1603  (flags & kSampleCompTimeOffsetsPresentMask) != 0;
1604 
1605  if (data_offset_present) {
1606  RCHECK(buffer->ReadWriteUInt32(&data_offset));
1607  } else {
1608  // NOTE: If the data-offset is not present, then the data for this run
1609  // starts immediately after the data of the previous run, or at the
1610  // base-data-offset defined by the track fragment header if this is the
1611  // first run in a track fragment. If the data-offset is present, it is
1612  // relative to the base-data-offset established in the track fragment
1613  // header.
1614  NOTIMPLEMENTED();
1615  }
1616 
1617  uint32_t first_sample_flags;
1618 
1619  if (buffer->Reading()) {
1620  if (first_sample_flags_present)
1621  RCHECK(buffer->ReadWriteUInt32(&first_sample_flags));
1622 
1623  if (sample_duration_present)
1624  sample_durations.resize(sample_count);
1625  if (sample_size_present)
1626  sample_sizes.resize(sample_count);
1627  if (sample_flags_present)
1628  sample_flags.resize(sample_count);
1629  if (sample_composition_time_offsets_present)
1630  sample_composition_time_offsets.resize(sample_count);
1631  } else {
1632  if (first_sample_flags_present) {
1633  first_sample_flags = sample_flags[0];
1634  DCHECK(sample_flags.size() == 1);
1635  RCHECK(buffer->ReadWriteUInt32(&first_sample_flags));
1636  }
1637 
1638  if (sample_duration_present)
1639  DCHECK(sample_durations.size() == sample_count);
1640  if (sample_size_present)
1641  DCHECK(sample_sizes.size() == sample_count);
1642  if (sample_flags_present)
1643  DCHECK(sample_flags.size() == sample_count);
1644  if (sample_composition_time_offsets_present)
1645  DCHECK(sample_composition_time_offsets.size() == sample_count);
1646  }
1647 
1648  for (uint32_t i = 0; i < sample_count; ++i) {
1649  if (sample_duration_present)
1650  RCHECK(buffer->ReadWriteUInt32(&sample_durations[i]));
1651  if (sample_size_present)
1652  RCHECK(buffer->ReadWriteUInt32(&sample_sizes[i]));
1653  if (sample_flags_present)
1654  RCHECK(buffer->ReadWriteUInt32(&sample_flags[i]));
1655 
1656  if (sample_composition_time_offsets_present) {
1657  if (version == 0) {
1658  uint32_t sample_offset = sample_composition_time_offsets[i];
1659  RCHECK(buffer->ReadWriteUInt32(&sample_offset));
1660  sample_composition_time_offsets[i] = sample_offset;
1661  } else {
1662  int32_t sample_offset = sample_composition_time_offsets[i];
1663  RCHECK(buffer->ReadWriteInt32(&sample_offset));
1664  sample_composition_time_offsets[i] = sample_offset;
1665  }
1666  }
1667  }
1668 
1669  if (buffer->Reading()) {
1670  if (first_sample_flags_present) {
1671  if (sample_flags.size() == 0) {
1672  sample_flags.push_back(first_sample_flags);
1673  } else {
1674  sample_flags[0] = first_sample_flags;
1675  }
1676  }
1677  }
1678  return true;
1679 }
1680 
1682  atom_size = kFullBoxSize + sizeof(sample_count);
1683  if (flags & kDataOffsetPresentMask)
1684  atom_size += sizeof(data_offset);
1685  if (flags & kFirstSampleFlagsPresentMask)
1686  atom_size += sizeof(uint32_t);
1687  uint32_t fields = (flags & kSampleDurationPresentMask ? 1 : 0) +
1688  (flags & kSampleSizePresentMask ? 1 : 0) +
1689  (flags & kSampleFlagsPresentMask ? 1 : 0) +
1690  (flags & kSampleCompTimeOffsetsPresentMask ? 1 : 0);
1691  atom_size += fields * sizeof(uint32_t) * sample_count;
1692  return atom_size;
1693 }
1694 
1695 SampleToGroup::SampleToGroup() : grouping_type(0), grouping_type_parameter(0) {}
1696 SampleToGroup::~SampleToGroup() {}
1697 FourCC SampleToGroup::BoxType() const { return FOURCC_SBGP; }
1698 
1700  RCHECK(FullBox::ReadWrite(buffer) &&
1701  buffer->ReadWriteUInt32(&grouping_type));
1702  if (version == 1)
1703  RCHECK(buffer->ReadWriteUInt32(&grouping_type_parameter));
1704 
1705  if (grouping_type != FOURCC_SEIG) {
1706  DCHECK(buffer->Reading());
1707  DLOG(WARNING) << "Sample group "
1708  << FourCCToString(static_cast<FourCC>(grouping_type))
1709  << " is not supported.";
1710  return true;
1711  }
1712 
1713  uint32_t count = entries.size();
1714  RCHECK(buffer->ReadWriteUInt32(&count));
1715  entries.resize(count);
1716  for (uint32_t i = 0; i < count; ++i) {
1717  RCHECK(buffer->ReadWriteUInt32(&entries[i].sample_count) &&
1718  buffer->ReadWriteUInt32(&entries[i].group_description_index));
1719  }
1720  return true;
1721 }
1722 
1724  // This box is optional. Skip it if it is not used.
1725  atom_size = 0;
1726  if (!entries.empty()) {
1727  atom_size = kFullBoxSize + sizeof(grouping_type) +
1728  (version == 1 ? sizeof(grouping_type_parameter) : 0) +
1729  sizeof(uint32_t) + entries.size() * sizeof(entries[0]);
1730  }
1731  return atom_size;
1732 }
1733 
1734 CencSampleEncryptionInfoEntry::CencSampleEncryptionInfoEntry()
1735  : is_encrypted(false), iv_size(0) {
1736 }
1737 CencSampleEncryptionInfoEntry::~CencSampleEncryptionInfoEntry() {};
1738 
1739 SampleGroupDescription::SampleGroupDescription() : grouping_type(0) {}
1740 SampleGroupDescription::~SampleGroupDescription() {}
1741 FourCC SampleGroupDescription::BoxType() const { return FOURCC_SGPD; }
1742 
1744  RCHECK(FullBox::ReadWrite(buffer) &&
1745  buffer->ReadWriteUInt32(&grouping_type));
1746 
1747  if (grouping_type != FOURCC_SEIG) {
1748  DCHECK(buffer->Reading());
1749  DLOG(WARNING) << "Sample group '" << grouping_type << "' is not supported.";
1750  return true;
1751  }
1752 
1753  const size_t kEntrySize = sizeof(uint32_t) + kCencKeyIdSize;
1754  uint32_t default_length = 0;
1755  if (version == 1) {
1756  if (buffer->Reading()) {
1757  RCHECK(buffer->ReadWriteUInt32(&default_length));
1758  RCHECK(default_length == 0 || default_length >= kEntrySize);
1759  } else {
1760  default_length = kEntrySize;
1761  RCHECK(buffer->ReadWriteUInt32(&default_length));
1762  }
1763  }
1764 
1765  uint32_t count = entries.size();
1766  RCHECK(buffer->ReadWriteUInt32(&count));
1767  entries.resize(count);
1768  for (uint32_t i = 0; i < count; ++i) {
1769  if (version == 1) {
1770  if (buffer->Reading() && default_length == 0) {
1771  uint32_t description_length = 0;
1772  RCHECK(buffer->ReadWriteUInt32(&description_length));
1773  RCHECK(description_length >= kEntrySize);
1774  }
1775  }
1776 
1777  if (!buffer->Reading()) {
1778  if (entries[i].key_id.size() != kCencKeyIdSize) {
1779  LOG(WARNING) << "CENC defines key id length of " << kCencKeyIdSize
1780  << " bytes; got " << entries[i].key_id.size()
1781  << ". Resized accordingly.";
1782  entries[i].key_id.resize(kCencKeyIdSize);
1783  }
1784  }
1785 
1786  uint8_t flag = entries[i].is_encrypted ? 1 : 0;
1787  RCHECK(buffer->IgnoreBytes(2) && // reserved.
1788  buffer->ReadWriteUInt8(&flag) &&
1789  buffer->ReadWriteUInt8(&entries[i].iv_size) &&
1790  buffer->ReadWriteVector(&entries[i].key_id, kCencKeyIdSize));
1791 
1792  if (buffer->Reading()) {
1793  entries[i].is_encrypted = (flag != 0);
1794  if (entries[i].is_encrypted) {
1795  RCHECK(entries[i].iv_size == 8 || entries[i].iv_size == 16);
1796  } else {
1797  RCHECK(entries[i].iv_size == 0);
1798  }
1799  }
1800  }
1801  return true;
1802 }
1803 
1805  // Version 0 is obsoleted, so always generate version 1 box.
1806  version = 1;
1807  // This box is optional. Skip it if it is not used.
1808  atom_size = 0;
1809  if (!entries.empty()) {
1810  const size_t kEntrySize = sizeof(uint32_t) + kCencKeyIdSize;
1811  atom_size = kFullBoxSize + sizeof(grouping_type) +
1812  (version == 1 ? sizeof(uint32_t) : 0) + sizeof(uint32_t) +
1813  entries.size() * kEntrySize;
1814  }
1815  return atom_size;
1816 }
1817 
1818 TrackFragment::TrackFragment() : decode_time_absent(false) {}
1819 TrackFragment::~TrackFragment() {}
1820 FourCC TrackFragment::BoxType() const { return FOURCC_TRAF; }
1821 
1823  RCHECK(Box::ReadWrite(buffer) &&
1824  buffer->PrepareChildren() &&
1825  buffer->ReadWriteChild(&header));
1826  if (buffer->Reading()) {
1827  DCHECK(buffer->reader());
1828  decode_time_absent = !buffer->reader()->ChildExist(&decode_time);
1829  if (!decode_time_absent)
1830  RCHECK(buffer->ReadWriteChild(&decode_time));
1831  RCHECK(buffer->reader()->TryReadChildren(&runs));
1832 
1833  // There could be multiple SampleGroupDescription and SampleToGroup boxes
1834  // with different grouping types. For common encryption, the relevant
1835  // grouping type is 'seig'. Continue reading until 'seig' is found, or
1836  // until running out of child boxes.
1837  while (sample_to_group.grouping_type != FOURCC_SEIG &&
1838  buffer->reader()->ChildExist(&sample_to_group)) {
1839  RCHECK(buffer->reader()->ReadChild(&sample_to_group));
1840  }
1841  while (sample_group_description.grouping_type != FOURCC_SEIG &&
1842  buffer->reader()->ChildExist(&sample_group_description)) {
1843  RCHECK(buffer->reader()->ReadChild(&sample_group_description));
1844  }
1845  } else {
1846  if (!decode_time_absent)
1847  RCHECK(buffer->ReadWriteChild(&decode_time));
1848  for (uint32_t i = 0; i < runs.size(); ++i)
1849  RCHECK(runs[i].ReadWrite(buffer));
1850  RCHECK(buffer->TryReadWriteChild(&sample_to_group) &&
1851  buffer->TryReadWriteChild(&sample_group_description));
1852  }
1853  return buffer->TryReadWriteChild(&auxiliary_size) &&
1854  buffer->TryReadWriteChild(&auxiliary_offset);
1855 }
1856 
1858  atom_size = kBoxSize + header.ComputeSize() + decode_time.ComputeSize() +
1859  sample_to_group.ComputeSize() +
1860  sample_group_description.ComputeSize() +
1861  auxiliary_size.ComputeSize() + auxiliary_offset.ComputeSize();
1862  for (uint32_t i = 0; i < runs.size(); ++i)
1863  atom_size += runs[i].ComputeSize();
1864  return atom_size;
1865 }
1866 
1867 MovieFragment::MovieFragment() {}
1868 MovieFragment::~MovieFragment() {}
1869 FourCC MovieFragment::BoxType() const { return FOURCC_MOOF; }
1870 
1872  RCHECK(Box::ReadWrite(buffer) &&
1873  buffer->PrepareChildren() &&
1874  buffer->ReadWriteChild(&header));
1875  if (buffer->Reading()) {
1876  BoxReader* reader = buffer->reader();
1877  DCHECK(reader);
1878  RCHECK(reader->ReadChildren(&tracks) &&
1879  reader->TryReadChildren(&pssh));
1880  } else {
1881  for (uint32_t i = 0; i < tracks.size(); ++i)
1882  RCHECK(tracks[i].ReadWrite(buffer));
1883  for (uint32_t i = 0; i < pssh.size(); ++i)
1884  RCHECK(pssh[i].ReadWrite(buffer));
1885  }
1886  return true;
1887 }
1888 
1890  atom_size = kBoxSize + header.ComputeSize();
1891  for (uint32_t i = 0; i < tracks.size(); ++i)
1892  atom_size += tracks[i].ComputeSize();
1893  for (uint32_t i = 0; i < pssh.size(); ++i)
1894  atom_size += pssh[i].ComputeSize();
1895  return atom_size;
1896 }
1897 
1898 SegmentIndex::SegmentIndex()
1899  : reference_id(0),
1900  timescale(0),
1901  earliest_presentation_time(0),
1902  first_offset(0) {}
1903 SegmentIndex::~SegmentIndex() {}
1904 FourCC SegmentIndex::BoxType() const { return FOURCC_SIDX; }
1905 
1907  RCHECK(FullBox::ReadWrite(buffer) &&
1908  buffer->ReadWriteUInt32(&reference_id) &&
1909  buffer->ReadWriteUInt32(&timescale));
1910 
1911  size_t num_bytes = (version == 1) ? sizeof(uint64_t) : sizeof(uint32_t);
1912  RCHECK(
1913  buffer->ReadWriteUInt64NBytes(&earliest_presentation_time, num_bytes) &&
1914  buffer->ReadWriteUInt64NBytes(&first_offset, num_bytes));
1915 
1916  uint16_t reference_count = references.size();
1917  RCHECK(buffer->IgnoreBytes(2) && // reserved.
1918  buffer->ReadWriteUInt16(&reference_count));
1919  references.resize(reference_count);
1920 
1921  uint32_t reference_type_size;
1922  uint32_t sap;
1923  for (uint32_t i = 0; i < reference_count; ++i) {
1924  if (!buffer->Reading()) {
1925  reference_type_size = references[i].referenced_size;
1926  if (references[i].reference_type)
1927  reference_type_size |= (1 << 31);
1928  sap = (references[i].sap_type << 28) | references[i].sap_delta_time;
1929  if (references[i].starts_with_sap)
1930  sap |= (1 << 31);
1931  }
1932  RCHECK(buffer->ReadWriteUInt32(&reference_type_size) &&
1933  buffer->ReadWriteUInt32(&references[i].subsegment_duration) &&
1934  buffer->ReadWriteUInt32(&sap));
1935  if (buffer->Reading()) {
1936  references[i].reference_type = (reference_type_size >> 31) ? true : false;
1937  references[i].referenced_size = reference_type_size & ~(1 << 31);
1938  references[i].starts_with_sap = (sap >> 31) ? true : false;
1939  references[i].sap_type =
1940  static_cast<SegmentReference::SAPType>((sap >> 28) & 0x07);
1941  references[i].sap_delta_time = sap & ~(0xF << 28);
1942  }
1943  }
1944  return true;
1945 }
1946 
1948  version = IsFitIn32Bits(earliest_presentation_time, first_offset) ? 0 : 1;
1949  atom_size = kFullBoxSize + sizeof(reference_id) + sizeof(timescale) +
1950  sizeof(uint32_t) * (1 + version) * 2 + 2 * sizeof(uint16_t) +
1951  3 * sizeof(uint32_t) * references.size();
1952  return atom_size;
1953 }
1954 
1955 MediaData::MediaData() : data_size(0) {}
1956 MediaData::~MediaData() {}
1957 FourCC MediaData::BoxType() const { return FOURCC_MDAT; }
1958 
1959 void MediaData::Write(BufferWriter* buffer) {
1960  buffer->AppendInt(ComputeSize());
1961  buffer->AppendInt(static_cast<uint32_t>(BoxType()));
1962 }
1963 
1964 uint32_t MediaData::ComputeSize() {
1965  return kBoxSize + data_size;
1966 }
1967 
1968 } // namespace mp4
1969 } // namespace media
1970 } // namespace edash_packager
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadChildren(std::vector< T > *children) WARN_UNUSED_RESULT
Definition: box_reader.h:133
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadChild(Box *child) WARN_UNUSED_RESULT
Definition: box_reader.cc:123
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
virtual bool ReadWrite(BoxBuffer *buffer)
Read/write the mp4 box from/to BoxBuffer.
Definition: box.cc:36
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ChildExist(Box *child) WARN_UNUSED_RESULT
Definition: box_reader.cc:136
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWriteUInt64NBytes(uint64_t *v, size_t num_bytes)
Definition: box_buffer.h:107
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
Definition: box.cc:50
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool IgnoreBytes(size_t num_bytes)
Definition: box_buffer.h:167
A class to read bit streams.
Definition: bit_reader.h:17
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadAllChildren(std::vector< T > *children) WARN_UNUSED_RESULT
Definition: box_reader.h:163
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
void Write(BufferWriter *writer)
Definition: box.cc:25
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool TryReadChildren(std::vector< T > *children) WARN_UNUSED_RESULT
Definition: box_reader.h:139
Class for reading MP4 boxes.
Definition: box_reader.h:24
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.