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/media/base/aes_encryptor.h"
12 #include "packager/media/base/audio_stream_info.h"
13 #include "packager/media/base/fourccs.h"
14 #include "packager/media/base/key_source.h"
15 #include "packager/media/base/media_sample.h"
16 #include "packager/media/base/media_stream.h"
17 #include "packager/media/base/video_stream_info.h"
18 #include "packager/media/codecs/es_descriptor.h"
19 #include "packager/media/event/muxer_listener.h"
20 #include "packager/media/file/file.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  uint32_t* start,
36  uint32_t* end) {
37  DCHECK(start && end);
38  *start = static_cast<uint32_t>(offset);
39  // Note that ranges are inclusive. So we need - 1.
40  *end = *start + static_cast<uint32_t>(size) - 1;
41 }
42 
43 FourCC CodecToFourCC(Codec codec) {
44  switch (codec) {
45  case kCodecH264:
46  return FOURCC_avc1;
47  case kCodecHEV1:
48  return FOURCC_hev1;
49  case kCodecHVC1:
50  return FOURCC_hvc1;
51  case kCodecVP8:
52  return FOURCC_vp08;
53  case kCodecVP9:
54  return FOURCC_vp09;
55  case kCodecVP10:
56  return FOURCC_vp10;
57  case kCodecAAC:
58  return FOURCC_mp4a;
59  case kCodecAC3:
60  return FOURCC_ac_3;
61  case kCodecDTSC:
62  return FOURCC_dtsc;
63  case kCodecDTSH:
64  return FOURCC_dtsh;
65  case kCodecDTSL:
66  return FOURCC_dtsl;
67  case kCodecDTSE:
68  return FOURCC_dtse;
69  case kCodecDTSM:
70  return FOURCC_dtsm;
71  case kCodecEAC3:
72  return FOURCC_ec_3;
73  case kCodecOpus:
74  return FOURCC_Opus;
75  default:
76  return FOURCC_NULL;
77  }
78 }
79 
80 } // namespace
81 
82 MP4Muxer::MP4Muxer(const MuxerOptions& options) : Muxer(options) {}
83 MP4Muxer::~MP4Muxer() {}
84 
85 Status MP4Muxer::Initialize() {
86  DCHECK(!streams().empty());
87 
88  std::unique_ptr<FileType> ftyp(new FileType);
89  std::unique_ptr<Movie> moov(new Movie);
90 
91  ftyp->major_brand = FOURCC_dash;
92  ftyp->compatible_brands.push_back(FOURCC_iso6);
93  ftyp->compatible_brands.push_back(FOURCC_mp41);
94  if (streams().size() == 1 &&
95  streams()[0]->info()->stream_type() == kStreamVideo) {
96  const FourCC codec_fourcc = CodecToFourCC(
97  static_cast<VideoStreamInfo*>(streams()[0]->info().get())->codec());
98  if (codec_fourcc != FOURCC_NULL)
99  ftyp->compatible_brands.push_back(codec_fourcc);
100  }
101 
102  moov->header.creation_time = IsoTimeNow();
103  moov->header.modification_time = IsoTimeNow();
104  moov->header.next_track_id = streams().size() + 1;
105 
106  moov->tracks.resize(streams().size());
107  moov->extends.tracks.resize(streams().size());
108 
109  // Initialize tracks.
110  for (uint32_t i = 0; i < streams().size(); ++i) {
111  Track& trak = moov->tracks[i];
112  trak.header.track_id = i + 1;
113 
114  TrackExtends& trex = moov->extends.tracks[i];
115  trex.track_id = trak.header.track_id;
116  trex.default_sample_description_index = 1;
117 
118  switch (streams()[i]->info()->stream_type()) {
119  case kStreamVideo:
120  GenerateVideoTrak(
121  static_cast<VideoStreamInfo*>(streams()[i]->info().get()),
122  &trak,
123  i + 1);
124  break;
125  case kStreamAudio:
126  GenerateAudioTrak(
127  static_cast<AudioStreamInfo*>(streams()[i]->info().get()),
128  &trak,
129  i + 1);
130  break;
131  default:
132  NOTIMPLEMENTED() << "Not implemented for stream type: "
133  << streams()[i]->info()->stream_type();
134  }
135  }
136 
137  if (options().single_segment) {
138  segmenter_.reset(new SingleSegmentSegmenter(options(), std::move(ftyp),
139  std::move(moov)));
140  } else {
141  segmenter_.reset(
142  new MultiSegmentSegmenter(options(), std::move(ftyp), std::move(moov)));
143  }
144 
145  const Status segmenter_initialized = segmenter_->Initialize(
146  streams(), muxer_listener(), progress_listener(), encryption_key_source(),
147  max_sd_pixels(), clear_lead_in_seconds(),
148  crypto_period_duration_in_seconds(), protection_scheme());
149 
150  if (!segmenter_initialized.ok())
151  return segmenter_initialized;
152 
153  FireOnMediaStartEvent();
154  return Status::OK;
155 }
156 
157 Status MP4Muxer::Finalize() {
158  DCHECK(segmenter_);
159  Status segmenter_finalized = segmenter_->Finalize();
160 
161  if (!segmenter_finalized.ok())
162  return segmenter_finalized;
163 
164  FireOnMediaEndEvent();
165  LOG(INFO) << "MP4 file '" << options().output_file_name << "' finalized.";
166  return Status::OK;
167 }
168 
169 Status MP4Muxer::DoAddSample(const MediaStream* stream,
170  scoped_refptr<MediaSample> sample) {
171  DCHECK(segmenter_);
172  return segmenter_->AddSample(stream, sample);
173 }
174 
175 void MP4Muxer::InitializeTrak(const StreamInfo* info, Track* trak) {
176  int64_t now = IsoTimeNow();
177  trak->header.creation_time = now;
178  trak->header.modification_time = now;
179  trak->header.duration = 0;
180  trak->media.header.creation_time = now;
181  trak->media.header.modification_time = now;
182  trak->media.header.timescale = info->time_scale();
183  trak->media.header.duration = 0;
184  if (!info->language().empty()) {
185  // Strip off the subtag, if any.
186  std::string main_language = info->language();
187  size_t dash = main_language.find('-');
188  if (dash != std::string::npos) {
189  main_language.erase(dash);
190  }
191 
192  // ISO-639-2/T main language code should be 3 characters.
193  if (main_language.size() != 3) {
194  LOG(WARNING) << "'" << main_language << "' is not a valid ISO-639-2 "
195  << "language code, ignoring.";
196  } else {
197  trak->media.header.language.code = main_language;
198  }
199  }
200 }
201 
202 void MP4Muxer::GenerateVideoTrak(const VideoStreamInfo* video_info,
203  Track* trak,
204  uint32_t track_id) {
205  InitializeTrak(video_info, trak);
206 
207  // width and height specify the track's visual presentation size as
208  // fixed-point 16.16 values.
209  uint32_t pixel_width = video_info->pixel_width();
210  uint32_t pixel_height = video_info->pixel_height();
211  if (pixel_width == 0 || pixel_height == 0) {
212  LOG(WARNING) << "pixel width/height are not set. Assuming 1:1.";
213  pixel_width = 1;
214  pixel_height = 1;
215  }
216  const double sample_aspect_ratio =
217  static_cast<double>(pixel_width) / pixel_height;
218  trak->header.width = video_info->width() * sample_aspect_ratio * 0x10000;
219  trak->header.height = video_info->height() * 0x10000;
220 
221  VideoSampleEntry video;
222  video.format = CodecToFourCC(video_info->codec());
223  video.width = video_info->width();
224  video.height = video_info->height();
225  video.codec_configuration.data = video_info->codec_config();
226  if (pixel_width != 1 || pixel_height != 1) {
227  video.pixel_aspect.h_spacing = pixel_width;
228  video.pixel_aspect.v_spacing = pixel_height;
229  }
230 
231  SampleDescription& sample_description =
232  trak->media.information.sample_table.description;
233  sample_description.type = kVideo;
234  sample_description.video_entries.push_back(video);
235 }
236 
237 void MP4Muxer::GenerateAudioTrak(const AudioStreamInfo* audio_info,
238  Track* trak,
239  uint32_t track_id) {
240  InitializeTrak(audio_info, trak);
241 
242  trak->header.volume = 0x100;
243 
244  AudioSampleEntry audio;
245  audio.format = CodecToFourCC(audio_info->codec());
246  switch(audio_info->codec()){
247  case kCodecAAC:
248  audio.esds.es_descriptor.set_object_type(kISO_14496_3); // MPEG4 AAC.
249  audio.esds.es_descriptor.set_esid(track_id);
250  audio.esds.es_descriptor.set_decoder_specific_info(
251  audio_info->codec_config());
252  audio.esds.es_descriptor.set_max_bitrate(audio_info->max_bitrate());
253  audio.esds.es_descriptor.set_avg_bitrate(audio_info->avg_bitrate());
254  break;
255  case kCodecDTSC:
256  case kCodecDTSH:
257  case kCodecDTSL:
258  case kCodecDTSE:
259  case kCodecDTSM:
260  audio.ddts.extra_data = audio_info->codec_config();
261  audio.ddts.max_bitrate = audio_info->max_bitrate();
262  audio.ddts.avg_bitrate = audio_info->avg_bitrate();
263  audio.ddts.sampling_frequency = audio_info->sampling_frequency();
264  audio.ddts.pcm_sample_depth = audio_info->sample_bits();
265  break;
266  case kCodecAC3:
267  audio.dac3.data = audio_info->codec_config();
268  break;
269  case kCodecEAC3:
270  audio.dec3.data = audio_info->codec_config();
271  break;
272  case kCodecOpus:
273  audio.dops.opus_identification_header = audio_info->codec_config();
274  break;
275  default:
276  NOTIMPLEMENTED();
277  break;
278  }
279 
280  audio.channelcount = audio_info->num_channels();
281  audio.samplesize = audio_info->sample_bits();
282  audio.samplerate = audio_info->sampling_frequency();
283  SampleTable& sample_table = trak->media.information.sample_table;
284  SampleDescription& sample_description = sample_table.description;
285  sample_description.type = kAudio;
286  sample_description.audio_entries.push_back(audio);
287 
288  // Opus requires at least one sample group description box and at least one
289  // sample to group box with grouping type 'roll' within sample table box.
290  if (audio_info->codec() == kCodecOpus) {
291  sample_table.sample_group_descriptions.resize(1);
292  SampleGroupDescription& sample_group_description =
293  sample_table.sample_group_descriptions.back();
294  sample_group_description.grouping_type = FOURCC_roll;
295  sample_group_description.audio_roll_recovery_entries.resize(1);
296  // The roll distance is expressed in sample units and always takes negative
297  // values.
298  const uint64_t kNanosecondsPerSecond = 1000000000ull;
299  sample_group_description.audio_roll_recovery_entries[0].roll_distance =
300  (0 - (audio_info->seek_preroll_ns() * audio.samplerate +
301  kNanosecondsPerSecond / 2)) /
302  kNanosecondsPerSecond;
303 
304  sample_table.sample_to_groups.resize(1);
305  SampleToGroup& sample_to_group = sample_table.sample_to_groups.back();
306  sample_to_group.grouping_type = FOURCC_roll;
307 
308  sample_to_group.entries.resize(1);
309  SampleToGroupEntry& sample_to_group_entry = sample_to_group.entries.back();
310  // All samples are in track fragments.
311  sample_to_group_entry.sample_count = 0;
312  sample_to_group_entry.group_description_index =
313  SampleToGroupEntry::kTrackGroupDescriptionIndexBase + 1;
314  } else if (audio_info->seek_preroll_ns() != 0) {
315  LOG(WARNING) << "Unexpected seek preroll for codec " << audio_info->codec();
316  return;
317  }
318 }
319 
320 bool MP4Muxer::GetInitRangeStartAndEnd(uint32_t* start, uint32_t* end) {
321  DCHECK(start && end);
322  size_t range_offset = 0;
323  size_t range_size = 0;
324  const bool has_range = segmenter_->GetInitRange(&range_offset, &range_size);
325 
326  if (!has_range)
327  return false;
328 
329  SetStartAndEndFromOffsetAndSize(range_offset, range_size, start, end);
330  return true;
331 }
332 
333 bool MP4Muxer::GetIndexRangeStartAndEnd(uint32_t* start, uint32_t* end) {
334  DCHECK(start && end);
335  size_t range_offset = 0;
336  size_t range_size = 0;
337  const bool has_range = segmenter_->GetIndexRange(&range_offset, &range_size);
338 
339  if (!has_range)
340  return false;
341 
342  SetStartAndEndFromOffsetAndSize(range_offset, range_size, start, end);
343  return true;
344 }
345 
346 void MP4Muxer::FireOnMediaStartEvent() {
347  if (!muxer_listener())
348  return;
349 
350  if (streams().size() > 1) {
351  LOG(ERROR) << "MuxerListener cannot take more than 1 stream.";
352  return;
353  }
354  DCHECK(!streams().empty()) << "Media started without a stream.";
355 
356  const uint32_t timescale = segmenter_->GetReferenceTimeScale();
357  muxer_listener()->OnMediaStart(options(),
358  *streams().front()->info(),
359  timescale,
360  MuxerListener::kContainerMp4);
361 }
362 
363 void MP4Muxer::FireOnMediaEndEvent() {
364  if (!muxer_listener())
365  return;
366 
367  uint32_t init_range_start = 0;
368  uint32_t init_range_end = 0;
369  const bool has_init_range =
370  GetInitRangeStartAndEnd(&init_range_start, &init_range_end);
371 
372  uint32_t index_range_start = 0;
373  uint32_t index_range_end = 0;
374  const bool has_index_range =
375  GetIndexRangeStartAndEnd(&index_range_start, &index_range_end);
376 
377  const float duration_seconds = static_cast<float>(segmenter_->GetDuration());
378 
379  const int64_t file_size =
380  File::GetFileSize(options().output_file_name.c_str());
381  if (file_size <= 0) {
382  LOG(ERROR) << "Invalid file size: " << file_size;
383  return;
384  }
385 
386  muxer_listener()->OnMediaEnd(has_init_range,
387  init_range_start,
388  init_range_end,
389  has_index_range,
390  index_range_start,
391  index_range_end,
392  duration_seconds,
393  file_size);
394 }
395 
396 uint64_t MP4Muxer::IsoTimeNow() {
397  // Time in seconds from Jan. 1, 1904 to epoch time, i.e. Jan. 1, 1970.
398  const uint64_t kIsomTimeOffset = 2082844800l;
399  return kIsomTimeOffset +
400  (clock() ? clock()->Now() : base::Time::Now()).ToDoubleT();
401 }
402 
403 } // namespace mp4
404 } // namespace media
405 } // namespace shaka
virtual void OnMediaEnd(bool has_init_range, uint64_t init_range_start, uint64_t init_range_end, bool has_index_range, uint64_t index_range_start, uint64_t index_range_end, float duration_seconds, uint64_t file_size)=0
MP4Muxer(const MuxerOptions &options)
Create a MP4Muxer object from MuxerOptions.
Definition: mp4_muxer.cc:82
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:18
static int64_t GetFileSize(const char *file_name)
Definition: file.cc:176
virtual void OnMediaStart(const MuxerOptions &muxer_options, const StreamInfo &stream_info, uint32_t time_scale, ContainerType container_type)=0