DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerator
box_definitions.h
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 #ifndef MEDIA_FORMATS_MP4_BOX_DEFINITIONS_H_
6 #define MEDIA_FORMATS_MP4_BOX_DEFINITIONS_H_
7 
8 #include <vector>
9 
10 #include "packager/media/base/decrypt_config.h"
11 #include "packager/media/formats/mp4/aac_audio_specific_config.h"
12 #include "packager/media/formats/mp4/box.h"
13 #include "packager/media/formats/mp4/es_descriptor.h"
14 #include "packager/media/formats/mp4/fourccs.h"
15 
16 namespace edash_packager {
17 namespace media {
18 
19 class BufferReader;
20 
21 namespace mp4 {
22 
23 enum TrackType {
24  kInvalid = 0,
25  kVideo,
26  kAudio,
27  kHint,
28  kText,
29 };
30 
31 class BoxBuffer;
32 
33 #define DECLARE_BOX_METHODS(T) \
34  public: \
35  T(); \
36  ~T() override; \
37  FourCC BoxType() const override; \
38  \
39  private: \
40  bool ReadWriteInternal(BoxBuffer* buffer) override; \
41  uint32_t ComputeSizeInternal() override; \
42  \
43  public:
44 
45 struct FileType : Box {
46  DECLARE_BOX_METHODS(FileType);
47 
48  FourCC major_brand;
49  uint32_t minor_version;
50  std::vector<FourCC> compatible_brands;
51 };
52 
54  FourCC BoxType() const override;
55 };
56 
58  DECLARE_BOX_METHODS(ProtectionSystemSpecificHeader);
59 
60  std::vector<uint8_t> system_id;
61  std::vector<uint8_t> data;
62  std::vector<uint8_t> raw_box;
63 };
64 
66  DECLARE_BOX_METHODS(SampleAuxiliaryInformationOffset);
67 
68  std::vector<uint64_t> offsets;
69 };
70 
72  DECLARE_BOX_METHODS(SampleAuxiliaryInformationSize);
73 
74  uint8_t default_sample_info_size;
75  uint32_t sample_count;
76  std::vector<uint8_t> sample_info_sizes;
77 };
78 
88  bool ReadWrite(uint8_t iv_size,
89  bool has_subsamples,
90  BoxBuffer* buffer);
97  bool ParseFromBuffer(uint8_t iv_size,
98  bool has_subsamples,
99  BufferReader* reader);
101  uint32_t ComputeSize() const;
104  uint32_t GetTotalSizeOfSubsamples() const;
105 
106  std::vector<uint8_t> initialization_vector;
107  std::vector<SubsampleEntry> subsamples;
108 };
109 
111  enum SampleEncryptionFlags {
112  kUseSubsampleEncryption = 2,
113  };
114 
115  DECLARE_BOX_METHODS(SampleEncryption);
122  size_t iv_size,
123  std::vector<SampleEncryptionEntry>* sample_encryption_entries) const;
124 
127  std::vector<uint8_t> sample_encryption_data;
128 
129  size_t iv_size;
130  std::vector<SampleEncryptionEntry> sample_encryption_entries;
131 };
132 
133 struct OriginalFormat : Box {
134  DECLARE_BOX_METHODS(OriginalFormat);
135 
136  FourCC format;
137 };
138 
139 struct SchemeType : FullBox {
140  DECLARE_BOX_METHODS(SchemeType);
141 
142  FourCC type;
143  uint32_t version;
144 };
145 
147  DECLARE_BOX_METHODS(TrackEncryption);
148 
149  // Note: this definition is specific to the CENC protection type.
150  bool is_encrypted;
151  uint8_t default_iv_size;
152  std::vector<uint8_t> default_kid;
153 };
154 
155 struct SchemeInfo : Box {
156  DECLARE_BOX_METHODS(SchemeInfo);
157 
158  TrackEncryption track_encryption;
159 };
160 
162  DECLARE_BOX_METHODS(ProtectionSchemeInfo);
163 
164  OriginalFormat format;
165  SchemeType type;
166  SchemeInfo info;
167 };
168 
170  DECLARE_BOX_METHODS(MovieHeader);
171 
172  uint64_t creation_time;
173  uint64_t modification_time;
174  uint32_t timescale;
175  uint64_t duration;
176  int32_t rate;
177  int16_t volume;
178  uint32_t next_track_id;
179 };
180 
182  enum TrackHeaderFlags {
183  kTrackEnabled = 0x000001,
184  kTrackInMovie = 0x000002,
185  kTrackInPreview = 0x000004,
186  };
187 
188  DECLARE_BOX_METHODS(TrackHeader);
189 
190  uint64_t creation_time;
191  uint64_t modification_time;
192  uint32_t track_id;
193  uint64_t duration;
194  int16_t layer;
195  int16_t alternate_group;
196  int16_t volume;
197  // width and height specify the track's visual presentation size as
198  // fixed-point 16.16 values.
199  uint32_t width;
200  uint32_t height;
201 };
202 
204  uint64_t segment_duration;
205  int64_t media_time;
206  int16_t media_rate_integer;
207  int16_t media_rate_fraction;
208 };
209 
210 struct EditList : FullBox {
211  DECLARE_BOX_METHODS(EditList);
212 
213  std::vector<EditListEntry> edits;
214 };
215 
216 struct Edit : Box {
217  DECLARE_BOX_METHODS(Edit);
218 
219  EditList list;
220 };
221 
223  DECLARE_BOX_METHODS(HandlerReference);
224 
225  FourCC handler_type;
226 };
227 
228 struct Language {
229  bool ReadWrite(BoxBuffer* buffer);
230  uint32_t ComputeSize() const;
231 
232  std::string code;
233 };
234 
236 struct PrivFrame {
237  bool ReadWrite(BoxBuffer* buffer);
238  uint32_t ComputeSize() const;
239 
240  std::string owner;
241  std::string value;
242 };
243 
246 struct ID3v2 : FullBox {
247  DECLARE_BOX_METHODS(ID3v2);
248 
249  Language language;
250 
253 };
254 
255 struct Metadata : FullBox {
256  DECLARE_BOX_METHODS(Metadata);
257 
258  HandlerReference handler;
259  ID3v2 id3v2;
260 };
261 
263  DECLARE_BOX_METHODS(CodecConfigurationRecord);
264 
265  FourCC box_type;
266  // Contains full codec configuration record, including possible extension
267  // boxes.
268  std::vector<uint8_t> data;
269 };
270 
272  DECLARE_BOX_METHODS(PixelAspectRatio);
273 
274  uint32_t h_spacing;
275  uint32_t v_spacing;
276 };
277 
279  DECLARE_BOX_METHODS(VideoSampleEntry);
280  // Returns actual format of this sample entry.
281  FourCC GetActualFormat() const {
282  return format == FOURCC_ENCV ? sinf.format.format : format;
283  }
284 
285  FourCC format;
286  uint16_t data_reference_index;
287  uint16_t width;
288  uint16_t height;
289 
290  PixelAspectRatio pixel_aspect;
292  CodecConfigurationRecord codec_config_record;
293 };
294 
296  DECLARE_BOX_METHODS(ElementaryStreamDescriptor);
297 
298  AACAudioSpecificConfig aac_audio_specific_config;
299  ESDescriptor es_descriptor;
300 };
301 
302 struct DTSSpecific : Box {
303  DECLARE_BOX_METHODS(DTSSpecific);
304 
305  uint32_t sampling_frequency;
306  uint32_t max_bitrate;
307  uint32_t avg_bitrate;
308  uint8_t pcm_sample_depth;
309  std::vector<uint8_t> extra_data;
310 };
311 
312 struct AC3Specific : Box {
313  DECLARE_BOX_METHODS(AC3Specific);
314 
315  std::vector<uint8_t> data;
316 };
317 
319  DECLARE_BOX_METHODS(AudioSampleEntry);
320  // Returns actual format of this sample entry.
321  FourCC GetActualFormat() const {
322  return format == FOURCC_ENCA ? sinf.format.format : format;
323  }
324 
325  FourCC format;
326  uint16_t data_reference_index;
327  uint16_t channelcount;
328  uint16_t samplesize;
329  uint32_t samplerate;
330 
333  DTSSpecific ddts;
334  AC3Specific dac3;
335 };
336 
338  DECLARE_BOX_METHODS(WebVTTConfigurationBox);
339  std::string config;
340 };
341 
343  DECLARE_BOX_METHODS(WebVTTSourceLabelBox);
344  std::string source_label;
345 };
346 
348  DECLARE_BOX_METHODS(WVTTSampleEntry);
349 
350  uint16_t data_reference_index;
351 
352  WebVTTConfigurationBox config;
353  WebVTTSourceLabelBox label;
354  // Optional MPEG4BitRateBox.
355 };
356 
358  DECLARE_BOX_METHODS(SampleDescription);
359 
360  TrackType type;
361  // TODO(kqyang): Clean up the code to have one single member, e.g. by creating
362  // SampleEntry struct, std::vector<SampleEntry> sample_entries.
363  std::vector<VideoSampleEntry> video_entries;
364  std::vector<AudioSampleEntry> audio_entries;
365  std::vector<WVTTSampleEntry> wvtt_entries;
366 };
367 
368 struct DecodingTime {
369  uint32_t sample_count;
370  uint32_t sample_delta;
371 };
372 
373 // stts.
375  DECLARE_BOX_METHODS(DecodingTimeToSample);
376 
377  std::vector<DecodingTime> decoding_time;
378 };
379 
381  uint32_t sample_count;
382  // If version == 0, sample_offset is uint32_t;
383  // If version == 1, sample_offset is int32_t.
384  // Use int64_t so both can be supported properly.
385  int64_t sample_offset;
386 };
387 
388 // ctts. Optional.
390  DECLARE_BOX_METHODS(CompositionTimeToSample);
391 
392  std::vector<CompositionOffset> composition_offset;
393 };
394 
395 struct ChunkInfo {
396  uint32_t first_chunk;
397  uint32_t samples_per_chunk;
398  uint32_t sample_description_index;
399 };
400 
401 // stsc.
403  DECLARE_BOX_METHODS(SampleToChunk);
404 
405  std::vector<ChunkInfo> chunk_info;
406 };
407 
408 // stsz.
409 struct SampleSize : FullBox {
410  DECLARE_BOX_METHODS(SampleSize);
411 
412  uint32_t sample_size;
413  uint32_t sample_count;
414  std::vector<uint32_t> sizes;
415 };
416 
417 // stz2.
419  DECLARE_BOX_METHODS(CompactSampleSize);
420 
421  uint8_t field_size;
422  std::vector<uint32_t> sizes;
423 };
424 
425 // co64.
427  DECLARE_BOX_METHODS(ChunkLargeOffset);
428 
429  std::vector<uint64_t> offsets;
430 };
431 
432 // stco.
434  DECLARE_BOX_METHODS(ChunkOffset);
435 };
436 
437 // stss. Optional.
438 struct SyncSample : FullBox {
439  DECLARE_BOX_METHODS(SyncSample);
440 
441  std::vector<uint32_t> sample_number;
442 };
443 
444 struct SampleTable : Box {
445  DECLARE_BOX_METHODS(SampleTable);
446 
447  SampleDescription description;
448  DecodingTimeToSample decoding_time_to_sample;
449  CompositionTimeToSample composition_time_to_sample;
450  SampleToChunk sample_to_chunk;
451  // Either SampleSize or CompactSampleSize must present. Store in SampleSize.
452  SampleSize sample_size;
453  // Either ChunkOffset or ChunkLargeOffset must present. Store in
454  // ChunkLargeOffset.
455  ChunkLargeOffset chunk_large_offset;
456  SyncSample sync_sample;
457 };
458 
460  DECLARE_BOX_METHODS(MediaHeader);
461 
462  uint64_t creation_time;
463  uint64_t modification_time;
464  uint32_t timescale;
465  uint64_t duration;
466  Language language;
467 };
468 
470  DECLARE_BOX_METHODS(VideoMediaHeader);
471 
472  uint16_t graphicsmode;
473  uint16_t opcolor_red;
474  uint16_t opcolor_green;
475  uint16_t opcolor_blue;
476 };
477 
479  DECLARE_BOX_METHODS(SoundMediaHeader);
480 
481  uint16_t balance;
482 };
483 
485  DECLARE_BOX_METHODS(SubtitleMediaHeader);
486 };
487 
489  DECLARE_BOX_METHODS(DataEntryUrl);
490 
491  std::vector<uint8_t> location;
492 };
493 
495  DECLARE_BOX_METHODS(DataReference);
496 
497  // data entry can be either url or urn box. Fix to url box for now.
498  std::vector<DataEntryUrl> data_entry;
499 };
500 
502  DECLARE_BOX_METHODS(DataInformation);
503 
504  DataReference dref;
505 };
506 
508  DECLARE_BOX_METHODS(MediaInformation);
509 
510  DataInformation dinf;
511  SampleTable sample_table;
512  // Exactly one specific meida header shall be present, vmhd, smhd, hmhd, nmhd.
513  VideoMediaHeader vmhd;
514  SoundMediaHeader smhd;
515  SubtitleMediaHeader sthd;
516 };
517 
518 struct Media : Box {
519  DECLARE_BOX_METHODS(Media);
520 
521  MediaHeader header;
522  HandlerReference handler;
523  MediaInformation information;
524 };
525 
526 struct Track : Box {
527  DECLARE_BOX_METHODS(Track);
528 
529  TrackHeader header;
530  Media media;
531  Edit edit;
532  SampleEncryption sample_encryption;
533 };
534 
536  DECLARE_BOX_METHODS(MovieExtendsHeader);
537 
538  uint64_t fragment_duration;
539 };
540 
542  DECLARE_BOX_METHODS(TrackExtends);
543 
544  uint32_t track_id;
545  uint32_t default_sample_description_index;
546  uint32_t default_sample_duration;
547  uint32_t default_sample_size;
548  uint32_t default_sample_flags;
549 };
550 
551 struct MovieExtends : Box {
552  DECLARE_BOX_METHODS(MovieExtends);
553 
554  MovieExtendsHeader header;
555  std::vector<TrackExtends> tracks;
556 };
557 
558 struct Movie : Box {
559  DECLARE_BOX_METHODS(Movie);
560 
561  MovieHeader header;
562  Metadata metadata; // Used to hold version information.
563  MovieExtends extends;
564  std::vector<Track> tracks;
565  std::vector<ProtectionSystemSpecificHeader> pssh;
566 };
567 
569  DECLARE_BOX_METHODS(TrackFragmentDecodeTime);
570 
571  uint64_t decode_time;
572 };
573 
575  DECLARE_BOX_METHODS(MovieFragmentHeader);
576 
577  uint32_t sequence_number;
578 };
579 
581  enum TrackFragmentFlagsMasks {
582  kBaseDataOffsetPresentMask = 0x000001,
583  kSampleDescriptionIndexPresentMask = 0x000002,
584  kDefaultSampleDurationPresentMask = 0x000008,
585  kDefaultSampleSizePresentMask = 0x000010,
586  kDefaultSampleFlagsPresentMask = 0x000020,
587  kDurationIsEmptyMask = 0x010000,
588  kDefaultBaseIsMoofMask = 0x020000,
589  };
590 
591  enum SampleFlagsMasks {
592  kReservedMask = 0xFC000000,
593  kSampleDependsOnMask = 0x03000000,
594  kSampleIsDependedOnMask = 0x00C00000,
595  kSampleHasRedundancyMask = 0x00300000,
596  kSamplePaddingValueMask = 0x000E0000,
597  kNonKeySampleMask = 0x00010000,
598  kSampleDegradationPriorityMask = 0x0000FFFF,
599  };
600 
601  DECLARE_BOX_METHODS(TrackFragmentHeader);
602 
603  uint32_t track_id;
604  uint32_t sample_description_index;
605  uint32_t default_sample_duration;
606  uint32_t default_sample_size;
607  uint32_t default_sample_flags;
608 };
609 
611  enum TrackFragmentFlagsMasks {
612  kDataOffsetPresentMask = 0x000001,
613  kFirstSampleFlagsPresentMask = 0x000004,
614  kSampleDurationPresentMask = 0x000100,
615  kSampleSizePresentMask = 0x000200,
616  kSampleFlagsPresentMask = 0x000400,
617  kSampleCompTimeOffsetsPresentMask = 0x000800,
618  };
619 
620  DECLARE_BOX_METHODS(TrackFragmentRun);
621 
622  uint32_t sample_count;
623  uint32_t data_offset;
624  std::vector<uint32_t> sample_flags;
625  std::vector<uint32_t> sample_sizes;
626  std::vector<uint32_t> sample_durations;
627  std::vector<int64_t> sample_composition_time_offsets;
628 };
629 
631  enum GroupDescriptionIndexBase {
632  kTrackGroupDescriptionIndexBase = 0,
633  kTrackFragmentGroupDescriptionIndexBase = 0x10000,
634  };
635 
636  uint32_t sample_count;
637  uint32_t group_description_index;
638 };
639 
641  DECLARE_BOX_METHODS(SampleToGroup);
642 
643  uint32_t grouping_type;
644  uint32_t grouping_type_parameter; // Version 1 only.
645  std::vector<SampleToGroupEntry> entries;
646 };
647 
651 
652  bool is_encrypted;
653  uint8_t iv_size;
654  std::vector<uint8_t> key_id;
655 };
656 
658  DECLARE_BOX_METHODS(SampleGroupDescription);
659 
660  uint32_t grouping_type;
661  std::vector<CencSampleEncryptionInfoEntry> entries;
662 };
663 
664 struct TrackFragment : Box {
665  DECLARE_BOX_METHODS(TrackFragment);
666 
667  TrackFragmentHeader header;
668  std::vector<TrackFragmentRun> runs;
669  bool decode_time_absent;
670  TrackFragmentDecodeTime decode_time;
671  SampleToGroup sample_to_group;
672  SampleGroupDescription sample_group_description;
673  SampleAuxiliaryInformationSize auxiliary_size;
674  SampleAuxiliaryInformationOffset auxiliary_offset;
675  SampleEncryption sample_encryption;
676 };
677 
678 struct MovieFragment : Box {
679  DECLARE_BOX_METHODS(MovieFragment);
680 
681  MovieFragmentHeader header;
682  std::vector<TrackFragment> tracks;
683  std::vector<ProtectionSystemSpecificHeader> pssh;
684 };
685 
687  enum SAPType {
688  TypeUnknown = 0,
689  Type1 = 1, // T(ept) = T(dec) = T(sap) = T(ptf)
690  Type2 = 2, // T(ept) = T(dec) = T(sap) < T(ptf)
691  Type3 = 3, // T(ept) < T(dec) = T(sap) <= T(ptf)
692  Type4 = 4, // T(ept) <= T(ptf) < T(dec) = T(sap)
693  Type5 = 5, // T(ept) = T(dec) < T(sap)
694  Type6 = 6, // T(ept) < T(dec) < T(sap)
695  };
696 
697  bool reference_type;
698  uint32_t referenced_size;
699  uint32_t subsegment_duration;
700  bool starts_with_sap;
701  SAPType sap_type;
702  uint32_t sap_delta_time;
703  // We add this field to keep track of earliest_presentation_time in this
704  // subsegment. It is not part of SegmentReference.
705  uint64_t earliest_presentation_time;
706 };
707 
709  DECLARE_BOX_METHODS(SegmentIndex);
710 
711  uint32_t reference_id;
712  uint32_t timescale;
713  uint64_t earliest_presentation_time;
714  uint64_t first_offset;
715  std::vector<SegmentReference> references;
716 };
717 
718 // The actual data is parsed and written separately.
719 struct MediaData : Box {
720  DECLARE_BOX_METHODS(MediaData);
721 
722  uint32_t data_size;
723 };
724 
725 struct CueSourceIDBox : Box {
726  DECLARE_BOX_METHODS(CueSourceIDBox);
727  int32_t source_id;
728 };
729 
730 struct CueTimeBox : Box {
731  DECLARE_BOX_METHODS(CueTimeBox);
732  std::string cue_current_time;
733 };
734 
735 struct CueIDBox : Box {
736  DECLARE_BOX_METHODS(CueIDBox);
737  std::string cue_id;
738 };
739 
740 struct CueSettingsBox : Box {
741  DECLARE_BOX_METHODS(CueSettingsBox);
742  std::string settings;
743 };
744 
745 struct CuePayloadBox : Box {
746  DECLARE_BOX_METHODS(CuePayloadBox);
747  std::string cue_text;
748 };
749 
750 struct VTTEmptyCueBox : Box {
751  DECLARE_BOX_METHODS(VTTEmptyCueBox);
752 };
753 
755  DECLARE_BOX_METHODS(VTTAdditionalTextBox);
756  std::string cue_additional_text;
757 };
758 
759 struct VTTCueBox : Box {
760  DECLARE_BOX_METHODS(VTTCueBox);
761 
762  CueSourceIDBox cue_source_id;
763  CueIDBox cue_id;
764  CueTimeBox cue_time;
765  CueSettingsBox cue_settings;
766  CuePayloadBox cue_payload;
767 };
768 
769 #undef DECLARE_BOX
770 
771 } // namespace mp4
772 } // namespace media
773 } // namespace edash_packager
774 
775 #endif // MEDIA_FORMATS_MP4_BOX_DEFINITIONS_H_
Implemented per http://id3.org/id3v2.4.0-frames.
bool ParseFromSampleEncryptionData(size_t iv_size, std::vector< SampleEncryptionEntry > *sample_encryption_entries) const
PrivFrame private_frame
We only support PrivateFrame in ID3. Other frames are ignored.
bool ParseFromBuffer(uint8_t iv_size, bool has_subsamples, BufferReader *reader)
bool ReadWrite(uint8_t iv_size, bool has_subsamples, BoxBuffer *buffer)