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/formats/mp4/box_buffer.h"
12 #include "packager/media/formats/mp4/rcheck.h"
15 const uint32_t kFourCCSize = 4;
17 const uint32_t kBoxSize = kFourCCSize +
sizeof(uint32_t);
19 const uint32_t kFullBoxSize = kBoxSize + 4;
22 const uint32_t kCencKeyIdSize = 16;
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};
30 const char kVideoHandlerName[] =
"VideoHandler";
31 const char kAudioHandlerName[] =
"SoundHandler";
34 const uint32_t kVideoResolution = 0x00480000;
35 const uint16_t kVideoFrameCount = 1;
36 const uint16_t kVideoDepth = 0x0018;
38 const uint32_t kCompressorNameSize = 32u;
39 const char kAvcCompressorName[] =
"\012AVC Coding";
40 const char kHevcCompressorName[] =
"\013HEVC Coding";
41 const char kVpcCompressorName[] =
"\012VPC Coding";
44 bool IsFitIn32Bits(uint64_t a) {
45 return a <= std::numeric_limits<uint32_t>::max();
48 bool IsFitIn32Bits(int64_t a) {
49 return a <= std::numeric_limits<int32_t>::max() &&
50 a >= std::numeric_limits<int32_t>::min();
53 template <
typename T1,
typename T2>
54 bool IsFitIn32Bits(T1 a1, T2 a2) {
55 return IsFitIn32Bits(a1) && IsFitIn32Bits(a2);
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);
65 namespace edash_packager {
69 FileType::FileType() : major_brand(FOURCC_NULL), minor_version(0) {}
70 FileType::~FileType() {}
71 FourCC FileType::BoxType()
const {
return FOURCC_FTYP; }
75 buffer->ReadWriteFourCC(&major_brand) &&
76 buffer->ReadWriteUInt32(&minor_version));
79 num_brands = (buffer->
Size() - buffer->
Pos()) /
sizeof(FourCC);
80 compatible_brands.resize(num_brands);
82 num_brands = compatible_brands.size();
84 for (
size_t i = 0; i < num_brands; ++i)
85 RCHECK(buffer->ReadWriteFourCC(&compatible_brands[i]));
90 atom_size = kBoxSize + kFourCCSize +
sizeof(minor_version) +
91 kFourCCSize * compatible_brands.size();
95 SegmentType::SegmentType() {}
96 SegmentType::~SegmentType() {}
97 FourCC SegmentType::BoxType()
const {
return FOURCC_STYP; }
107 ProtectionSystemSpecificHeader::ProtectionSystemSpecificHeader() {}
108 ProtectionSystemSpecificHeader::~ProtectionSystemSpecificHeader() {}
109 FourCC ProtectionSystemSpecificHeader::BoxType()
const {
return FOURCC_PSSH; }
112 if (!buffer->
Reading() && !raw_box.empty()) {
114 buffer->
writer()->AppendVector(raw_box);
118 uint32_t size = data.size();
120 buffer->ReadWriteVector(&system_id, 16) &&
121 buffer->ReadWriteUInt32(&size) &&
122 buffer->ReadWriteVector(&data, size));
127 DCHECK(raw_box.empty());
130 raw_box.assign(reader->data(), reader->data() + reader->size());
136 if (!raw_box.empty()) {
140 kFullBoxSize + system_id.size() +
sizeof(uint32_t) + data.size();
145 SampleAuxiliaryInformationOffset::SampleAuxiliaryInformationOffset() {}
146 SampleAuxiliaryInformationOffset::~SampleAuxiliaryInformationOffset() {}
147 FourCC SampleAuxiliaryInformationOffset::BoxType()
const {
return FOURCC_SAIO; }
154 uint32_t count = offsets.size();
155 RCHECK(buffer->ReadWriteUInt32(&count));
156 offsets.resize(count);
158 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
159 for (uint32_t i = 0; i < count; ++i)
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();
174 SampleAuxiliaryInformationSize::SampleAuxiliaryInformationSize()
175 : default_sample_info_size(0), sample_count(0) {}
176 SampleAuxiliaryInformationSize::~SampleAuxiliaryInformationSize() {}
177 FourCC SampleAuxiliaryInformationSize::BoxType()
const {
return FOURCC_SAIZ; }
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));
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);
202 OriginalFormat::OriginalFormat() : format(FOURCC_NULL) {}
203 OriginalFormat::~OriginalFormat() {}
204 FourCC OriginalFormat::BoxType()
const {
return FOURCC_FRMA; }
207 return Box::ReadWrite(buffer) && buffer->ReadWriteFourCC(&format);
215 SchemeType::SchemeType() : type(FOURCC_NULL), version(0) {}
216 SchemeType::~SchemeType() {}
217 FourCC SchemeType::BoxType()
const {
return FOURCC_SCHM; }
221 buffer->ReadWriteFourCC(&type) &&
222 buffer->ReadWriteUInt32(&version));
227 atom_size = kFullBoxSize + kFourCCSize +
sizeof(version);
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; }
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);
246 uint8_t flag = is_encrypted ? 1 : 0;
249 buffer->ReadWriteUInt8(&flag) &&
250 buffer->ReadWriteUInt8(&default_iv_size) &&
251 buffer->ReadWriteVector(&default_kid, kCencKeyIdSize));
253 is_encrypted = (flag != 0);
255 RCHECK(default_iv_size == 8 || default_iv_size == 16);
257 RCHECK(default_iv_size == 0);
264 atom_size = kFullBoxSize +
sizeof(uint32_t) + kCencKeyIdSize;
268 SchemeInfo::SchemeInfo() {}
269 SchemeInfo::~SchemeInfo() {}
270 FourCC SchemeInfo::BoxType()
const {
return FOURCC_SCHI; }
283 ProtectionSchemeInfo::ProtectionSchemeInfo() {}
284 ProtectionSchemeInfo::~ProtectionSchemeInfo() {}
285 FourCC ProtectionSchemeInfo::BoxType()
const {
return FOURCC_SINF; }
292 if (type.type == FOURCC_CENC)
304 if (format.format != FOURCC_NULL) {
311 MovieHeader::MovieHeader()
313 modification_time(0),
319 MovieHeader::~MovieHeader() {}
320 FourCC MovieHeader::BoxType()
const {
return FOURCC_MVHD; }
325 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
328 buffer->ReadWriteUInt32(×cale) &&
331 std::vector<uint8_t> matrix(kUnityMatrix,
332 kUnityMatrix + arraysize(kUnityMatrix));
333 RCHECK(buffer->ReadWriteInt32(&rate) &&
334 buffer->ReadWriteInt16(&volume) &&
336 buffer->ReadWriteVector(&matrix, matrix.size()) &&
338 buffer->ReadWriteUInt32(&next_track_id));
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 +
351 TrackHeader::TrackHeader()
353 modification_time(0),
361 flags = kTrackEnabled | kTrackInMovie;
363 TrackHeader::~TrackHeader() {}
364 FourCC TrackHeader::BoxType()
const {
return FOURCC_TKHD; }
369 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
372 buffer->ReadWriteUInt32(&track_id) &&
379 volume = (width != 0 && height != 0) ? 0 : 0x100;
381 std::vector<uint8_t> matrix(kUnityMatrix,
382 kUnityMatrix + arraysize(kUnityMatrix));
384 buffer->ReadWriteInt16(&layer) &&
385 buffer->ReadWriteInt16(&alternate_group) &&
386 buffer->ReadWriteInt16(&volume) &&
388 buffer->ReadWriteVector(&matrix, matrix.size()) &&
389 buffer->ReadWriteUInt32(&width) &&
390 buffer->ReadWriteUInt32(&height));
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;
403 SampleDescription::SampleDescription() : type(kInvalid) {}
404 SampleDescription::~SampleDescription() {}
405 FourCC SampleDescription::BoxType()
const {
return FOURCC_STSD; }
410 count = video_entries.size();
412 count = audio_entries.size();
414 buffer->ReadWriteUInt32(&count));
419 video_entries.clear();
420 audio_entries.clear();
423 if (type == kVideo) {
425 RCHECK(video_entries.size() == count);
426 }
else if (type == kAudio) {
428 RCHECK(audio_entries.size() == count);
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));
446 atom_size = kFullBoxSize +
sizeof(uint32_t);
447 if (type == kVideo) {
448 for (uint32_t i = 0; i < video_entries.size(); ++i)
450 }
else if (type == kAudio) {
451 for (uint32_t i = 0; i < audio_entries.size(); ++i)
457 DecodingTimeToSample::DecodingTimeToSample() {}
458 DecodingTimeToSample::~DecodingTimeToSample() {}
459 FourCC DecodingTimeToSample::BoxType()
const {
return FOURCC_STTS; }
462 uint32_t count = decoding_time.size();
464 buffer->ReadWriteUInt32(&count));
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));
475 atom_size = kFullBoxSize +
sizeof(uint32_t) +
480 CompositionTimeToSample::CompositionTimeToSample() {}
481 CompositionTimeToSample::~CompositionTimeToSample() {}
482 FourCC CompositionTimeToSample::BoxType()
const {
return FOURCC_CTTS; }
485 uint32_t count = composition_offset.size();
491 for (uint32_t i = 0; i < count; ++i) {
492 if (composition_offset[i].sample_offset < 0) {
500 buffer->ReadWriteUInt32(&count));
502 composition_offset.resize(count);
503 for (uint32_t i = 0; i < count; ++i) {
504 RCHECK(buffer->ReadWriteUInt32(&composition_offset[i].sample_count));
507 uint32_t sample_offset = composition_offset[i].sample_offset;
508 RCHECK(buffer->ReadWriteUInt32(&sample_offset));
509 composition_offset[i].sample_offset = sample_offset;
511 int32_t sample_offset = composition_offset[i].sample_offset;
512 RCHECK(buffer->ReadWriteInt32(&sample_offset));
513 composition_offset[i].sample_offset = sample_offset;
522 if (!composition_offset.empty()) {
526 const uint32_t kCompositionOffsetSize =
sizeof(uint32_t) * 2;
527 atom_size = kFullBoxSize +
sizeof(uint32_t) +
528 kCompositionOffsetSize * composition_offset.size();
533 SampleToChunk::SampleToChunk() {}
534 SampleToChunk::~SampleToChunk() {}
535 FourCC SampleToChunk::BoxType()
const {
return FOURCC_STSC; }
538 uint32_t count = chunk_info.size();
540 buffer->ReadWriteUInt32(&count));
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));
548 RCHECK(i == 0 ? chunk_info[i].first_chunk == 1
549 : chunk_info[i].first_chunk > chunk_info[i - 1].first_chunk);
556 kFullBoxSize +
sizeof(uint32_t) +
sizeof(
ChunkInfo) * chunk_info.size();
560 SampleSize::SampleSize() : sample_size(0), sample_count(0) {}
561 SampleSize::~SampleSize() {}
562 FourCC SampleSize::BoxType()
const {
return FOURCC_STSZ; }
566 buffer->ReadWriteUInt32(&sample_size) &&
567 buffer->ReadWriteUInt32(&sample_count));
569 if (sample_size == 0) {
571 sizes.resize(sample_count);
573 DCHECK(sample_count == sizes.size());
574 for (uint32_t i = 0; i < sample_count; ++i)
575 RCHECK(buffer->ReadWriteUInt32(&sizes[i]));
581 atom_size = kFullBoxSize +
sizeof(sample_size) +
sizeof(sample_count) +
582 (sample_size == 0 ?
sizeof(uint32_t) * sizes.size() : 0);
586 CompactSampleSize::CompactSampleSize() : field_size(0) {}
587 CompactSampleSize::~CompactSampleSize() {}
588 FourCC CompactSampleSize::BoxType()
const {
return FOURCC_STZ2; }
591 uint32_t sample_count = sizes.size();
594 buffer->ReadWriteUInt8(&field_size) &&
595 buffer->ReadWriteUInt32(&sample_count));
598 sizes.resize(sample_count + (field_size == 4 ? 1 : 0), 0);
599 switch (field_size) {
601 for (uint32_t i = 0; i < sample_count; i += 2) {
604 RCHECK(buffer->ReadWriteUInt8(&size));
605 sizes[i] = size >> 4;
606 sizes[i + 1] = size & 0x0F;
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));
616 for (uint32_t i = 0; i < sample_count; ++i) {
617 uint8_t size = sizes[i];
618 RCHECK(buffer->ReadWriteUInt8(&size));
623 for (uint32_t i = 0; i < sample_count; ++i) {
624 uint16_t size = sizes[i];
625 RCHECK(buffer->ReadWriteUInt16(&size));
632 sizes.resize(sample_count);
637 atom_size = kFullBoxSize +
sizeof(uint32_t) +
sizeof(uint32_t) +
638 (field_size * sizes.size() + 7) / 8;
642 ChunkOffset::ChunkOffset() {}
643 ChunkOffset::~ChunkOffset() {}
644 FourCC ChunkOffset::BoxType()
const {
return FOURCC_STCO; }
647 uint32_t count = offsets.size();
649 buffer->ReadWriteUInt32(&count));
651 offsets.resize(count);
652 for (uint32_t i = 0; i < count; ++i)
659 kFullBoxSize +
sizeof(uint32_t) +
sizeof(uint32_t) * offsets.size();
663 ChunkLargeOffset::ChunkLargeOffset() {}
664 ChunkLargeOffset::~ChunkLargeOffset() {}
665 FourCC ChunkLargeOffset::BoxType()
const {
return FOURCC_CO64; }
668 uint32_t count = offsets.size();
672 if (count == 0 || IsFitIn32Bits(offsets[count - 1])) {
674 stco.offsets.swap(offsets);
677 stco.offsets.swap(offsets);
683 buffer->ReadWriteUInt32(&count));
685 offsets.resize(count);
686 for (uint32_t i = 0; i < count; ++i)
687 RCHECK(buffer->ReadWriteUInt64(&offsets[i]));
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();
700 SyncSample::SyncSample() {}
701 SyncSample::~SyncSample() {}
702 FourCC SyncSample::BoxType()
const {
return FOURCC_STSS; }
705 uint32_t count = sample_number.size();
707 buffer->ReadWriteUInt32(&count));
709 sample_number.resize(count);
710 for (uint32_t i = 0; i < count; ++i)
711 RCHECK(buffer->ReadWriteUInt32(&sample_number[i]));
718 if (!sample_number.empty()) {
719 atom_size = kFullBoxSize +
sizeof(uint32_t) +
720 sizeof(uint32_t) * sample_number.size();
725 SampleTable::SampleTable() {}
726 SampleTable::~SampleTable() {}
727 FourCC SampleTable::BoxType()
const {
return FOURCC_STBL; }
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);
753 if (reader->
ChildExist(&chunk_large_offset)) {
754 RCHECK(reader->
ReadChild(&chunk_large_offset));
757 RCHECK(reader->
ReadChild(&chunk_offset));
758 chunk_large_offset.offsets.swap(chunk_offset.offsets);
777 EditList::EditList() {}
778 EditList::~EditList() {}
779 FourCC EditList::BoxType()
const {
return FOURCC_ELST; }
782 uint32_t count = edits.size();
786 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
787 for (uint32_t i = 0; i < count; ++i) {
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));
804 for (uint32_t i = 0; i < edits.size(); ++i) {
805 if (!IsFitIn32Bits(edits[i].segment_duration, edits[i].media_time)) {
810 atom_size = kFullBoxSize +
sizeof(uint32_t) +
811 (
sizeof(uint32_t) * (1 + version) * 2 +
sizeof(int16_t) * 2) *
818 FourCC Edit::BoxType()
const {
return FOURCC_EDTS; }
829 if (!list.edits.empty())
834 HandlerReference::HandlerReference() : type(kInvalid) {}
835 HandlerReference::~HandlerReference() {}
836 FourCC HandlerReference::BoxType()
const {
return FOURCC_HDLR; }
839 FourCC hdlr_type = FOURCC_NULL;
840 std::vector<uint8_t> handler_name;
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));
857 buffer->ReadWriteFourCC(&hdlr_type));
860 if (hdlr_type == FOURCC_VIDE) {
862 }
else if (hdlr_type == FOURCC_SOUN) {
869 buffer->ReadWriteVector(&handler_name, handler_name.size()));
876 kFullBoxSize + kFourCCSize + 16 +
877 (type == kVideo ?
sizeof(kVideoHandlerName) :
sizeof(kAudioHandlerName));
881 CodecConfigurationRecord::CodecConfigurationRecord() : box_type(FOURCC_NULL) {}
882 CodecConfigurationRecord::~CodecConfigurationRecord() {}
883 FourCC CodecConfigurationRecord::BoxType()
const {
892 RCHECK(buffer->ReadWriteVector(&data, buffer->
Size() - buffer->
Pos()));
894 RCHECK(buffer->ReadWriteVector(&data, data.size()));
906 PixelAspectRatioBox::PixelAspectRatioBox() : h_spacing(0), v_spacing(0) {}
907 PixelAspectRatioBox::~PixelAspectRatioBox() {}
908 FourCC PixelAspectRatioBox::BoxType()
const {
return FOURCC_PASP; }
912 buffer->ReadWriteUInt32(&h_spacing) &&
913 buffer->ReadWriteUInt32(&v_spacing));
920 if (h_spacing != 0 || v_spacing != 0) {
922 DCHECK(h_spacing != 0 && v_spacing != 0);
923 atom_size = kBoxSize +
sizeof(h_spacing) +
sizeof(v_spacing);
928 VideoSampleEntry::VideoSampleEntry()
929 : format(FOURCC_NULL), data_reference_index(1), width(0), height(0) {}
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.";
939 std::vector<uint8_t> compressor_name;
942 format = buffer->
reader()->type();
944 RCHECK(buffer->ReadWriteUInt32(&
atom_size) &&
945 buffer->ReadWriteFourCC(&format));
947 const FourCC actual_format = GetActualFormat();
948 switch (actual_format) {
950 compressor_name.assign(
952 kAvcCompressorName + arraysize(kAvcCompressorName));
956 compressor_name.assign(
958 kHevcCompressorName + arraysize(kHevcCompressorName));
963 compressor_name.assign(
965 kVpcCompressorName + arraysize(kVpcCompressorName));
968 LOG(ERROR) << FourCCToString(actual_format) <<
" is not supported.";
971 compressor_name.resize(kCompressorNameSize);
974 uint32_t video_resolution = kVideoResolution;
975 uint16_t video_frame_count = kVideoFrameCount;
976 uint16_t video_depth = kVideoDepth;
977 int16_t predefined = -1;
979 buffer->ReadWriteUInt16(&data_reference_index) &&
981 buffer->ReadWriteUInt16(&width) &&
982 buffer->ReadWriteUInt16(&height) &&
983 buffer->ReadWriteUInt32(&video_resolution) &&
984 buffer->ReadWriteUInt32(&video_resolution) &&
986 buffer->ReadWriteUInt16(&video_frame_count) &&
987 buffer->ReadWriteVector(&compressor_name, kCompressorNameSize) &&
988 buffer->ReadWriteUInt16(&video_depth) &&
989 buffer->ReadWriteInt16(&predefined));
993 if (format == FOURCC_ENCV) {
997 while (sinf.type.type != FOURCC_CENC) {
1006 const FourCC actual_format = GetActualFormat();
1007 switch (actual_format) {
1009 codec_config_record.box_type = FOURCC_AVCC;
1013 codec_config_record.box_type = FOURCC_HVCC;
1018 codec_config_record.box_type = FOURCC_VPCC;
1021 LOG(ERROR) << FourCCToString(actual_format) <<
" is not supported.";
1030 atom_size = kBoxSize +
sizeof(data_reference_index) +
sizeof(width) +
1031 sizeof(height) +
sizeof(kVideoResolution) * 2 +
1032 sizeof(kVideoFrameCount) +
sizeof(kVideoDepth) +
1034 codec_config_record.
ComputeSize() + kCompressorNameSize +
1039 ElementaryStreamDescriptor::ElementaryStreamDescriptor() {}
1040 ElementaryStreamDescriptor::~ElementaryStreamDescriptor() {}
1041 FourCC ElementaryStreamDescriptor::BoxType()
const {
return FOURCC_ESDS; }
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()));
1054 DCHECK(buffer->
writer());
1055 es_descriptor.Write(buffer->
writer());
1063 if (es_descriptor.object_type() != kForbidden)
1064 atom_size = kFullBoxSize + es_descriptor.ComputeSize();
1068 DTSSpecificBox::DTSSpecificBox() {}
1069 DTSSpecificBox::~DTSSpecificBox() {}
1070 FourCC DTSSpecificBox::BoxType()
const {
return FOURCC_DDTS; }
1077 buffer->ReadWriteVector(&data, buffer->
Size() - buffer->
Pos()));
1079 RCHECK(buffer->ReadWriteVector(&data, data.size()));
1087 if (data.size() > 0)
1092 AudioSampleEntry::AudioSampleEntry()
1093 : format(FOURCC_NULL),
1094 data_reference_index(1),
1099 AudioSampleEntry::~AudioSampleEntry() {}
1101 FourCC AudioSampleEntry::BoxType()
const {
1102 LOG(ERROR) <<
"AudioSampleEntry should be parsed according to the "
1103 <<
"handler type recovered in its Media ancestor.";
1109 DCHECK(buffer->
reader());
1110 format = buffer->
reader()->type();
1112 RCHECK(buffer->ReadWriteUInt32(&
atom_size) &&
1113 buffer->ReadWriteFourCC(&format));
1119 buffer->ReadWriteUInt16(&data_reference_index) &&
1121 buffer->ReadWriteUInt16(&channelcount) &&
1122 buffer->ReadWriteUInt16(&samplesize) &&
1124 buffer->ReadWriteUInt32(&samplerate));
1129 if (format == FOURCC_ENCA) {
1133 while (sinf.type.type != FOURCC_CENC) {
1149 atom_size = kBoxSize +
sizeof(data_reference_index) +
sizeof(channelcount) +
1150 sizeof(samplesize) +
sizeof(samplerate) + sinf.
ComputeSize() +
1157 MediaHeader::MediaHeader()
1158 : creation_time(0), modification_time(0), timescale(0), duration(0) {
1161 MediaHeader::~MediaHeader() {}
1162 FourCC MediaHeader::BoxType()
const {
return FOURCC_MDHD; }
1167 uint8_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
1170 buffer->ReadWriteUInt32(×cale) &&
1176 std::vector<uint8_t> temp;
1177 RCHECK(buffer->ReadWriteVector(&temp, 2));
1180 bit_reader.SkipBits(1);
1181 for (
int i = 0; i < 3; ++i) {
1182 CHECK(bit_reader.ReadBits(5, &language[i]));
1183 language[i] += 0x60;
1188 const char kUndefinedLanguage[] =
"und";
1189 if (language[0] == 0)
1190 strcpy(language, kUndefinedLanguage);
1194 for (
int i = 0; i < 3; ++i)
1195 lang |= (language[i] - 0x60) << ((2 - i) * 5);
1196 RCHECK(buffer->ReadWriteUInt16(&lang));
1204 version = IsFitIn32Bits(creation_time, modification_time, duration) ? 0 : 1;
1205 atom_size = kFullBoxSize +
sizeof(timescale) +
1206 sizeof(uint32_t) * (1 + version) * 3 + 2 +
1211 VideoMediaHeader::VideoMediaHeader()
1212 : graphicsmode(0), opcolor_red(0), opcolor_green(0), opcolor_blue(0) {
1213 const uint32_t kVideoMediaHeaderFlags = 1;
1214 flags = kVideoMediaHeaderFlags;
1216 VideoMediaHeader::~VideoMediaHeader() {}
1217 FourCC VideoMediaHeader::BoxType()
const {
return FOURCC_VMHD; }
1220 buffer->ReadWriteUInt16(&graphicsmode) &&
1221 buffer->ReadWriteUInt16(&opcolor_red) &&
1222 buffer->ReadWriteUInt16(&opcolor_green) &&
1223 buffer->ReadWriteUInt16(&opcolor_blue));
1228 atom_size = kFullBoxSize +
sizeof(graphicsmode) +
sizeof(opcolor_red) +
1229 sizeof(opcolor_green) +
sizeof(opcolor_blue);
1233 SoundMediaHeader::SoundMediaHeader() : balance(0) {}
1234 SoundMediaHeader::~SoundMediaHeader() {}
1235 FourCC SoundMediaHeader::BoxType()
const {
return FOURCC_SMHD; }
1238 buffer->ReadWriteUInt16(&balance) &&
1244 atom_size = kFullBoxSize +
sizeof(balance) +
sizeof(uint16_t);
1248 DataEntryUrl::DataEntryUrl() {
1249 const uint32_t kDataEntryUrlFlags = 1;
1250 flags = kDataEntryUrlFlags;
1252 DataEntryUrl::~DataEntryUrl() {}
1253 FourCC DataEntryUrl::BoxType()
const {
return FOURCC_URL; }
1257 RCHECK(buffer->ReadWriteVector(&location, buffer->
Size() - buffer->
Pos()));
1259 RCHECK(buffer->ReadWriteVector(&location, location.size()));
1265 atom_size = kBoxSize +
sizeof(flags) + location.size();
1269 DataReference::DataReference() {
1271 data_entry.resize(1);
1273 DataReference::~DataReference() {}
1274 FourCC DataReference::BoxType()
const {
return FOURCC_DREF; }
1276 uint32_t entry_count = data_entry.size();
1278 buffer->ReadWriteUInt32(&entry_count));
1279 data_entry.resize(entry_count);
1281 for (uint32_t i = 0; i < entry_count; ++i)
1287 uint32_t count = data_entry.size();
1288 atom_size = kFullBoxSize +
sizeof(count);
1289 for (uint32_t i = 0; i < count; ++i)
1294 DataInformation::DataInformation() {}
1295 DataInformation::~DataInformation() {}
1296 FourCC DataInformation::BoxType()
const {
return FOURCC_DINF; }
1309 MediaInformation::MediaInformation() {}
1310 MediaInformation::~MediaInformation() {}
1311 FourCC MediaInformation::BoxType()
const {
return FOURCC_MINF; }
1318 if (sample_table.description.type == kVideo)
1320 else if (sample_table.description.type == kAudio)
1330 if (sample_table.description.type == kVideo)
1332 else if (sample_table.description.type == kAudio)
1339 FourCC Media::BoxType()
const {
return FOURCC_MDIA; }
1353 information.sample_table.description.type = handler.type;
1355 DCHECK_EQ(information.sample_table.description.type, handler.type);
1369 FourCC Track::BoxType()
const {
return FOURCC_TRAK; }
1386 MovieExtendsHeader::MovieExtendsHeader() : fragment_duration(0) {}
1387 MovieExtendsHeader::~MovieExtendsHeader() {}
1388 FourCC MovieExtendsHeader::BoxType()
const {
return FOURCC_MEHD; }
1392 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
1400 if (fragment_duration != 0) {
1401 version = IsFitIn32Bits(fragment_duration) ? 0 : 1;
1402 atom_size = kFullBoxSize +
sizeof(uint32_t) * (1 + version);
1407 TrackExtends::TrackExtends()
1409 default_sample_description_index(0),
1410 default_sample_duration(0),
1411 default_sample_size(0),
1412 default_sample_flags(0) {}
1413 TrackExtends::~TrackExtends() {}
1414 FourCC TrackExtends::BoxType()
const {
return FOURCC_TREX; }
1418 buffer->ReadWriteUInt32(&track_id) &&
1419 buffer->ReadWriteUInt32(&default_sample_description_index) &&
1420 buffer->ReadWriteUInt32(&default_sample_duration) &&
1421 buffer->ReadWriteUInt32(&default_sample_size) &&
1422 buffer->ReadWriteUInt32(&default_sample_flags));
1427 atom_size = kFullBoxSize +
sizeof(track_id) +
1428 sizeof(default_sample_description_index) +
1429 sizeof(default_sample_duration) +
sizeof(default_sample_size) +
1430 sizeof(default_sample_flags);
1434 MovieExtends::MovieExtends() {}
1435 MovieExtends::~MovieExtends() {}
1436 FourCC MovieExtends::BoxType()
const {
return FOURCC_MVEX; }
1443 DCHECK(buffer->
reader());
1446 for (uint32_t i = 0; i < tracks.size(); ++i)
1455 if (tracks.size() != 0) {
1457 for (uint32_t i = 0; i < tracks.size(); ++i)
1465 FourCC Movie::BoxType()
const {
return FOURCC_MOOV; }
1478 for (uint32_t i = 0; i < tracks.size(); ++i)
1480 for (uint32_t i = 0; i < pssh.size(); ++i)
1488 for (uint32_t i = 0; i < tracks.size(); ++i)
1490 for (uint32_t i = 0; i < pssh.size(); ++i)
1495 TrackFragmentDecodeTime::TrackFragmentDecodeTime() : decode_time(0) {}
1496 TrackFragmentDecodeTime::~TrackFragmentDecodeTime() {}
1497 FourCC TrackFragmentDecodeTime::BoxType()
const {
return FOURCC_TFDT; }
1501 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
1507 version = IsFitIn32Bits(decode_time) ? 0 : 1;
1508 atom_size = kFullBoxSize +
sizeof(uint32_t) * (1 + version);
1512 MovieFragmentHeader::MovieFragmentHeader() : sequence_number(0) {}
1513 MovieFragmentHeader::~MovieFragmentHeader() {}
1514 FourCC MovieFragmentHeader::BoxType()
const {
return FOURCC_MFHD; }
1518 buffer->ReadWriteUInt32(&sequence_number);
1522 atom_size = kFullBoxSize +
sizeof(sequence_number);
1526 TrackFragmentHeader::TrackFragmentHeader()
1528 sample_description_index(0),
1529 default_sample_duration(0),
1530 default_sample_size(0),
1531 default_sample_flags(0) {}
1533 TrackFragmentHeader::~TrackFragmentHeader() {}
1534 FourCC TrackFragmentHeader::BoxType()
const {
return FOURCC_TFHD; }
1538 buffer->ReadWriteUInt32(&track_id));
1540 if (flags & kBaseDataOffsetPresentMask) {
1545 uint64_t base_data_offset;
1546 RCHECK(buffer->ReadWriteUInt64(&base_data_offset));
1547 DLOG(WARNING) <<
"base-data-offset-present is not expected. Assumes "
1548 "default-base-is-moof.";
1551 if (flags & kSampleDescriptionIndexPresentMask) {
1552 RCHECK(buffer->ReadWriteUInt32(&sample_description_index));
1553 }
else if (buffer->
Reading()) {
1554 sample_description_index = 0;
1557 if (flags & kDefaultSampleDurationPresentMask) {
1558 RCHECK(buffer->ReadWriteUInt32(&default_sample_duration));
1559 }
else if (buffer->
Reading()) {
1560 default_sample_duration = 0;
1563 if (flags & kDefaultSampleSizePresentMask) {
1564 RCHECK(buffer->ReadWriteUInt32(&default_sample_size));
1565 }
else if (buffer->
Reading()) {
1566 default_sample_size = 0;
1569 if (flags & kDefaultSampleFlagsPresentMask)
1570 RCHECK(buffer->ReadWriteUInt32(&default_sample_flags));
1575 atom_size = kFullBoxSize +
sizeof(track_id);
1576 if (flags & kSampleDescriptionIndexPresentMask)
1577 atom_size +=
sizeof(sample_description_index);
1578 if (flags & kDefaultSampleDurationPresentMask)
1579 atom_size +=
sizeof(default_sample_duration);
1580 if (flags & kDefaultSampleSizePresentMask)
1581 atom_size +=
sizeof(default_sample_size);
1582 if (flags & kDefaultSampleFlagsPresentMask)
1583 atom_size +=
sizeof(default_sample_flags);
1587 TrackFragmentRun::TrackFragmentRun() : sample_count(0), data_offset(0) {}
1588 TrackFragmentRun::~TrackFragmentRun() {}
1589 FourCC TrackFragmentRun::BoxType()
const {
return FOURCC_TRUN; }
1597 if (flags & kSampleCompTimeOffsetsPresentMask) {
1598 for (uint32_t i = 0; i < sample_count; ++i) {
1599 if (sample_composition_time_offsets[i] < 0) {
1608 buffer->ReadWriteUInt32(&sample_count));
1610 bool data_offset_present = (flags & kDataOffsetPresentMask) != 0;
1611 bool first_sample_flags_present = (flags & kFirstSampleFlagsPresentMask) != 0;
1612 bool sample_duration_present = (flags & kSampleDurationPresentMask) != 0;
1613 bool sample_size_present = (flags & kSampleSizePresentMask) != 0;
1614 bool sample_flags_present = (flags & kSampleFlagsPresentMask) != 0;
1615 bool sample_composition_time_offsets_present =
1616 (flags & kSampleCompTimeOffsetsPresentMask) != 0;
1618 if (data_offset_present) {
1619 RCHECK(buffer->ReadWriteUInt32(&data_offset));
1630 uint32_t first_sample_flags;
1633 if (first_sample_flags_present)
1634 RCHECK(buffer->ReadWriteUInt32(&first_sample_flags));
1636 if (sample_duration_present)
1637 sample_durations.resize(sample_count);
1638 if (sample_size_present)
1639 sample_sizes.resize(sample_count);
1640 if (sample_flags_present)
1641 sample_flags.resize(sample_count);
1642 if (sample_composition_time_offsets_present)
1643 sample_composition_time_offsets.resize(sample_count);
1645 if (first_sample_flags_present) {
1646 first_sample_flags = sample_flags[0];
1647 DCHECK(sample_flags.size() == 1);
1648 RCHECK(buffer->ReadWriteUInt32(&first_sample_flags));
1651 if (sample_duration_present)
1652 DCHECK(sample_durations.size() == sample_count);
1653 if (sample_size_present)
1654 DCHECK(sample_sizes.size() == sample_count);
1655 if (sample_flags_present)
1656 DCHECK(sample_flags.size() == sample_count);
1657 if (sample_composition_time_offsets_present)
1658 DCHECK(sample_composition_time_offsets.size() == sample_count);
1661 for (uint32_t i = 0; i < sample_count; ++i) {
1662 if (sample_duration_present)
1663 RCHECK(buffer->ReadWriteUInt32(&sample_durations[i]));
1664 if (sample_size_present)
1665 RCHECK(buffer->ReadWriteUInt32(&sample_sizes[i]));
1666 if (sample_flags_present)
1667 RCHECK(buffer->ReadWriteUInt32(&sample_flags[i]));
1669 if (sample_composition_time_offsets_present) {
1671 uint32_t sample_offset = sample_composition_time_offsets[i];
1672 RCHECK(buffer->ReadWriteUInt32(&sample_offset));
1673 sample_composition_time_offsets[i] = sample_offset;
1675 int32_t sample_offset = sample_composition_time_offsets[i];
1676 RCHECK(buffer->ReadWriteInt32(&sample_offset));
1677 sample_composition_time_offsets[i] = sample_offset;
1683 if (first_sample_flags_present) {
1684 if (sample_flags.size() == 0) {
1685 sample_flags.push_back(first_sample_flags);
1687 sample_flags[0] = first_sample_flags;
1695 atom_size = kFullBoxSize +
sizeof(sample_count);
1696 if (flags & kDataOffsetPresentMask)
1698 if (flags & kFirstSampleFlagsPresentMask)
1700 uint32_t fields = (flags & kSampleDurationPresentMask ? 1 : 0) +
1701 (flags & kSampleSizePresentMask ? 1 : 0) +
1702 (flags & kSampleFlagsPresentMask ? 1 : 0) +
1703 (flags & kSampleCompTimeOffsetsPresentMask ? 1 : 0);
1704 atom_size += fields *
sizeof(uint32_t) * sample_count;
1708 SampleToGroup::SampleToGroup() : grouping_type(0), grouping_type_parameter(0) {}
1709 SampleToGroup::~SampleToGroup() {}
1710 FourCC SampleToGroup::BoxType()
const {
return FOURCC_SBGP; }
1714 buffer->ReadWriteUInt32(&grouping_type));
1716 RCHECK(buffer->ReadWriteUInt32(&grouping_type_parameter));
1718 if (grouping_type != FOURCC_SEIG) {
1720 DLOG(WARNING) <<
"Sample group "
1721 << FourCCToString(static_cast<FourCC>(grouping_type))
1722 <<
" is not supported.";
1726 uint32_t count = entries.size();
1727 RCHECK(buffer->ReadWriteUInt32(&count));
1728 entries.resize(count);
1729 for (uint32_t i = 0; i < count; ++i) {
1730 RCHECK(buffer->ReadWriteUInt32(&entries[i].sample_count) &&
1731 buffer->ReadWriteUInt32(&entries[i].group_description_index));
1739 if (!entries.empty()) {
1740 atom_size = kFullBoxSize +
sizeof(grouping_type) +
1741 (version == 1 ?
sizeof(grouping_type_parameter) : 0) +
1742 sizeof(uint32_t) + entries.size() *
sizeof(entries[0]);
1747 CencSampleEncryptionInfoEntry::CencSampleEncryptionInfoEntry()
1748 : is_encrypted(false), iv_size(0) {
1750 CencSampleEncryptionInfoEntry::~CencSampleEncryptionInfoEntry() {};
1752 SampleGroupDescription::SampleGroupDescription() : grouping_type(0) {}
1753 SampleGroupDescription::~SampleGroupDescription() {}
1754 FourCC SampleGroupDescription::BoxType()
const {
return FOURCC_SGPD; }
1758 buffer->ReadWriteUInt32(&grouping_type));
1760 if (grouping_type != FOURCC_SEIG) {
1762 DLOG(WARNING) <<
"Sample group '" << grouping_type <<
"' is not supported.";
1766 const size_t kEntrySize =
sizeof(uint32_t) + kCencKeyIdSize;
1767 uint32_t default_length = 0;
1770 RCHECK(buffer->ReadWriteUInt32(&default_length));
1771 RCHECK(default_length == 0 || default_length >= kEntrySize);
1773 default_length = kEntrySize;
1774 RCHECK(buffer->ReadWriteUInt32(&default_length));
1778 uint32_t count = entries.size();
1779 RCHECK(buffer->ReadWriteUInt32(&count));
1780 entries.resize(count);
1781 for (uint32_t i = 0; i < count; ++i) {
1783 if (buffer->
Reading() && default_length == 0) {
1784 uint32_t description_length = 0;
1785 RCHECK(buffer->ReadWriteUInt32(&description_length));
1786 RCHECK(description_length >= kEntrySize);
1791 if (entries[i].key_id.size() != kCencKeyIdSize) {
1792 LOG(WARNING) <<
"CENC defines key id length of " << kCencKeyIdSize
1793 <<
" bytes; got " << entries[i].key_id.size()
1794 <<
". Resized accordingly.";
1795 entries[i].key_id.resize(kCencKeyIdSize);
1799 uint8_t flag = entries[i].is_encrypted ? 1 : 0;
1801 buffer->ReadWriteUInt8(&flag) &&
1802 buffer->ReadWriteUInt8(&entries[i].iv_size) &&
1803 buffer->ReadWriteVector(&entries[i].key_id, kCencKeyIdSize));
1806 entries[i].is_encrypted = (flag != 0);
1807 if (entries[i].is_encrypted) {
1808 RCHECK(entries[i].iv_size == 8 || entries[i].iv_size == 16);
1810 RCHECK(entries[i].iv_size == 0);
1822 if (!entries.empty()) {
1823 const size_t kEntrySize =
sizeof(uint32_t) + kCencKeyIdSize;
1824 atom_size = kFullBoxSize +
sizeof(grouping_type) +
1825 (version == 1 ?
sizeof(uint32_t) : 0) +
sizeof(uint32_t) +
1826 entries.size() * kEntrySize;
1831 TrackFragment::TrackFragment() : decode_time_absent(false) {}
1832 TrackFragment::~TrackFragment() {}
1833 FourCC TrackFragment::BoxType()
const {
return FOURCC_TRAF; }
1840 DCHECK(buffer->
reader());
1842 if (!decode_time_absent)
1850 while (sample_to_group.grouping_type != FOURCC_SEIG &&
1854 while (sample_group_description.grouping_type != FOURCC_SEIG &&
1859 if (!decode_time_absent)
1861 for (uint32_t i = 0; i < runs.size(); ++i)
1875 for (uint32_t i = 0; i < runs.size(); ++i)
1880 MovieFragment::MovieFragment() {}
1881 MovieFragment::~MovieFragment() {}
1882 FourCC MovieFragment::BoxType()
const {
return FOURCC_MOOF; }
1894 for (uint32_t i = 0; i < tracks.size(); ++i)
1896 for (uint32_t i = 0; i < pssh.size(); ++i)
1904 for (uint32_t i = 0; i < tracks.size(); ++i)
1906 for (uint32_t i = 0; i < pssh.size(); ++i)
1911 SegmentIndex::SegmentIndex()
1914 earliest_presentation_time(0),
1916 SegmentIndex::~SegmentIndex() {}
1917 FourCC SegmentIndex::BoxType()
const {
return FOURCC_SIDX; }
1921 buffer->ReadWriteUInt32(&reference_id) &&
1922 buffer->ReadWriteUInt32(×cale));
1924 size_t num_bytes = (version == 1) ?
sizeof(uint64_t) :
sizeof(uint32_t);
1929 uint16_t reference_count = references.size();
1931 buffer->ReadWriteUInt16(&reference_count));
1932 references.resize(reference_count);
1934 uint32_t reference_type_size;
1936 for (uint32_t i = 0; i < reference_count; ++i) {
1938 reference_type_size = references[i].referenced_size;
1939 if (references[i].reference_type)
1940 reference_type_size |= (1 << 31);
1941 sap = (references[i].sap_type << 28) | references[i].sap_delta_time;
1942 if (references[i].starts_with_sap)
1945 RCHECK(buffer->ReadWriteUInt32(&reference_type_size) &&
1946 buffer->ReadWriteUInt32(&references[i].subsegment_duration) &&
1947 buffer->ReadWriteUInt32(&sap));
1949 references[i].reference_type = (reference_type_size >> 31) ?
true :
false;
1950 references[i].referenced_size = reference_type_size & ~(1 << 31);
1951 references[i].starts_with_sap = (sap >> 31) ?
true :
false;
1952 references[i].sap_type =
1953 static_cast<SegmentReference::SAPType
>((sap >> 28) & 0x07);
1954 references[i].sap_delta_time = sap & ~(0xF << 28);
1961 version = IsFitIn32Bits(earliest_presentation_time, first_offset) ? 0 : 1;
1962 atom_size = kFullBoxSize +
sizeof(reference_id) +
sizeof(timescale) +
1963 sizeof(uint32_t) * (1 + version) * 2 + 2 *
sizeof(uint16_t) +
1964 3 *
sizeof(uint32_t) * references.size();
1968 MediaData::MediaData() : data_size(0) {}
1969 MediaData::~MediaData() {}
1970 FourCC MediaData::BoxType()
const {
return FOURCC_MDAT; }
1972 void MediaData::Write(BufferWriter* buffer) {
1973 buffer->AppendInt(ComputeSize());
1974 buffer->AppendInt(static_cast<uint32_t>(BoxType()));
1977 uint32_t MediaData::ComputeSize() {
1978 return kBoxSize + data_size;
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.
uint32_t ComputeSize() override
uint32_t ComputeSize() override
uint32_t ComputeSize() override
bool ReadWrite(BoxBuffer *buffer) override
Read/write the mp4 box from/to BoxBuffer.