DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
mp4_muxer.cc
1 // Copyright 2014 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #include "packager/media/formats/mp4/mp4_muxer.h"
8 
9 #include "packager/base/time/clock.h"
10 #include "packager/base/time/time.h"
11 #include "packager/file/file.h"
12 #include "packager/media/base/aes_encryptor.h"
13 #include "packager/media/base/audio_stream_info.h"
14 #include "packager/media/base/fourccs.h"
15 #include "packager/media/base/key_source.h"
16 #include "packager/media/base/media_sample.h"
17 #include "packager/media/base/text_stream_info.h"
18 #include "packager/media/base/video_stream_info.h"
19 #include "packager/media/codecs/es_descriptor.h"
20 #include "packager/media/event/muxer_listener.h"
21 #include "packager/media/formats/mp4/box_definitions.h"
22 #include "packager/media/formats/mp4/multi_segment_segmenter.h"
23 #include "packager/media/formats/mp4/single_segment_segmenter.h"
24 
25 namespace shaka {
26 namespace media {
27 namespace mp4 {
28 
29 namespace {
30 
31 // Sets the range start and end value from offset and size.
32 // |start| and |end| are for byte-range-spec specified in RFC2616.
33 void SetStartAndEndFromOffsetAndSize(size_t offset,
34  size_t size,
35  Range* range) {
36  DCHECK(range);
37  range->start = static_cast<uint32_t>(offset);
38  // Note that ranges are inclusive. So we need - 1.
39  range->end = range->start + static_cast<uint32_t>(size) - 1;
40 }
41 
42 FourCC CodecToFourCC(Codec codec, H26xStreamFormat h26x_stream_format) {
43  switch (codec) {
44  case kCodecH264:
45  return h26x_stream_format ==
46  H26xStreamFormat::kNalUnitStreamWithParameterSetNalus
47  ? FOURCC_avc3
48  : FOURCC_avc1;
49  case kCodecH265:
50  return h26x_stream_format ==
51  H26xStreamFormat::kNalUnitStreamWithParameterSetNalus
52  ? FOURCC_hev1
53  : FOURCC_hvc1;
54  case kCodecVP8:
55  return FOURCC_vp08;
56  case kCodecVP9:
57  return FOURCC_vp09;
58  case kCodecVP10:
59  return FOURCC_vp10;
60  case kCodecAAC:
61  return FOURCC_mp4a;
62  case kCodecAC3:
63  return FOURCC_ac_3;
64  case kCodecDTSC:
65  return FOURCC_dtsc;
66  case kCodecDTSH:
67  return FOURCC_dtsh;
68  case kCodecDTSL:
69  return FOURCC_dtsl;
70  case kCodecDTSE:
71  return FOURCC_dtse;
72  case kCodecDTSM:
73  return FOURCC_dtsm;
74  case kCodecEAC3:
75  return FOURCC_ec_3;
76  case kCodecOpus:
77  return FOURCC_Opus;
78  default:
79  return FOURCC_NULL;
80  }
81 }
82 
83 void GenerateSinf(FourCC old_type,
84  const EncryptionConfig& encryption_config,
85  ProtectionSchemeInfo* sinf) {
86  sinf->format.format = old_type;
87 
88  DCHECK_NE(encryption_config.protection_scheme, FOURCC_NULL);
89  sinf->type.type = encryption_config.protection_scheme;
90 
91  // The version of cenc implemented here. CENC 4.
92  const int kCencSchemeVersion = 0x00010000;
93  sinf->type.version = kCencSchemeVersion;
94 
95  auto& track_encryption = sinf->info.track_encryption;
96  track_encryption.default_is_protected = 1;
97  track_encryption.default_crypt_byte_block =
98  encryption_config.crypt_byte_block;
99  track_encryption.default_skip_byte_block = encryption_config.skip_byte_block;
100  track_encryption.default_per_sample_iv_size =
101  encryption_config.per_sample_iv_size;
102  track_encryption.default_constant_iv = encryption_config.constant_iv;
103  track_encryption.default_kid = encryption_config.key_id;
104 }
105 
106 } // namespace
107 
108 MP4Muxer::MP4Muxer(const MuxerOptions& options) : Muxer(options) {}
109 MP4Muxer::~MP4Muxer() {}
110 
111 Status MP4Muxer::InitializeMuxer() {
112  DCHECK(!streams().empty());
113 
114  std::unique_ptr<FileType> ftyp(new FileType);
115  std::unique_ptr<Movie> moov(new Movie);
116 
117  ftyp->major_brand = FOURCC_isom;
118  ftyp->compatible_brands.push_back(FOURCC_iso8);
119  ftyp->compatible_brands.push_back(FOURCC_mp41);
120  ftyp->compatible_brands.push_back(FOURCC_dash);
121 
122  if (streams().size() == 1) {
123  FourCC codec_fourcc = FOURCC_NULL;
124  if (streams()[0]->stream_type() == kStreamVideo) {
125  codec_fourcc =
126  CodecToFourCC(streams()[0]->codec(),
127  static_cast<VideoStreamInfo*>(streams()[0].get())
128  ->h26x_stream_format());
129  if (codec_fourcc != FOURCC_NULL)
130  ftyp->compatible_brands.push_back(codec_fourcc);
131  }
132 
133  // CMAF allows only one track/stream per file.
134  // CMAF requires single initialization switching for AVC3/HEV1, which is not
135  // supported yet.
136  if (codec_fourcc != FOURCC_avc3 && codec_fourcc != FOURCC_hev1)
137  ftyp->compatible_brands.push_back(FOURCC_cmfc);
138  }
139 
140  moov->header.creation_time = IsoTimeNow();
141  moov->header.modification_time = IsoTimeNow();
142  moov->header.next_track_id = static_cast<uint32_t>(streams().size()) + 1;
143 
144  moov->tracks.resize(streams().size());
145  moov->extends.tracks.resize(streams().size());
146 
147  // Initialize tracks.
148  for (uint32_t i = 0; i < streams().size(); ++i) {
149  Track& trak = moov->tracks[i];
150  trak.header.track_id = i + 1;
151 
152  TrackExtends& trex = moov->extends.tracks[i];
153  trex.track_id = trak.header.track_id;
154  trex.default_sample_description_index = 1;
155 
156  switch (streams()[i]->stream_type()) {
157  case kStreamVideo:
158  GenerateVideoTrak(static_cast<VideoStreamInfo*>(streams()[i].get()),
159  &trak, i + 1);
160  break;
161  case kStreamAudio:
162  GenerateAudioTrak(static_cast<AudioStreamInfo*>(streams()[i].get()),
163  &trak, i + 1);
164  break;
165  case kStreamText:
166  GenerateTextTrak(static_cast<TextStreamInfo*>(streams()[i].get()),
167  &trak, i + 1);
168  break;
169  default:
170  NOTIMPLEMENTED() << "Not implemented for stream type: "
171  << streams()[i]->stream_type();
172  }
173 
174  if (streams()[i]->is_encrypted() &&
175  options().mp4_params.include_pssh_in_stream) {
176  const auto& key_system_info =
177  streams()[i]->encryption_config().key_system_info;
178  moov->pssh.resize(key_system_info.size());
179  for (size_t j = 0; j < key_system_info.size(); j++)
180  moov->pssh[j].raw_box = key_system_info[j].CreateBox();
181  }
182  }
183 
184  if (options().segment_template.empty()) {
185  segmenter_.reset(new SingleSegmentSegmenter(options(), std::move(ftyp),
186  std::move(moov)));
187  } else {
188  segmenter_.reset(
189  new MultiSegmentSegmenter(options(), std::move(ftyp), std::move(moov)));
190  }
191 
192  const Status segmenter_initialized =
193  segmenter_->Initialize(streams(), muxer_listener(), progress_listener());
194  if (!segmenter_initialized.ok())
195  return segmenter_initialized;
196 
197  FireOnMediaStartEvent();
198  return Status::OK;
199 }
200 
201 Status MP4Muxer::Finalize() {
202  DCHECK(segmenter_);
203  Status segmenter_finalized = segmenter_->Finalize();
204 
205  if (!segmenter_finalized.ok())
206  return segmenter_finalized;
207 
208  FireOnMediaEndEvent();
209  LOG(INFO) << "MP4 file '" << options().output_file_name << "' finalized.";
210  return Status::OK;
211 }
212 
213 Status MP4Muxer::AddSample(size_t stream_id,
214  std::shared_ptr<MediaSample> sample) {
215  DCHECK(segmenter_);
216  return segmenter_->AddSample(stream_id, sample);
217 }
218 
219 Status MP4Muxer::FinalizeSegment(size_t stream_id,
220  std::shared_ptr<SegmentInfo> segment_info) {
221  DCHECK(segmenter_);
222  VLOG(3) << "Finalize " << (segment_info->is_subsegment ? "sub" : "")
223  << "segment " << segment_info->start_timestamp << " duration "
224  << segment_info->duration;
225  return segmenter_->FinalizeSegment(stream_id, std::move(segment_info));
226 }
227 
228 void MP4Muxer::InitializeTrak(const StreamInfo* info, Track* trak) {
229  int64_t now = IsoTimeNow();
230  trak->header.creation_time = now;
231  trak->header.modification_time = now;
232  trak->header.duration = 0;
233  trak->media.header.creation_time = now;
234  trak->media.header.modification_time = now;
235  trak->media.header.timescale = info->time_scale();
236  trak->media.header.duration = 0;
237  if (!info->language().empty()) {
238  // Strip off the subtag, if any.
239  std::string main_language = info->language();
240  size_t dash = main_language.find('-');
241  if (dash != std::string::npos) {
242  main_language.erase(dash);
243  }
244 
245  // ISO-639-2/T main language code should be 3 characters.
246  if (main_language.size() != 3) {
247  LOG(WARNING) << "'" << main_language << "' is not a valid ISO-639-2 "
248  << "language code, ignoring.";
249  } else {
250  trak->media.header.language.code = main_language;
251  }
252  }
253 }
254 
255 void MP4Muxer::GenerateVideoTrak(const VideoStreamInfo* video_info,
256  Track* trak,
257  uint32_t track_id) {
258  InitializeTrak(video_info, trak);
259 
260  // width and height specify the track's visual presentation size as
261  // fixed-point 16.16 values.
262  uint32_t pixel_width = video_info->pixel_width();
263  uint32_t pixel_height = video_info->pixel_height();
264  if (pixel_width == 0 || pixel_height == 0) {
265  LOG(WARNING) << "pixel width/height are not set. Assuming 1:1.";
266  pixel_width = 1;
267  pixel_height = 1;
268  }
269  const double sample_aspect_ratio =
270  static_cast<double>(pixel_width) / pixel_height;
271  trak->header.width = video_info->width() * sample_aspect_ratio * 0x10000;
272  trak->header.height = video_info->height() * 0x10000;
273 
274  VideoSampleEntry video;
275  video.format =
276  CodecToFourCC(video_info->codec(), video_info->h26x_stream_format());
277  video.width = video_info->width();
278  video.height = video_info->height();
279  video.codec_configuration.data = video_info->codec_config();
280  if (pixel_width != 1 || pixel_height != 1) {
281  video.pixel_aspect.h_spacing = pixel_width;
282  video.pixel_aspect.v_spacing = pixel_height;
283  }
284 
285  SampleDescription& sample_description =
286  trak->media.information.sample_table.description;
287  sample_description.type = kVideo;
288  sample_description.video_entries.push_back(video);
289 
290  if (video_info->is_encrypted()) {
291  if (video_info->has_clear_lead()) {
292  // Add a second entry for clear content.
293  sample_description.video_entries.push_back(video);
294  }
295  // Convert the first entry to an encrypted entry.
296  VideoSampleEntry& entry = sample_description.video_entries[0];
297  GenerateSinf(entry.format, video_info->encryption_config(), &entry.sinf);
298  entry.format = FOURCC_encv;
299  }
300 }
301 
302 void MP4Muxer::GenerateAudioTrak(const AudioStreamInfo* audio_info,
303  Track* trak,
304  uint32_t track_id) {
305  InitializeTrak(audio_info, trak);
306 
307  trak->header.volume = 0x100;
308 
309  AudioSampleEntry audio;
310  audio.format =
311  CodecToFourCC(audio_info->codec(), H26xStreamFormat::kUnSpecified);
312  switch(audio_info->codec()){
313  case kCodecAAC:
314  audio.esds.es_descriptor.set_object_type(kISO_14496_3); // MPEG4 AAC.
315  audio.esds.es_descriptor.set_esid(track_id);
316  audio.esds.es_descriptor.set_decoder_specific_info(
317  audio_info->codec_config());
318  audio.esds.es_descriptor.set_max_bitrate(audio_info->max_bitrate());
319  audio.esds.es_descriptor.set_avg_bitrate(audio_info->avg_bitrate());
320  break;
321  case kCodecDTSC:
322  case kCodecDTSH:
323  case kCodecDTSL:
324  case kCodecDTSE:
325  case kCodecDTSM:
326  audio.ddts.extra_data = audio_info->codec_config();
327  audio.ddts.max_bitrate = audio_info->max_bitrate();
328  audio.ddts.avg_bitrate = audio_info->avg_bitrate();
329  audio.ddts.sampling_frequency = audio_info->sampling_frequency();
330  audio.ddts.pcm_sample_depth = audio_info->sample_bits();
331  break;
332  case kCodecAC3:
333  audio.dac3.data = audio_info->codec_config();
334  break;
335  case kCodecEAC3:
336  audio.dec3.data = audio_info->codec_config();
337  break;
338  case kCodecOpus:
339  audio.dops.opus_identification_header = audio_info->codec_config();
340  break;
341  default:
342  NOTIMPLEMENTED();
343  break;
344  }
345 
346  audio.channelcount = audio_info->num_channels();
347  audio.samplesize = audio_info->sample_bits();
348  audio.samplerate = audio_info->sampling_frequency();
349  SampleTable& sample_table = trak->media.information.sample_table;
350  SampleDescription& sample_description = sample_table.description;
351  sample_description.type = kAudio;
352  sample_description.audio_entries.push_back(audio);
353 
354  if (audio_info->is_encrypted()) {
355  if (audio_info->has_clear_lead()) {
356  // Add a second entry for clear content.
357  sample_description.audio_entries.push_back(audio);
358  }
359  // Convert the first entry to an encrypted entry.
360  AudioSampleEntry& entry = sample_description.audio_entries[0];
361  GenerateSinf(entry.format, audio_info->encryption_config(), &entry.sinf);
362  entry.format = FOURCC_enca;
363  }
364 
365  // Opus requires at least one sample group description box and at least one
366  // sample to group box with grouping type 'roll' within sample table box.
367  if (audio_info->codec() == kCodecOpus) {
368  sample_table.sample_group_descriptions.resize(1);
369  SampleGroupDescription& sample_group_description =
370  sample_table.sample_group_descriptions.back();
371  sample_group_description.grouping_type = FOURCC_roll;
372  sample_group_description.audio_roll_recovery_entries.resize(1);
373  // The roll distance is expressed in sample units and always takes negative
374  // values.
375  const uint64_t kNanosecondsPerSecond = 1000000000ull;
376  sample_group_description.audio_roll_recovery_entries[0].roll_distance =
377  (0 - (audio_info->seek_preroll_ns() * audio.samplerate +
378  kNanosecondsPerSecond / 2)) /
379  kNanosecondsPerSecond;
380 
381  sample_table.sample_to_groups.resize(1);
382  SampleToGroup& sample_to_group = sample_table.sample_to_groups.back();
383  sample_to_group.grouping_type = FOURCC_roll;
384 
385  sample_to_group.entries.resize(1);
386  SampleToGroupEntry& sample_to_group_entry = sample_to_group.entries.back();
387  // All samples are in track fragments.
388  sample_to_group_entry.sample_count = 0;
389  sample_to_group_entry.group_description_index =
390  SampleToGroupEntry::kTrackGroupDescriptionIndexBase + 1;
391  } else if (audio_info->seek_preroll_ns() != 0) {
392  LOG(WARNING) << "Unexpected seek preroll for codec " << audio_info->codec();
393  return;
394  }
395 }
396 
397 void MP4Muxer::GenerateTextTrak(const TextStreamInfo* text_info,
398  Track* trak,
399  uint32_t track_id) {
400  InitializeTrak(text_info, trak);
401 
402  if (text_info->codec_string() == "wvtt") {
403  // Handle WebVTT.
404  TextSampleEntry webvtt;
405  webvtt.format = FOURCC_wvtt;
406  webvtt.config.config.assign(text_info->codec_config().begin(),
407  text_info->codec_config().end());
408  // TODO(rkuroiwa): This should be the source file URI(s). Putting bogus
409  // string for now so that the box will be there for samples with overlapping
410  // cues.
411  webvtt.label.source_label = "source_label";
412  SampleDescription& sample_description =
413  trak->media.information.sample_table.description;
414  sample_description.type = kText;
415  sample_description.text_entries.push_back(webvtt);
416  return;
417  }
418  NOTIMPLEMENTED() << text_info->codec_string()
419  << " handling not implemented yet.";
420 }
421 
422 base::Optional<Range> MP4Muxer::GetInitRangeStartAndEnd() {
423  size_t range_offset = 0;
424  size_t range_size = 0;
425  const bool has_range = segmenter_->GetInitRange(&range_offset, &range_size);
426 
427  if (!has_range)
428  return base::nullopt;
429 
430  Range range;
431  SetStartAndEndFromOffsetAndSize(range_offset, range_size, &range);
432  return range;
433 }
434 
435 base::Optional<Range> MP4Muxer::GetIndexRangeStartAndEnd() {
436  size_t range_offset = 0;
437  size_t range_size = 0;
438  const bool has_range = segmenter_->GetIndexRange(&range_offset, &range_size);
439 
440  if (!has_range)
441  return base::nullopt;
442 
443  Range range;
444  SetStartAndEndFromOffsetAndSize(range_offset, range_size, &range);
445  return range;
446 }
447 
448 void MP4Muxer::FireOnMediaStartEvent() {
449  if (!muxer_listener())
450  return;
451 
452  if (streams().size() > 1) {
453  LOG(ERROR) << "MuxerListener cannot take more than 1 stream.";
454  return;
455  }
456  DCHECK(!streams().empty()) << "Media started without a stream.";
457 
458  const uint32_t timescale = segmenter_->GetReferenceTimeScale();
459  muxer_listener()->OnMediaStart(options(), *streams().front(), timescale,
460  MuxerListener::kContainerMp4);
461 }
462 
463 void MP4Muxer::FireOnMediaEndEvent() {
464  if (!muxer_listener())
465  return;
466 
467  MuxerListener::MediaRanges media_range;
468  media_range.init_range = GetInitRangeStartAndEnd();
469  media_range.index_range = GetIndexRangeStartAndEnd();
470  media_range.subsegment_ranges = segmenter_->GetSegmentRanges();
471 
472  const float duration_seconds = static_cast<float>(segmenter_->GetDuration());
473  muxer_listener()->OnMediaEnd(media_range, duration_seconds);
474 }
475 
476 uint64_t MP4Muxer::IsoTimeNow() {
477  // Time in seconds from Jan. 1, 1904 to epoch time, i.e. Jan. 1, 1970.
478  const uint64_t kIsomTimeOffset = 2082844800l;
479  return kIsomTimeOffset +
480  (clock() ? clock()->Now() : base::Time::Now()).ToDoubleT();
481 }
482 
483 } // namespace mp4
484 } // namespace media
485 } // namespace shaka
MP4Muxer(const MuxerOptions &options)
Create a MP4Muxer object from MuxerOptions.
Definition: mp4_muxer.cc:108
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:20
virtual void OnMediaEnd(const MediaRanges &media_ranges, float duration_seconds)=0
virtual void OnMediaStart(const MuxerOptions &muxer_options, const StreamInfo &stream_info, uint32_t time_scale, ContainerType container_type)=0