5 #include "packager/media/formats/mp4/box_definitions.h"
9 #include "packager/base/logging.h"
10 #include "packager/media/base/bit_reader.h"
11 #include "packager/media/base/macros.h"
12 #include "packager/media/base/rcheck.h"
13 #include "packager/media/formats/mp4/box_buffer.h"
16 const uint32_t kFourCCSize = 4;
19 const uint32_t kCencKeyIdSize = 16;
22 const uint8_t kUnityMatrix[] = {0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
23 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0,
24 0, 0, 0, 0, 0, 0, 0, 0, 0x40, 0, 0, 0};
27 const char kVideoHandlerName[] =
"VideoHandler";
28 const char kAudioHandlerName[] =
"SoundHandler";
29 const char kTextHandlerName[] =
"TextHandler";
32 const uint32_t kVideoResolution = 0x00480000;
33 const uint16_t kVideoFrameCount = 1;
34 const uint16_t kVideoDepth = 0x0018;
36 const uint32_t kCompressorNameSize = 32u;
37 const char kAvcCompressorName[] =
"\012AVC Coding";
38 const char kHevcCompressorName[] =
"\013HEVC Coding";
39 const char kVpcCompressorName[] =
"\012VPC Coding";
43 const int kCueSourceIdNotSet = -1;
45 const size_t kInvalidIvSize = 1;
49 bool IsIvSizeValid(
size_t per_sample_iv_size) {
50 return per_sample_iv_size == 0 || per_sample_iv_size == 8 ||
51 per_sample_iv_size == 16;
68 const uint8_t kDdtsExtraData[] = {0xe4, 0x7c, 0, 4, 0, 0x0f, 0};
71 const uint32_t kID3v2HeaderSize = 10;
72 const char kID3v2Identifier[] =
"ID3";
73 const uint16_t kID3v2Version = 0x0400;
76 bool IsFitIn32Bits(uint64_t a) {
77 return a <= std::numeric_limits<uint32_t>::max();
80 bool IsFitIn32Bits(int64_t a) {
81 return a <= std::numeric_limits<int32_t>::max() &&
82 a >= std::numeric_limits<int32_t>::min();
85 template <
typename T1,
typename T2>
86 bool IsFitIn32Bits(T1 a1, T2 a2) {
87 return IsFitIn32Bits(a1) && IsFitIn32Bits(a2);
90 template <
typename T1,
typename T2,
typename T3>
91 bool IsFitIn32Bits(T1 a1, T2 a2, T3 a3) {
92 return IsFitIn32Bits(a1) && IsFitIn32Bits(a2) && IsFitIn32Bits(a3);
97 namespace edash_packager {
103 TrackType FourCCToTrackType(FourCC fourcc) {
116 FourCC TrackTypeToFourCC(TrackType track_type) {
117 switch (track_type) {
131 FileType::FileType() : major_brand(FOURCC_NULL), minor_version(0) {}
132 FileType::~FileType() {}
135 bool FileType::ReadWriteInternal(
BoxBuffer* buffer) {
137 buffer->ReadWriteFourCC(&major_brand) &&
138 buffer->ReadWriteUInt32(&minor_version));
141 RCHECK(buffer->
BytesLeft() %
sizeof(FourCC) == 0);
142 num_brands = buffer->
BytesLeft() /
sizeof(FourCC);
143 compatible_brands.resize(num_brands);
145 num_brands = compatible_brands.size();
147 for (
size_t i = 0; i < num_brands; ++i)
148 RCHECK(buffer->ReadWriteFourCC(&compatible_brands[i]));
152 uint32_t FileType::ComputeSizeInternal() {
153 return HeaderSize() + kFourCCSize +
sizeof(minor_version) +
154 kFourCCSize * compatible_brands.size();
159 ProtectionSystemSpecificHeader::ProtectionSystemSpecificHeader() {}
160 ProtectionSystemSpecificHeader::~ProtectionSystemSpecificHeader() {}
163 bool ProtectionSystemSpecificHeader::ReadWriteInternal(
BoxBuffer* buffer) {
167 raw_box.assign(reader->data(), reader->data() + reader->size());
169 DCHECK(!raw_box.empty());
170 buffer->
writer()->AppendVector(raw_box);
176 uint32_t ProtectionSystemSpecificHeader::ComputeSizeInternal() {
177 return raw_box.size();
180 SampleAuxiliaryInformationOffset::SampleAuxiliaryInformationOffset() {}
181 SampleAuxiliaryInformationOffset::~SampleAuxiliaryInformationOffset() {}
184 bool SampleAuxiliaryInformationOffset::ReadWriteInternal(
BoxBuffer* buffer) {
189 uint32_t count = offsets.size();
190 RCHECK(buffer->ReadWriteUInt32(&count));
191 offsets.resize(count);
193 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
194 for (uint32_t i = 0; i < count; ++i)
199 uint32_t SampleAuxiliaryInformationOffset::ComputeSizeInternal() {
201 if (offsets.size() == 0)
203 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
204 return HeaderSize() +
sizeof(uint32_t) + num_bytes * offsets.size();
207 SampleAuxiliaryInformationSize::SampleAuxiliaryInformationSize()
208 : default_sample_info_size(0), sample_count(0) {}
209 SampleAuxiliaryInformationSize::~SampleAuxiliaryInformationSize() {}
212 bool SampleAuxiliaryInformationSize::ReadWriteInternal(
BoxBuffer* buffer) {
217 RCHECK(buffer->ReadWriteUInt8(&default_sample_info_size) &&
218 buffer->ReadWriteUInt32(&sample_count));
219 if (default_sample_info_size == 0)
220 RCHECK(buffer->ReadWriteVector(&sample_info_sizes, sample_count));
224 uint32_t SampleAuxiliaryInformationSize::ComputeSizeInternal() {
226 if (sample_count == 0)
228 return HeaderSize() +
sizeof(default_sample_info_size) +
229 sizeof(sample_count) +
230 (default_sample_info_size == 0 ? sample_info_sizes.size() : 0);
233 SampleEncryptionEntry::SampleEncryptionEntry() {}
234 SampleEncryptionEntry::~SampleEncryptionEntry() {}
239 DCHECK(IsIvSizeValid(iv_size));
242 RCHECK(buffer->ReadWriteVector(&initialization_vector, iv_size));
244 if (!has_subsamples) {
249 uint16_t subsample_count = subsamples.size();
250 RCHECK(buffer->ReadWriteUInt16(&subsample_count));
251 RCHECK(subsample_count > 0);
252 subsamples.resize(subsample_count);
253 for (
auto& subsample : subsamples) {
254 RCHECK(buffer->ReadWriteUInt16(&subsample.clear_bytes) &&
255 buffer->ReadWriteUInt32(&subsample.cipher_bytes));
263 DCHECK(IsIvSizeValid(iv_size));
266 initialization_vector.resize(iv_size);
267 RCHECK(reader->ReadToVector(&initialization_vector, iv_size));
269 if (!has_subsamples) {
274 uint16_t subsample_count;
275 RCHECK(reader->Read2(&subsample_count));
276 RCHECK(subsample_count > 0);
277 subsamples.resize(subsample_count);
278 for (
auto& subsample : subsamples) {
279 RCHECK(reader->Read2(&subsample.clear_bytes) &&
280 reader->Read4(&subsample.cipher_bytes));
286 const uint32_t subsample_entry_size =
sizeof(uint16_t) +
sizeof(uint32_t);
287 const uint16_t subsample_count = subsamples.size();
288 return initialization_vector.size() +
289 (subsample_count > 0 ? (
sizeof(subsample_count) +
290 subsample_entry_size * subsample_count)
296 for (uint32_t i = 0; i < subsamples.size(); ++i)
297 size += subsamples[i].clear_bytes + subsamples[i].cipher_bytes;
301 SampleEncryption::SampleEncryption() : iv_size(kInvalidIvSize) {}
302 SampleEncryption::~SampleEncryption() {}
305 bool SampleEncryption::ReadWriteInternal(
BoxBuffer* buffer) {
310 if (buffer->
Reading() && iv_size == kInvalidIvSize) {
316 if (!IsIvSizeValid(iv_size)) {
318 <<
"IV_size can only be 8 or 16 or 0 for constant iv, but seeing "
323 uint32_t sample_count = sample_encryption_entries.size();
324 RCHECK(buffer->ReadWriteUInt32(&sample_count));
326 sample_encryption_entries.resize(sample_count);
327 for (
auto& sample_encryption_entry : sample_encryption_entries) {
328 RCHECK(sample_encryption_entry.ReadWrite(
329 iv_size, flags & kUseSubsampleEncryption, buffer));
334 uint32_t SampleEncryption::ComputeSizeInternal() {
335 const uint32_t sample_count = sample_encryption_entries.size();
336 if (sample_count == 0) {
341 DCHECK(IsIvSizeValid(iv_size));
343 if (flags & kUseSubsampleEncryption) {
344 for (
const SampleEncryptionEntry& sample_encryption_entry :
345 sample_encryption_entries) {
346 box_size += sample_encryption_entry.ComputeSize();
349 box_size += sample_count * iv_size;
356 std::vector<SampleEncryptionEntry>* sample_encryption_entries)
const {
357 DCHECK(IsIvSizeValid(iv_size));
361 uint32_t sample_count = 0;
362 RCHECK(reader.Read4(&sample_count));
364 sample_encryption_entries->resize(sample_count);
365 for (
auto& sample_encryption_entry : *sample_encryption_entries) {
366 RCHECK(sample_encryption_entry.ParseFromBuffer(
367 iv_size, flags & kUseSubsampleEncryption, &reader));
372 OriginalFormat::OriginalFormat() : format(FOURCC_NULL) {}
373 OriginalFormat::~OriginalFormat() {}
376 bool OriginalFormat::ReadWriteInternal(
BoxBuffer* buffer) {
380 uint32_t OriginalFormat::ComputeSizeInternal() {
384 SchemeType::SchemeType() : type(FOURCC_NULL), version(0) {}
385 SchemeType::~SchemeType() {}
388 bool SchemeType::ReadWriteInternal(
BoxBuffer* buffer) {
390 buffer->ReadWriteFourCC(&type) &&
391 buffer->ReadWriteUInt32(&version));
395 uint32_t SchemeType::ComputeSizeInternal() {
396 return HeaderSize() + kFourCCSize +
sizeof(version);
399 TrackEncryption::TrackEncryption()
400 : default_is_protected(0),
401 default_per_sample_iv_size(0),
403 default_crypt_byte_block(0),
404 default_skip_byte_block(0) {}
405 TrackEncryption::~TrackEncryption() {}
408 bool TrackEncryption::ReadWriteInternal(
BoxBuffer* buffer) {
410 if (default_kid.size() != kCencKeyIdSize) {
411 LOG(WARNING) <<
"CENC defines key id length of " << kCencKeyIdSize
412 <<
" bytes; got " << default_kid.size()
413 <<
". Resized accordingly.";
414 default_kid.resize(kCencKeyIdSize);
416 RCHECK(default_crypt_byte_block < 16 && default_skip_byte_block < 16);
417 if (default_crypt_byte_block != 0 && default_skip_byte_block != 0) {
426 uint8_t pattern = default_crypt_byte_block << 4 | default_skip_byte_block;
427 RCHECK(buffer->ReadWriteUInt8(&pattern));
428 default_crypt_byte_block = pattern >> 4;
429 default_skip_byte_block = pattern & 0x0F;
431 RCHECK(buffer->ReadWriteUInt8(&default_is_protected) &&
432 buffer->ReadWriteUInt8(&default_per_sample_iv_size) &&
433 buffer->ReadWriteVector(&default_kid, kCencKeyIdSize));
435 if (default_is_protected == 1) {
436 if (default_per_sample_iv_size == 0) {
437 uint8_t default_constant_iv_size = default_constant_iv.size();
438 RCHECK(buffer->ReadWriteUInt8(&default_constant_iv_size));
439 RCHECK(default_constant_iv_size == 8 || default_constant_iv_size == 16);
440 RCHECK(buffer->ReadWriteVector(&default_constant_iv,
441 default_constant_iv_size));
443 RCHECK(default_per_sample_iv_size == 8 ||
444 default_per_sample_iv_size == 16);
445 RCHECK(default_constant_iv.empty());
450 RCHECK(default_is_protected == 0);
451 RCHECK(default_per_sample_iv_size == 0);
452 RCHECK(default_constant_iv.empty());
457 uint32_t TrackEncryption::ComputeSizeInternal() {
458 return HeaderSize() +
sizeof(uint32_t) + kCencKeyIdSize +
459 (default_constant_iv.empty() ? 0 : (
sizeof(uint8_t) +
460 default_constant_iv.size()));
463 SchemeInfo::SchemeInfo() {}
464 SchemeInfo::~SchemeInfo() {}
467 bool SchemeInfo::ReadWriteInternal(
BoxBuffer* buffer) {
473 uint32_t SchemeInfo::ComputeSizeInternal() {
477 ProtectionSchemeInfo::ProtectionSchemeInfo() {}
478 ProtectionSchemeInfo::~ProtectionSchemeInfo() {}
481 bool ProtectionSchemeInfo::ReadWriteInternal(
BoxBuffer* buffer) {
486 RCHECK(type.type == FOURCC_cenc || type.type == FOURCC_cbc1 ||
487 type.type == FOURCC_cens || type.type == FOURCC_cbcs);
496 uint32_t ProtectionSchemeInfo::ComputeSizeInternal() {
498 if (format.format == FOURCC_NULL)
504 MovieHeader::MovieHeader()
506 modification_time(0),
512 MovieHeader::~MovieHeader() {}
515 bool MovieHeader::ReadWriteInternal(
BoxBuffer* buffer) {
518 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
521 buffer->ReadWriteUInt32(×cale) &&
524 std::vector<uint8_t> matrix(kUnityMatrix,
525 kUnityMatrix + arraysize(kUnityMatrix));
526 RCHECK(buffer->ReadWriteInt32(&rate) &&
527 buffer->ReadWriteInt16(&volume) &&
529 buffer->ReadWriteVector(&matrix, matrix.size()) &&
531 buffer->ReadWriteUInt32(&next_track_id));
535 uint32_t MovieHeader::ComputeSizeInternal() {
536 version = IsFitIn32Bits(creation_time, modification_time, duration) ? 0 : 1;
537 return HeaderSize() +
sizeof(uint32_t) * (1 + version) * 3 +
538 sizeof(timescale) +
sizeof(rate) +
sizeof(volume) +
539 sizeof(next_track_id) +
sizeof(kUnityMatrix) + 10 +
543 TrackHeader::TrackHeader()
545 modification_time(0),
553 flags = kTrackEnabled | kTrackInMovie;
555 TrackHeader::~TrackHeader() {}
558 bool TrackHeader::ReadWriteInternal(
BoxBuffer* buffer) {
561 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
564 buffer->ReadWriteUInt32(&track_id) &&
571 volume = (width != 0 && height != 0) ? 0 : 0x100;
573 std::vector<uint8_t> matrix(kUnityMatrix,
574 kUnityMatrix + arraysize(kUnityMatrix));
576 buffer->ReadWriteInt16(&layer) &&
577 buffer->ReadWriteInt16(&alternate_group) &&
578 buffer->ReadWriteInt16(&volume) &&
580 buffer->ReadWriteVector(&matrix, matrix.size()) &&
581 buffer->ReadWriteUInt32(&width) &&
582 buffer->ReadWriteUInt32(&height));
586 uint32_t TrackHeader::ComputeSizeInternal() {
587 version = IsFitIn32Bits(creation_time, modification_time, duration) ? 0 : 1;
589 sizeof(uint32_t) * (1 + version) * 3 +
sizeof(layer) +
590 sizeof(alternate_group) +
sizeof(volume) +
sizeof(width) +
591 sizeof(height) +
sizeof(kUnityMatrix) + 14;
594 SampleDescription::SampleDescription() : type(kInvalid) {}
595 SampleDescription::~SampleDescription() {}
598 bool SampleDescription::ReadWriteInternal(
BoxBuffer* buffer) {
602 count = video_entries.size();
605 count = audio_entries.size();
608 count = text_entries.size();
611 NOTIMPLEMENTED() <<
"SampleDecryption type " << type
612 <<
" is not handled. Skipping.";
615 buffer->ReadWriteUInt32(&count));
618 BoxReader* reader = buffer->
reader();
620 video_entries.clear();
621 audio_entries.clear();
624 if (type == kVideo) {
625 RCHECK(reader->ReadAllChildren(&video_entries));
626 RCHECK(video_entries.size() == count);
627 }
else if (type == kAudio) {
628 RCHECK(reader->ReadAllChildren(&audio_entries));
629 RCHECK(audio_entries.size() == count);
630 }
else if (type == kText) {
631 RCHECK(reader->ReadAllChildren(&text_entries));
632 RCHECK(text_entries.size() == count);
635 DCHECK_LT(0u, count);
636 if (type == kVideo) {
637 for (uint32_t i = 0; i < count; ++i)
639 }
else if (type == kAudio) {
640 for (uint32_t i = 0; i < count; ++i)
642 }
else if (type == kText) {
643 for (uint32_t i = 0; i < count; ++i)
652 uint32_t SampleDescription::ComputeSizeInternal() {
653 uint32_t box_size =
HeaderSize() +
sizeof(uint32_t);
654 if (type == kVideo) {
655 for (uint32_t i = 0; i < video_entries.size(); ++i)
657 }
else if (type == kAudio) {
658 for (uint32_t i = 0; i < audio_entries.size(); ++i)
660 }
else if (type == kText) {
661 for (uint32_t i = 0; i < text_entries.size(); ++i)
667 DecodingTimeToSample::DecodingTimeToSample() {}
668 DecodingTimeToSample::~DecodingTimeToSample() {}
671 bool DecodingTimeToSample::ReadWriteInternal(
BoxBuffer* buffer) {
672 uint32_t count = decoding_time.size();
674 buffer->ReadWriteUInt32(&count));
676 decoding_time.resize(count);
677 for (uint32_t i = 0; i < count; ++i) {
678 RCHECK(buffer->ReadWriteUInt32(&decoding_time[i].sample_count) &&
679 buffer->ReadWriteUInt32(&decoding_time[i].sample_delta));
684 uint32_t DecodingTimeToSample::ComputeSizeInternal() {
686 sizeof(DecodingTime) * decoding_time.size();
689 CompositionTimeToSample::CompositionTimeToSample() {}
690 CompositionTimeToSample::~CompositionTimeToSample() {}
693 bool CompositionTimeToSample::ReadWriteInternal(
BoxBuffer* buffer) {
694 uint32_t count = composition_offset.size();
700 for (uint32_t i = 0; i < count; ++i) {
701 if (composition_offset[i].sample_offset < 0) {
709 buffer->ReadWriteUInt32(&count));
711 composition_offset.resize(count);
712 for (uint32_t i = 0; i < count; ++i) {
713 RCHECK(buffer->ReadWriteUInt32(&composition_offset[i].sample_count));
716 uint32_t sample_offset = composition_offset[i].sample_offset;
717 RCHECK(buffer->ReadWriteUInt32(&sample_offset));
718 composition_offset[i].sample_offset = sample_offset;
720 int32_t sample_offset = composition_offset[i].sample_offset;
721 RCHECK(buffer->ReadWriteInt32(&sample_offset));
722 composition_offset[i].sample_offset = sample_offset;
728 uint32_t CompositionTimeToSample::ComputeSizeInternal() {
730 if (composition_offset.empty())
735 const uint32_t kCompositionOffsetSize =
sizeof(uint32_t) * 2;
737 kCompositionOffsetSize * composition_offset.size();
740 SampleToChunk::SampleToChunk() {}
741 SampleToChunk::~SampleToChunk() {}
744 bool SampleToChunk::ReadWriteInternal(
BoxBuffer* buffer) {
745 uint32_t count = chunk_info.size();
747 buffer->ReadWriteUInt32(&count));
749 chunk_info.resize(count);
750 for (uint32_t i = 0; i < count; ++i) {
751 RCHECK(buffer->ReadWriteUInt32(&chunk_info[i].first_chunk) &&
752 buffer->ReadWriteUInt32(&chunk_info[i].samples_per_chunk) &&
753 buffer->ReadWriteUInt32(&chunk_info[i].sample_description_index));
755 RCHECK(i == 0 ? chunk_info[i].first_chunk == 1
756 : chunk_info[i].first_chunk > chunk_info[i - 1].first_chunk);
761 uint32_t SampleToChunk::ComputeSizeInternal() {
763 sizeof(ChunkInfo) * chunk_info.size();
766 SampleSize::SampleSize() : sample_size(0), sample_count(0) {}
767 SampleSize::~SampleSize() {}
770 bool SampleSize::ReadWriteInternal(
BoxBuffer* buffer) {
772 buffer->ReadWriteUInt32(&sample_size) &&
773 buffer->ReadWriteUInt32(&sample_count));
775 if (sample_size == 0) {
777 sizes.resize(sample_count);
779 DCHECK(sample_count == sizes.size());
780 for (uint32_t i = 0; i < sample_count; ++i)
781 RCHECK(buffer->ReadWriteUInt32(&sizes[i]));
786 uint32_t SampleSize::ComputeSizeInternal() {
787 return HeaderSize() +
sizeof(sample_size) +
sizeof(sample_count) +
788 (sample_size == 0 ?
sizeof(uint32_t) * sizes.size() : 0);
791 CompactSampleSize::CompactSampleSize() : field_size(0) {}
792 CompactSampleSize::~CompactSampleSize() {}
795 bool CompactSampleSize::ReadWriteInternal(
BoxBuffer* buffer) {
796 uint32_t sample_count = sizes.size();
799 buffer->ReadWriteUInt8(&field_size) &&
800 buffer->ReadWriteUInt32(&sample_count));
803 sizes.resize(sample_count + (field_size == 4 ? 1 : 0), 0);
804 switch (field_size) {
806 for (uint32_t i = 0; i < sample_count; i += 2) {
809 RCHECK(buffer->ReadWriteUInt8(&size));
810 sizes[i] = size >> 4;
811 sizes[i + 1] = size & 0x0F;
813 DCHECK_LT(sizes[i], 16u);
814 DCHECK_LT(sizes[i + 1], 16u);
815 uint8_t size = (sizes[i] << 4) | sizes[i + 1];
816 RCHECK(buffer->ReadWriteUInt8(&size));
821 for (uint32_t i = 0; i < sample_count; ++i) {
822 uint8_t size = sizes[i];
823 RCHECK(buffer->ReadWriteUInt8(&size));
828 for (uint32_t i = 0; i < sample_count; ++i) {
829 uint16_t size = sizes[i];
830 RCHECK(buffer->ReadWriteUInt16(&size));
837 sizes.resize(sample_count);
841 uint32_t CompactSampleSize::ComputeSizeInternal() {
842 return HeaderSize() +
sizeof(uint32_t) +
sizeof(uint32_t) +
843 (field_size * sizes.size() + 7) / 8;
846 ChunkOffset::ChunkOffset() {}
847 ChunkOffset::~ChunkOffset() {}
850 bool ChunkOffset::ReadWriteInternal(
BoxBuffer* buffer) {
851 uint32_t count = offsets.size();
853 buffer->ReadWriteUInt32(&count));
855 offsets.resize(count);
856 for (uint32_t i = 0; i < count; ++i)
861 uint32_t ChunkOffset::ComputeSizeInternal() {
862 return HeaderSize() +
sizeof(uint32_t) +
sizeof(uint32_t) * offsets.size();
865 ChunkLargeOffset::ChunkLargeOffset() {}
866 ChunkLargeOffset::~ChunkLargeOffset() {}
869 bool ChunkLargeOffset::ReadWriteInternal(
BoxBuffer* buffer) {
870 uint32_t count = offsets.size();
874 if (count == 0 || IsFitIn32Bits(offsets[count - 1])) {
876 stco.offsets.swap(offsets);
879 stco.offsets.swap(offsets);
885 buffer->ReadWriteUInt32(&count));
887 offsets.resize(count);
888 for (uint32_t i = 0; i < count; ++i)
889 RCHECK(buffer->ReadWriteUInt64(&offsets[i]));
893 uint32_t ChunkLargeOffset::ComputeSizeInternal() {
894 uint32_t count = offsets.size();
895 int use_large_offset =
896 (count > 0 && !IsFitIn32Bits(offsets[count - 1])) ? 1 : 0;
898 sizeof(uint32_t) * (1 + use_large_offset) * offsets.size();
901 SyncSample::SyncSample() {}
902 SyncSample::~SyncSample() {}
905 bool SyncSample::ReadWriteInternal(
BoxBuffer* buffer) {
906 uint32_t count = sample_number.size();
908 buffer->ReadWriteUInt32(&count));
910 sample_number.resize(count);
911 for (uint32_t i = 0; i < count; ++i)
912 RCHECK(buffer->ReadWriteUInt32(&sample_number[i]));
916 uint32_t SyncSample::ComputeSizeInternal() {
918 if (sample_number.empty())
921 sizeof(uint32_t) * sample_number.size();
924 SampleTable::SampleTable() {}
925 SampleTable::~SampleTable() {}
928 bool SampleTable::ReadWriteInternal(
BoxBuffer* buffer) {
944 CompactSampleSize compact_sample_size;
945 RCHECK(reader->
ReadChild(&compact_sample_size));
946 sample_size.sample_size = 0;
947 sample_size.sample_count = compact_sample_size.sizes.size();
948 sample_size.sizes.swap(compact_sample_size.sizes);
952 if (reader->
ChildExist(&chunk_large_offset)) {
953 RCHECK(reader->
ReadChild(&chunk_large_offset));
955 ChunkOffset chunk_offset;
956 RCHECK(reader->
ReadChild(&chunk_offset));
957 chunk_large_offset.offsets.swap(chunk_offset.offsets);
967 uint32_t SampleTable::ComputeSizeInternal() {
975 EditList::EditList() {}
976 EditList::~EditList() {}
979 bool EditList::ReadWriteInternal(
BoxBuffer* buffer) {
980 uint32_t count = edits.size();
984 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
985 for (uint32_t i = 0; i < count; ++i) {
988 buffer->ReadWriteInt64NBytes(&edits[i].media_time, num_bytes) &&
989 buffer->ReadWriteInt16(&edits[i].media_rate_integer) &&
990 buffer->ReadWriteInt16(&edits[i].media_rate_fraction));
995 uint32_t EditList::ComputeSizeInternal() {
1001 for (uint32_t i = 0; i < edits.size(); ++i) {
1002 if (!IsFitIn32Bits(edits[i].segment_duration, edits[i].media_time)) {
1008 (
sizeof(uint32_t) * (1 + version) * 2 +
sizeof(int16_t) * 2) *
1016 bool Edit::ReadWriteInternal(
BoxBuffer* buffer) {
1022 uint32_t Edit::ComputeSizeInternal() {
1024 if (list.edits.empty())
1029 HandlerReference::HandlerReference() : handler_type(FOURCC_NULL) {}
1030 HandlerReference::~HandlerReference() {}
1033 bool HandlerReference::ReadWriteInternal(
BoxBuffer* buffer) {
1034 std::vector<uint8_t> handler_name;
1036 switch (handler_type) {
1038 handler_name.assign(kVideoHandlerName,
1039 kVideoHandlerName + arraysize(kVideoHandlerName));
1042 handler_name.assign(kAudioHandlerName,
1043 kAudioHandlerName + arraysize(kAudioHandlerName));
1046 handler_name.assign(kTextHandlerName,
1047 kTextHandlerName + arraysize(kTextHandlerName));
1058 buffer->ReadWriteFourCC(&handler_type));
1061 buffer->ReadWriteVector(&handler_name, handler_name.size()));
1066 uint32_t HandlerReference::ComputeSizeInternal() {
1067 uint32_t box_size =
HeaderSize() + kFourCCSize + 16;
1068 switch (handler_type) {
1070 box_size +=
sizeof(kVideoHandlerName);
1073 box_size +=
sizeof(kAudioHandlerName);
1076 box_size +=
sizeof(kTextHandlerName);
1086 bool Language::ReadWrite(BoxBuffer* buffer) {
1087 if (buffer->Reading()) {
1090 std::vector<uint8_t> temp;
1091 RCHECK(buffer->ReadWriteVector(&temp, 2));
1093 BitReader bit_reader(&temp[0], 2);
1094 bit_reader.SkipBits(1);
1096 for (
int i = 0; i < 3; ++i) {
1097 CHECK(bit_reader.ReadBits(5, &language[i]));
1098 language[i] += 0x60;
1100 code.assign(language, 3);
1103 const char kUndefinedLanguage[] =
"und";
1105 code = kUndefinedLanguage;
1106 DCHECK_EQ(code.size(), 3u);
1110 for (
int i = 0; i < 3; ++i)
1111 lang |= (code[i] - 0x60) << ((2 - i) * 5);
1112 RCHECK(buffer->ReadWriteUInt16(&lang));
1117 uint32_t Language::ComputeSize()
const {
1122 bool PrivFrame::ReadWrite(BoxBuffer* buffer) {
1123 FourCC fourcc = FOURCC_PRIV;
1124 RCHECK(buffer->ReadWriteFourCC(&fourcc));
1125 if (fourcc != FOURCC_PRIV) {
1126 VLOG(1) <<
"Skip unrecognized id3 frame during read: "
1127 << FourCCToString(fourcc);
1131 uint32_t frame_size = owner.size() + 1 + value.size();
1135 DCHECK_LT(frame_size, 0x7Fu);
1137 RCHECK(buffer->ReadWriteUInt32(&frame_size) &&
1138 buffer->ReadWriteUInt16(&flags));
1140 if (buffer->Reading()) {
1142 RCHECK(buffer->ReadWriteString(&str, frame_size));
1144 size_t pos = str.find(
'\0');
1145 RCHECK(pos < str.size());
1146 owner = str.substr(0, pos);
1147 value = str.substr(pos + 1);
1150 RCHECK(buffer->ReadWriteString(&owner, owner.size()) &&
1151 buffer->ReadWriteUInt8(&byte) &&
1152 buffer->ReadWriteString(&value, value.size()));
1157 uint32_t PrivFrame::ComputeSize()
const {
1158 if (owner.empty() && value.empty())
1160 const uint32_t kFourCCSize = 4;
1161 return kFourCCSize +
sizeof(uint32_t) +
sizeof(uint16_t) + owner.size() + 1 +
1170 bool ID3v2::ReadWriteInternal(
BoxBuffer* buffer) {
1172 language.ReadWrite(buffer));
1175 std::string id3v2_identifier = kID3v2Identifier;
1176 uint16_t version = kID3v2Version;
1182 DCHECK_LT(data_size, 0x7Fu);
1184 RCHECK(buffer->
ReadWriteString(&id3v2_identifier, id3v2_identifier.size()) &&
1185 buffer->ReadWriteUInt16(&version) &&
1186 buffer->ReadWriteUInt8(&flags) &&
1187 buffer->ReadWriteUInt32(&data_size));
1193 uint32_t ID3v2::ComputeSizeInternal() {
1196 return private_frame_size == 0 ? 0 :
HeaderSize() + language.ComputeSize() +
1201 Metadata::Metadata() {}
1202 Metadata::~Metadata() {}
1208 bool Metadata::ReadWriteInternal(
BoxBuffer* buffer) {
1216 uint32_t Metadata::ComputeSizeInternal() {
1219 return id3v2_size == 0 ? 0
1223 CodecConfigurationRecord::CodecConfigurationRecord() : box_type(FOURCC_NULL) {}
1224 CodecConfigurationRecord::~CodecConfigurationRecord() {}
1231 bool CodecConfigurationRecord::ReadWriteInternal(
BoxBuffer* buffer) {
1234 RCHECK(buffer->ReadWriteVector(&data, buffer->
BytesLeft()));
1236 RCHECK(buffer->ReadWriteVector(&data, data.size()));
1241 uint32_t CodecConfigurationRecord::ComputeSizeInternal() {
1247 PixelAspectRatio::PixelAspectRatio() : h_spacing(0), v_spacing(0) {}
1248 PixelAspectRatio::~PixelAspectRatio() {}
1251 bool PixelAspectRatio::ReadWriteInternal(
BoxBuffer* buffer) {
1253 buffer->ReadWriteUInt32(&h_spacing) &&
1254 buffer->ReadWriteUInt32(&v_spacing));
1258 uint32_t PixelAspectRatio::ComputeSizeInternal() {
1260 if (h_spacing == 0 && v_spacing == 0)
1263 DCHECK(h_spacing != 0 && v_spacing != 0);
1264 return HeaderSize() +
sizeof(h_spacing) +
sizeof(v_spacing);
1267 VideoSampleEntry::VideoSampleEntry()
1268 : format(FOURCC_NULL), data_reference_index(1), width(0), height(0) {}
1270 VideoSampleEntry::~VideoSampleEntry() {}
1272 if (format == FOURCC_NULL) {
1273 LOG(ERROR) <<
"VideoSampleEntry should be parsed according to the "
1274 <<
"handler type recovered in its Media ancestor.";
1279 bool VideoSampleEntry::ReadWriteInternal(
BoxBuffer* buffer) {
1280 std::vector<uint8_t> compressor_name;
1282 DCHECK(buffer->
reader());
1283 format = buffer->
reader()->type();
1287 const FourCC actual_format = GetActualFormat();
1288 switch (actual_format) {
1290 compressor_name.assign(
1292 kAvcCompressorName + arraysize(kAvcCompressorName));
1296 compressor_name.assign(
1297 kHevcCompressorName,
1298 kHevcCompressorName + arraysize(kHevcCompressorName));
1303 compressor_name.assign(
1305 kVpcCompressorName + arraysize(kVpcCompressorName));
1308 LOG(ERROR) << FourCCToString(actual_format) <<
" is not supported.";
1311 compressor_name.resize(kCompressorNameSize);
1314 uint32_t video_resolution = kVideoResolution;
1315 uint16_t video_frame_count = kVideoFrameCount;
1316 uint16_t video_depth = kVideoDepth;
1317 int16_t predefined = -1;
1319 buffer->ReadWriteUInt16(&data_reference_index) &&
1321 buffer->ReadWriteUInt16(&width) &&
1322 buffer->ReadWriteUInt16(&height) &&
1323 buffer->ReadWriteUInt32(&video_resolution) &&
1324 buffer->ReadWriteUInt32(&video_resolution) &&
1326 buffer->ReadWriteUInt16(&video_frame_count) &&
1327 buffer->ReadWriteVector(&compressor_name, kCompressorNameSize) &&
1328 buffer->ReadWriteUInt16(&video_depth) &&
1329 buffer->ReadWriteInt16(&predefined));
1333 if (format == FOURCC_encv)
1336 const FourCC actual_format = GetActualFormat();
1337 switch (actual_format) {
1339 codec_config_record.box_type = FOURCC_avcC;
1343 codec_config_record.box_type = FOURCC_hvcC;
1348 codec_config_record.box_type = FOURCC_vpcC;
1351 LOG(ERROR) << FourCCToString(actual_format) <<
" is not supported.";
1359 uint32_t VideoSampleEntry::ComputeSizeInternal() {
1360 return HeaderSize() +
sizeof(data_reference_index) +
sizeof(width) +
1361 sizeof(height) +
sizeof(kVideoResolution) * 2 +
1362 sizeof(kVideoFrameCount) +
sizeof(kVideoDepth) +
1364 codec_config_record.
ComputeSize() + kCompressorNameSize + 6 + 4 + 16 +
1368 ElementaryStreamDescriptor::ElementaryStreamDescriptor() {}
1369 ElementaryStreamDescriptor::~ElementaryStreamDescriptor() {}
1372 bool ElementaryStreamDescriptor::ReadWriteInternal(
BoxBuffer* buffer) {
1375 std::vector<uint8_t> data;
1376 RCHECK(buffer->ReadWriteVector(&data, buffer->
BytesLeft()));
1377 RCHECK(es_descriptor.Parse(data));
1378 if (es_descriptor.
IsAAC()) {
1379 RCHECK(aac_audio_specific_config.
Parse(
1380 es_descriptor.decoder_specific_info()));
1383 DCHECK(buffer->
writer());
1384 es_descriptor.Write(buffer->
writer());
1389 uint32_t ElementaryStreamDescriptor::ComputeSizeInternal() {
1391 if (es_descriptor.object_type() == kForbidden)
1393 return HeaderSize() + es_descriptor.ComputeSize();
1396 DTSSpecific::DTSSpecific()
1397 : sampling_frequency(0),
1400 pcm_sample_depth(0) {}
1401 DTSSpecific::~DTSSpecific() {}
1404 bool DTSSpecific::ReadWriteInternal(
BoxBuffer* buffer) {
1406 buffer->ReadWriteUInt32(&sampling_frequency) &&
1407 buffer->ReadWriteUInt32(&max_bitrate) &&
1408 buffer->ReadWriteUInt32(&avg_bitrate) &&
1409 buffer->ReadWriteUInt8(&pcm_sample_depth));
1412 RCHECK(buffer->ReadWriteVector(&extra_data, buffer->
BytesLeft()));
1414 if (extra_data.empty()) {
1415 extra_data.assign(kDdtsExtraData,
1416 kDdtsExtraData +
sizeof(kDdtsExtraData));
1418 RCHECK(buffer->ReadWriteVector(&extra_data, extra_data.size()));
1423 uint32_t DTSSpecific::ComputeSizeInternal() {
1425 if (sampling_frequency == 0)
1427 return HeaderSize() +
sizeof(sampling_frequency) +
sizeof(max_bitrate) +
1428 sizeof(avg_bitrate) +
sizeof(pcm_sample_depth) +
1429 sizeof(kDdtsExtraData);
1432 AC3Specific::AC3Specific() {}
1433 AC3Specific::~AC3Specific() {}
1437 bool AC3Specific::ReadWriteInternal(
BoxBuffer* buffer) {
1439 buffer->ReadWriteVector(
1444 uint32_t AC3Specific::ComputeSizeInternal() {
1451 EC3Specific::EC3Specific() {}
1452 EC3Specific::~EC3Specific() {}
1456 bool EC3Specific::ReadWriteInternal(
BoxBuffer* buffer) {
1459 RCHECK(buffer->ReadWriteVector(&data, size));
1463 uint32_t EC3Specific::ComputeSizeInternal() {
1470 AudioSampleEntry::AudioSampleEntry()
1471 : format(FOURCC_NULL),
1472 data_reference_index(1),
1477 AudioSampleEntry::~AudioSampleEntry() {}
1480 if (format == FOURCC_NULL) {
1481 LOG(ERROR) <<
"AudioSampleEntry should be parsed according to the "
1482 <<
"handler type recovered in its Media ancestor.";
1487 bool AudioSampleEntry::ReadWriteInternal(
BoxBuffer* buffer) {
1489 DCHECK(buffer->
reader());
1490 format = buffer->
reader()->type();
1498 buffer->ReadWriteUInt16(&data_reference_index) &&
1500 buffer->ReadWriteUInt16(&channelcount) &&
1501 buffer->ReadWriteUInt16(&samplesize) &&
1503 buffer->ReadWriteUInt32(&samplerate));
1508 if (format == FOURCC_enca)
1518 uint32_t AudioSampleEntry::ComputeSizeInternal() {
1519 return HeaderSize() +
sizeof(data_reference_index) +
sizeof(channelcount) +
1520 sizeof(samplesize) +
sizeof(samplerate) + sinf.
ComputeSize() +
1527 WebVTTConfigurationBox::WebVTTConfigurationBox() {}
1528 WebVTTConfigurationBox::~WebVTTConfigurationBox() {}
1534 bool WebVTTConfigurationBox::ReadWriteInternal(
BoxBuffer* buffer) {
1541 uint32_t WebVTTConfigurationBox::ComputeSizeInternal() {
1545 WebVTTSourceLabelBox::WebVTTSourceLabelBox() {}
1546 WebVTTSourceLabelBox::~WebVTTSourceLabelBox() {}
1552 bool WebVTTSourceLabelBox::ReadWriteInternal(
BoxBuffer* buffer) {
1556 : source_label.size());
1559 uint32_t WebVTTSourceLabelBox::ComputeSizeInternal() {
1560 if (source_label.empty())
1565 TextSampleEntry::TextSampleEntry() : format(FOURCC_NULL) {}
1566 TextSampleEntry::~TextSampleEntry() {}
1569 if (format == FOURCC_NULL) {
1570 LOG(ERROR) <<
"TextSampleEntry should be parsed according to the "
1571 <<
"handler type recovered in its Media ancestor.";
1576 bool TextSampleEntry::ReadWriteInternal(
BoxBuffer* buffer) {
1578 DCHECK(buffer->
reader());
1579 format = buffer->
reader()->type();
1584 buffer->ReadWriteUInt16(&data_reference_index));
1586 if (format == FOURCC_wvtt) {
1595 uint32_t TextSampleEntry::ComputeSizeInternal() {
1597 return HeaderSize() + 6 +
sizeof(data_reference_index) +
1601 MediaHeader::MediaHeader()
1602 : creation_time(0), modification_time(0), timescale(0), duration(0) {}
1603 MediaHeader::~MediaHeader() {}
1606 bool MediaHeader::ReadWriteInternal(
BoxBuffer* buffer) {
1609 uint8_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
1612 buffer->ReadWriteUInt32(×cale) &&
1614 language.ReadWrite(buffer) &&
1619 uint32_t MediaHeader::ComputeSizeInternal() {
1620 version = IsFitIn32Bits(creation_time, modification_time, duration) ? 0 : 1;
1622 sizeof(uint32_t) * (1 + version) * 3 + language.ComputeSize() +
1626 VideoMediaHeader::VideoMediaHeader()
1627 : graphicsmode(0), opcolor_red(0), opcolor_green(0), opcolor_blue(0) {
1628 const uint32_t kVideoMediaHeaderFlags = 1;
1629 flags = kVideoMediaHeaderFlags;
1631 VideoMediaHeader::~VideoMediaHeader() {}
1633 bool VideoMediaHeader::ReadWriteInternal(
BoxBuffer* buffer) {
1635 buffer->ReadWriteUInt16(&graphicsmode) &&
1636 buffer->ReadWriteUInt16(&opcolor_red) &&
1637 buffer->ReadWriteUInt16(&opcolor_green) &&
1638 buffer->ReadWriteUInt16(&opcolor_blue));
1642 uint32_t VideoMediaHeader::ComputeSizeInternal() {
1643 return HeaderSize() +
sizeof(graphicsmode) +
sizeof(opcolor_red) +
1644 sizeof(opcolor_green) +
sizeof(opcolor_blue);
1647 SoundMediaHeader::SoundMediaHeader() : balance(0) {}
1648 SoundMediaHeader::~SoundMediaHeader() {}
1650 bool SoundMediaHeader::ReadWriteInternal(
BoxBuffer* buffer) {
1652 buffer->ReadWriteUInt16(&balance) &&
1657 uint32_t SoundMediaHeader::ComputeSizeInternal() {
1658 return HeaderSize() +
sizeof(balance) +
sizeof(uint16_t);
1661 SubtitleMediaHeader::SubtitleMediaHeader() {}
1662 SubtitleMediaHeader::~SubtitleMediaHeader() {}
1666 bool SubtitleMediaHeader::ReadWriteInternal(
BoxBuffer* buffer) {
1670 uint32_t SubtitleMediaHeader::ComputeSizeInternal() {
1674 DataEntryUrl::DataEntryUrl() {
1675 const uint32_t kDataEntryUrlFlags = 1;
1676 flags = kDataEntryUrlFlags;
1678 DataEntryUrl::~DataEntryUrl() {}
1680 bool DataEntryUrl::ReadWriteInternal(
BoxBuffer* buffer) {
1683 RCHECK(buffer->ReadWriteVector(&location, buffer->
BytesLeft()));
1685 RCHECK(buffer->ReadWriteVector(&location, location.size()));
1690 uint32_t DataEntryUrl::ComputeSizeInternal() {
1694 DataReference::DataReference() {
1696 data_entry.resize(1);
1698 DataReference::~DataReference() {}
1700 bool DataReference::ReadWriteInternal(
BoxBuffer* buffer) {
1701 uint32_t entry_count = data_entry.size();
1703 buffer->ReadWriteUInt32(&entry_count));
1704 data_entry.resize(entry_count);
1706 for (uint32_t i = 0; i < entry_count; ++i)
1711 uint32_t DataReference::ComputeSizeInternal() {
1712 uint32_t count = data_entry.size();
1713 uint32_t box_size =
HeaderSize() +
sizeof(count);
1714 for (uint32_t i = 0; i < count; ++i)
1719 DataInformation::DataInformation() {}
1720 DataInformation::~DataInformation() {}
1723 bool DataInformation::ReadWriteInternal(
BoxBuffer* buffer) {
1729 uint32_t DataInformation::ComputeSizeInternal() {
1733 MediaInformation::MediaInformation() {}
1734 MediaInformation::~MediaInformation() {}
1737 bool MediaInformation::ReadWriteInternal(
BoxBuffer* buffer) {
1742 switch (sample_table.description.type) {
1759 uint32_t MediaInformation::ComputeSizeInternal() {
1762 switch (sample_table.description.type) {
1782 bool Media::ReadWriteInternal(
BoxBuffer* buffer) {
1794 information.sample_table.description.type =
1795 FourCCToTrackType(handler.handler_type);
1797 handler.handler_type =
1798 TrackTypeToFourCC(information.sample_table.description.type);
1799 RCHECK(handler.handler_type != FOURCC_NULL);
1806 uint32_t Media::ComputeSizeInternal() {
1807 handler.handler_type =
1808 TrackTypeToFourCC(information.sample_table.description.type);
1817 bool Track::ReadWriteInternal(
BoxBuffer* buffer) {
1827 uint32_t Track::ComputeSizeInternal() {
1832 MovieExtendsHeader::MovieExtendsHeader() : fragment_duration(0) {}
1833 MovieExtendsHeader::~MovieExtendsHeader() {}
1836 bool MovieExtendsHeader::ReadWriteInternal(
BoxBuffer* buffer) {
1838 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
1843 uint32_t MovieExtendsHeader::ComputeSizeInternal() {
1845 if (fragment_duration == 0)
1847 version = IsFitIn32Bits(fragment_duration) ? 0 : 1;
1848 return HeaderSize() +
sizeof(uint32_t) * (1 + version);
1851 TrackExtends::TrackExtends()
1853 default_sample_description_index(0),
1854 default_sample_duration(0),
1855 default_sample_size(0),
1856 default_sample_flags(0) {}
1857 TrackExtends::~TrackExtends() {}
1860 bool TrackExtends::ReadWriteInternal(
BoxBuffer* buffer) {
1862 buffer->ReadWriteUInt32(&track_id) &&
1863 buffer->ReadWriteUInt32(&default_sample_description_index) &&
1864 buffer->ReadWriteUInt32(&default_sample_duration) &&
1865 buffer->ReadWriteUInt32(&default_sample_size) &&
1866 buffer->ReadWriteUInt32(&default_sample_flags));
1870 uint32_t TrackExtends::ComputeSizeInternal() {
1872 sizeof(default_sample_description_index) +
1873 sizeof(default_sample_duration) +
sizeof(default_sample_size) +
1874 sizeof(default_sample_flags);
1877 MovieExtends::MovieExtends() {}
1878 MovieExtends::~MovieExtends() {}
1881 bool MovieExtends::ReadWriteInternal(
BoxBuffer* buffer) {
1886 DCHECK(buffer->
reader());
1889 for (uint32_t i = 0; i < tracks.size(); ++i)
1895 uint32_t MovieExtends::ComputeSizeInternal() {
1897 if (tracks.size() == 0)
1900 for (uint32_t i = 0; i < tracks.size(); ++i)
1909 bool Movie::ReadWriteInternal(
BoxBuffer* buffer) {
1921 for (uint32_t i = 0; i < tracks.size(); ++i)
1923 for (uint32_t i = 0; i < pssh.size(); ++i)
1929 uint32_t Movie::ComputeSizeInternal() {
1932 for (uint32_t i = 0; i < tracks.size(); ++i)
1934 for (uint32_t i = 0; i < pssh.size(); ++i)
1939 TrackFragmentDecodeTime::TrackFragmentDecodeTime() : decode_time(0) {}
1940 TrackFragmentDecodeTime::~TrackFragmentDecodeTime() {}
1943 bool TrackFragmentDecodeTime::ReadWriteInternal(
BoxBuffer* buffer) {
1945 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
1950 uint32_t TrackFragmentDecodeTime::ComputeSizeInternal() {
1951 version = IsFitIn32Bits(decode_time) ? 0 : 1;
1952 return HeaderSize() +
sizeof(uint32_t) * (1 + version);
1955 MovieFragmentHeader::MovieFragmentHeader() : sequence_number(0) {}
1956 MovieFragmentHeader::~MovieFragmentHeader() {}
1959 bool MovieFragmentHeader::ReadWriteInternal(
BoxBuffer* buffer) {
1961 buffer->ReadWriteUInt32(&sequence_number);
1964 uint32_t MovieFragmentHeader::ComputeSizeInternal() {
1965 return HeaderSize() +
sizeof(sequence_number);
1968 TrackFragmentHeader::TrackFragmentHeader()
1970 sample_description_index(0),
1971 default_sample_duration(0),
1972 default_sample_size(0),
1973 default_sample_flags(0) {}
1975 TrackFragmentHeader::~TrackFragmentHeader() {}
1978 bool TrackFragmentHeader::ReadWriteInternal(
BoxBuffer* buffer) {
1980 buffer->ReadWriteUInt32(&track_id));
1982 if (flags & kBaseDataOffsetPresentMask) {
1987 uint64_t base_data_offset;
1988 RCHECK(buffer->ReadWriteUInt64(&base_data_offset));
1989 DLOG(WARNING) <<
"base-data-offset-present is not expected. Assumes "
1990 "default-base-is-moof.";
1993 if (flags & kSampleDescriptionIndexPresentMask) {
1994 RCHECK(buffer->ReadWriteUInt32(&sample_description_index));
1995 }
else if (buffer->
Reading()) {
1996 sample_description_index = 0;
1999 if (flags & kDefaultSampleDurationPresentMask) {
2000 RCHECK(buffer->ReadWriteUInt32(&default_sample_duration));
2001 }
else if (buffer->
Reading()) {
2002 default_sample_duration = 0;
2005 if (flags & kDefaultSampleSizePresentMask) {
2006 RCHECK(buffer->ReadWriteUInt32(&default_sample_size));
2007 }
else if (buffer->
Reading()) {
2008 default_sample_size = 0;
2011 if (flags & kDefaultSampleFlagsPresentMask)
2012 RCHECK(buffer->ReadWriteUInt32(&default_sample_flags));
2016 uint32_t TrackFragmentHeader::ComputeSizeInternal() {
2017 uint32_t box_size =
HeaderSize() +
sizeof(track_id);
2018 if (flags & kSampleDescriptionIndexPresentMask)
2019 box_size +=
sizeof(sample_description_index);
2020 if (flags & kDefaultSampleDurationPresentMask)
2021 box_size +=
sizeof(default_sample_duration);
2022 if (flags & kDefaultSampleSizePresentMask)
2023 box_size +=
sizeof(default_sample_size);
2024 if (flags & kDefaultSampleFlagsPresentMask)
2025 box_size +=
sizeof(default_sample_flags);
2029 TrackFragmentRun::TrackFragmentRun() : sample_count(0), data_offset(0) {}
2030 TrackFragmentRun::~TrackFragmentRun() {}
2033 bool TrackFragmentRun::ReadWriteInternal(
BoxBuffer* buffer) {
2039 if (flags & kSampleCompTimeOffsetsPresentMask) {
2040 for (uint32_t i = 0; i < sample_count; ++i) {
2041 if (sample_composition_time_offsets[i] < 0) {
2050 buffer->ReadWriteUInt32(&sample_count));
2052 bool data_offset_present = (flags & kDataOffsetPresentMask) != 0;
2053 bool first_sample_flags_present = (flags & kFirstSampleFlagsPresentMask) != 0;
2054 bool sample_duration_present = (flags & kSampleDurationPresentMask) != 0;
2055 bool sample_size_present = (flags & kSampleSizePresentMask) != 0;
2056 bool sample_flags_present = (flags & kSampleFlagsPresentMask) != 0;
2057 bool sample_composition_time_offsets_present =
2058 (flags & kSampleCompTimeOffsetsPresentMask) != 0;
2060 if (data_offset_present) {
2061 RCHECK(buffer->ReadWriteUInt32(&data_offset));
2072 uint32_t first_sample_flags;
2075 if (first_sample_flags_present)
2076 RCHECK(buffer->ReadWriteUInt32(&first_sample_flags));
2078 if (sample_duration_present)
2079 sample_durations.resize(sample_count);
2080 if (sample_size_present)
2081 sample_sizes.resize(sample_count);
2082 if (sample_flags_present)
2083 sample_flags.resize(sample_count);
2084 if (sample_composition_time_offsets_present)
2085 sample_composition_time_offsets.resize(sample_count);
2087 if (first_sample_flags_present) {
2088 first_sample_flags = sample_flags[0];
2089 DCHECK(sample_flags.size() == 1);
2090 RCHECK(buffer->ReadWriteUInt32(&first_sample_flags));
2093 if (sample_duration_present)
2094 DCHECK(sample_durations.size() == sample_count);
2095 if (sample_size_present)
2096 DCHECK(sample_sizes.size() == sample_count);
2097 if (sample_flags_present)
2098 DCHECK(sample_flags.size() == sample_count);
2099 if (sample_composition_time_offsets_present)
2100 DCHECK(sample_composition_time_offsets.size() == sample_count);
2103 for (uint32_t i = 0; i < sample_count; ++i) {
2104 if (sample_duration_present)
2105 RCHECK(buffer->ReadWriteUInt32(&sample_durations[i]));
2106 if (sample_size_present)
2107 RCHECK(buffer->ReadWriteUInt32(&sample_sizes[i]));
2108 if (sample_flags_present)
2109 RCHECK(buffer->ReadWriteUInt32(&sample_flags[i]));
2111 if (sample_composition_time_offsets_present) {
2113 uint32_t sample_offset = sample_composition_time_offsets[i];
2114 RCHECK(buffer->ReadWriteUInt32(&sample_offset));
2115 sample_composition_time_offsets[i] = sample_offset;
2117 int32_t sample_offset = sample_composition_time_offsets[i];
2118 RCHECK(buffer->ReadWriteInt32(&sample_offset));
2119 sample_composition_time_offsets[i] = sample_offset;
2125 if (first_sample_flags_present) {
2126 if (sample_flags.size() == 0) {
2127 sample_flags.push_back(first_sample_flags);
2129 sample_flags[0] = first_sample_flags;
2136 uint32_t TrackFragmentRun::ComputeSizeInternal() {
2137 uint32_t box_size =
HeaderSize() +
sizeof(sample_count);
2138 if (flags & kDataOffsetPresentMask)
2139 box_size +=
sizeof(data_offset);
2140 if (flags & kFirstSampleFlagsPresentMask)
2141 box_size +=
sizeof(uint32_t);
2142 uint32_t fields = (flags & kSampleDurationPresentMask ? 1 : 0) +
2143 (flags & kSampleSizePresentMask ? 1 : 0) +
2144 (flags & kSampleFlagsPresentMask ? 1 : 0) +
2145 (flags & kSampleCompTimeOffsetsPresentMask ? 1 : 0);
2146 box_size += fields *
sizeof(uint32_t) * sample_count;
2150 SampleToGroup::SampleToGroup() : grouping_type(0), grouping_type_parameter(0) {}
2151 SampleToGroup::~SampleToGroup() {}
2154 bool SampleToGroup::ReadWriteInternal(
BoxBuffer* buffer) {
2156 buffer->ReadWriteUInt32(&grouping_type));
2158 RCHECK(buffer->ReadWriteUInt32(&grouping_type_parameter));
2160 if (grouping_type != FOURCC_seig) {
2162 DLOG(WARNING) <<
"Sample group "
2163 << FourCCToString(static_cast<FourCC>(grouping_type))
2164 <<
" is not supported.";
2168 uint32_t count = entries.size();
2169 RCHECK(buffer->ReadWriteUInt32(&count));
2170 entries.resize(count);
2171 for (uint32_t i = 0; i < count; ++i) {
2172 RCHECK(buffer->ReadWriteUInt32(&entries[i].sample_count) &&
2173 buffer->ReadWriteUInt32(&entries[i].group_description_index));
2178 uint32_t SampleToGroup::ComputeSizeInternal() {
2180 if (entries.empty())
2182 return HeaderSize() +
sizeof(grouping_type) +
2183 (version == 1 ?
sizeof(grouping_type_parameter) : 0) +
2184 sizeof(uint32_t) + entries.size() *
sizeof(entries[0]);
2187 CencSampleEncryptionInfoEntry::CencSampleEncryptionInfoEntry()
2189 per_sample_iv_size(0),
2190 crypt_byte_block(0),
2191 skip_byte_block(0) {}
2192 CencSampleEncryptionInfoEntry::~CencSampleEncryptionInfoEntry() {};
2194 SampleGroupDescription::SampleGroupDescription() : grouping_type(0) {}
2195 SampleGroupDescription::~SampleGroupDescription() {}
2198 bool SampleGroupDescription::ReadWriteInternal(
BoxBuffer* buffer) {
2200 buffer->ReadWriteUInt32(&grouping_type));
2202 if (grouping_type != FOURCC_seig) {
2204 DLOG(WARNING) <<
"Sample group '" << grouping_type <<
"' is not supported.";
2208 const size_t kEntrySize =
sizeof(uint32_t) + kCencKeyIdSize;
2209 uint32_t default_length = 0;
2212 RCHECK(buffer->ReadWriteUInt32(&default_length));
2213 RCHECK(default_length == 0 || default_length >= kEntrySize);
2215 default_length = kEntrySize;
2216 RCHECK(buffer->ReadWriteUInt32(&default_length));
2220 uint32_t count = entries.size();
2221 RCHECK(buffer->ReadWriteUInt32(&count));
2222 entries.resize(count);
2223 for (uint32_t i = 0; i < count; ++i) {
2225 if (buffer->
Reading() && default_length == 0) {
2226 uint32_t description_length = 0;
2227 RCHECK(buffer->ReadWriteUInt32(&description_length));
2228 RCHECK(description_length >= kEntrySize);
2233 if (entries[i].key_id.size() != kCencKeyIdSize) {
2234 LOG(WARNING) <<
"CENC defines key id length of " << kCencKeyIdSize
2235 <<
" bytes; got " << entries[i].key_id.size()
2236 <<
". Resized accordingly.";
2237 entries[i].key_id.resize(kCencKeyIdSize);
2239 RCHECK(entries[i].crypt_byte_block < 16 &&
2240 entries[i].skip_byte_block < 16);
2246 entries[i].crypt_byte_block << 4 | entries[i].skip_byte_block;
2247 RCHECK(buffer->ReadWriteUInt8(&pattern));
2248 entries[i].crypt_byte_block = pattern >> 4;
2249 entries[i].skip_byte_block = pattern & 0x0F;
2251 RCHECK(buffer->ReadWriteUInt8(&entries[i].is_protected) &&
2252 buffer->ReadWriteUInt8(&entries[i].per_sample_iv_size) &&
2253 buffer->ReadWriteVector(&entries[i].key_id, kCencKeyIdSize));
2255 if (entries[i].is_protected == 1) {
2256 if (entries[i].per_sample_iv_size == 0) {
2257 uint8_t constant_iv_size = entries[i].constant_iv.size();
2258 RCHECK(buffer->ReadWriteUInt8(&constant_iv_size));
2259 RCHECK(constant_iv_size == 8 || constant_iv_size == 16);
2261 buffer->ReadWriteVector(&entries[i].constant_iv, constant_iv_size));
2263 RCHECK(entries[i].per_sample_iv_size == 8 ||
2264 entries[i].per_sample_iv_size == 16);
2265 RCHECK(entries[i].constant_iv.empty());
2270 RCHECK(entries[i].is_protected == 0);
2271 RCHECK(entries[i].per_sample_iv_size == 0);
2278 uint32_t SampleGroupDescription::ComputeSizeInternal() {
2282 if (entries.empty())
2284 size_t entries_size = 0;
2285 for (
const auto& entry : entries) {
2286 entries_size +=
sizeof(uint32_t) + kCencKeyIdSize +
2287 (entry.constant_iv.empty()
2289 : (
sizeof(uint8_t) + entry.constant_iv.size()));
2291 return HeaderSize() +
sizeof(grouping_type) +
2292 (version == 1 ?
sizeof(uint32_t) : 0) +
sizeof(uint32_t) +
2296 TrackFragment::TrackFragment() : decode_time_absent(false) {}
2297 TrackFragment::~TrackFragment() {}
2300 bool TrackFragment::ReadWriteInternal(
BoxBuffer* buffer) {
2305 DCHECK(buffer->
reader());
2307 if (!decode_time_absent)
2315 while (sample_to_group.grouping_type != FOURCC_seig &&
2319 while (sample_group_description.grouping_type != FOURCC_seig &&
2324 if (!decode_time_absent)
2326 for (uint32_t i = 0; i < runs.size(); ++i)
2336 uint32_t TrackFragment::ComputeSizeInternal() {
2342 for (uint32_t i = 0; i < runs.size(); ++i)
2347 MovieFragment::MovieFragment() {}
2348 MovieFragment::~MovieFragment() {}
2351 bool MovieFragment::ReadWriteInternal(
BoxBuffer* buffer) {
2361 for (uint32_t i = 0; i < tracks.size(); ++i)
2363 for (uint32_t i = 0; i < pssh.size(); ++i)
2369 uint32_t MovieFragment::ComputeSizeInternal() {
2371 for (uint32_t i = 0; i < tracks.size(); ++i)
2373 for (uint32_t i = 0; i < pssh.size(); ++i)
2378 SegmentIndex::SegmentIndex()
2381 earliest_presentation_time(0),
2383 SegmentIndex::~SegmentIndex() {}
2386 bool SegmentIndex::ReadWriteInternal(
BoxBuffer* buffer) {
2388 buffer->ReadWriteUInt32(&reference_id) &&
2389 buffer->ReadWriteUInt32(×cale));
2391 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
2396 uint16_t reference_count = references.size();
2398 buffer->ReadWriteUInt16(&reference_count));
2399 references.resize(reference_count);
2401 uint32_t reference_type_size;
2403 for (uint32_t i = 0; i < reference_count; ++i) {
2405 reference_type_size = references[i].referenced_size;
2406 if (references[i].reference_type)
2407 reference_type_size |= (1 << 31);
2408 sap = (references[i].sap_type << 28) | references[i].sap_delta_time;
2409 if (references[i].starts_with_sap)
2412 RCHECK(buffer->ReadWriteUInt32(&reference_type_size) &&
2413 buffer->ReadWriteUInt32(&references[i].subsegment_duration) &&
2414 buffer->ReadWriteUInt32(&sap));
2416 references[i].reference_type = (reference_type_size >> 31) ?
true :
false;
2417 references[i].referenced_size = reference_type_size & ~(1 << 31);
2418 references[i].starts_with_sap = (sap >> 31) ?
true :
false;
2419 references[i].sap_type =
2420 static_cast<SegmentReference::SAPType
>((sap >> 28) & 0x07);
2421 references[i].sap_delta_time = sap & ~(0xF << 28);
2427 uint32_t SegmentIndex::ComputeSizeInternal() {
2428 version = IsFitIn32Bits(earliest_presentation_time, first_offset) ? 0 : 1;
2429 return HeaderSize() +
sizeof(reference_id) +
sizeof(timescale) +
2430 sizeof(uint32_t) * (1 + version) * 2 + 2 *
sizeof(uint16_t) +
2431 3 *
sizeof(uint32_t) * references.size();
2434 MediaData::MediaData() : data_size(0) {}
2435 MediaData::~MediaData() {}
2438 bool MediaData::ReadWriteInternal(
BoxBuffer* buffer) {
2439 NOTIMPLEMENTED() <<
"Actual data is parsed and written separately.";
2443 uint32_t MediaData::ComputeSizeInternal() {
2447 CueSourceIDBox::CueSourceIDBox() : source_id(kCueSourceIdNotSet) {}
2448 CueSourceIDBox::~CueSourceIDBox() {}
2452 bool CueSourceIDBox::ReadWriteInternal(
BoxBuffer* buffer) {
2457 uint32_t CueSourceIDBox::ComputeSizeInternal() {
2458 if (source_id == kCueSourceIdNotSet)
2463 CueTimeBox::CueTimeBox() {}
2464 CueTimeBox::~CueTimeBox() {}
2470 bool CueTimeBox::ReadWriteInternal(
BoxBuffer* buffer) {
2477 uint32_t CueTimeBox::ComputeSizeInternal() {
2478 if (cue_current_time.empty())
2480 return HeaderSize() + cue_current_time.size();
2483 CueIDBox::CueIDBox() {}
2484 CueIDBox::~CueIDBox() {}
2490 bool CueIDBox::ReadWriteInternal(
BoxBuffer* buffer) {
2496 uint32_t CueIDBox::ComputeSizeInternal() {
2502 CueSettingsBox::CueSettingsBox() {}
2503 CueSettingsBox::~CueSettingsBox() {}
2509 bool CueSettingsBox::ReadWriteInternal(
BoxBuffer* buffer) {
2515 uint32_t CueSettingsBox::ComputeSizeInternal() {
2516 if (settings.empty())
2521 CuePayloadBox::CuePayloadBox() {}
2522 CuePayloadBox::~CuePayloadBox() {}
2528 bool CuePayloadBox::ReadWriteInternal(
BoxBuffer* buffer) {
2534 uint32_t CuePayloadBox::ComputeSizeInternal() {
2538 VTTEmptyCueBox::VTTEmptyCueBox() {}
2539 VTTEmptyCueBox::~VTTEmptyCueBox() {}
2545 bool VTTEmptyCueBox::ReadWriteInternal(
BoxBuffer* buffer) {
2549 uint32_t VTTEmptyCueBox::ComputeSizeInternal() {
2553 VTTAdditionalTextBox::VTTAdditionalTextBox() {}
2554 VTTAdditionalTextBox::~VTTAdditionalTextBox() {}
2560 bool VTTAdditionalTextBox::ReadWriteInternal(
BoxBuffer* buffer) {
2563 &cue_additional_text,
2567 uint32_t VTTAdditionalTextBox::ComputeSizeInternal() {
2568 return HeaderSize() + cue_additional_text.size();
2571 VTTCueBox::VTTCueBox() {}
2572 VTTCueBox::~VTTCueBox() {}
2578 bool VTTCueBox::ReadWriteInternal(
BoxBuffer* buffer) {
2589 uint32_t VTTCueBox::ComputeSizeInternal() {
uint32_t ComputeSize() const
FourCC BoxType() const override
FourCC BoxType() const override
FourCC BoxType() const override
FourCC BoxType() const override
bool ParseFromBuffer(uint8_t iv_size, bool has_subsamples, BufferReader *reader)
FourCC BoxType() const override
bool ReadWrite(uint8_t iv_size, bool has_subsamples, BoxBuffer *buffer)
uint32_t GetTotalSizeOfSubsamples() const