DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
segmenter.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/segmenter.h"
8 
9 #include <algorithm>
10 
11 #include "packager/base/logging.h"
12 #include "packager/base/stl_util.h"
13 #include "packager/media/base/aes_cryptor.h"
14 #include "packager/media/base/buffer_writer.h"
15 #include "packager/media/base/key_source.h"
16 #include "packager/media/base/media_sample.h"
17 #include "packager/media/base/media_stream.h"
18 #include "packager/media/base/muxer_options.h"
19 #include "packager/media/base/muxer_util.h"
20 #include "packager/media/base/video_stream_info.h"
21 #include "packager/media/event/muxer_listener.h"
22 #include "packager/media/event/progress_listener.h"
23 #include "packager/media/formats/mp4/box_definitions.h"
24 #include "packager/media/formats/mp4/key_rotation_fragmenter.h"
25 
26 namespace shaka {
27 namespace media {
28 namespace mp4 {
29 
30 namespace {
31 const size_t kCencKeyIdSize = 16u;
32 
33 // The version of cenc implemented here. CENC 4.
34 const int kCencSchemeVersion = 0x00010000;
35 
36 // The default KID for key rotation is all 0s.
37 const uint8_t kKeyRotationDefaultKeyId[] = {
38  0, 0, 0, 0, 0, 0, 0, 0,
39  0, 0, 0, 0, 0, 0, 0, 0
40 };
41 
42 // Defines protection pattern for pattern-based encryption.
43 struct ProtectionPattern {
44  uint8_t crypt_byte_block;
45  uint8_t skip_byte_block;
46 };
47 
48 COMPILE_ASSERT(arraysize(kKeyRotationDefaultKeyId) == kCencKeyIdSize,
49  cenc_key_id_must_be_size_16);
50 
51 uint64_t Rescale(uint64_t time_in_old_scale,
52  uint32_t old_scale,
53  uint32_t new_scale) {
54  return static_cast<double>(time_in_old_scale) / old_scale * new_scale;
55 }
56 
57 ProtectionPattern GetProtectionPattern(FourCC protection_scheme,
58  TrackType track_type) {
59  ProtectionPattern pattern;
60  if (protection_scheme != FOURCC_cbcs && protection_scheme != FOURCC_cens) {
61  // Not using pattern encryption.
62  pattern.crypt_byte_block = 0u;
63  pattern.skip_byte_block = 0u;
64  } else if (track_type != kVideo) {
65  // Tracks other than video are protected using whole-block full-sample
66  // encryption, which is essentially a pattern of 1:0. Note that this may not
67  // be the same as the non-pattern based encryption counterparts, e.g. in
68  // 'cens' for full sample encryption, the whole sample is encrypted up to
69  // the last 16-byte boundary, see 23001-7:2016(E) 9.7; while in 'cenc' for
70  // full sample encryption, the last partial 16-byte block is also encrypted,
71  // see 23001-7:2016(E) 9.4.2. Another difference is the use of constant iv.
72  pattern.crypt_byte_block = 1u;
73  pattern.skip_byte_block = 0u;
74  } else {
75  // Use 1:9 pattern for video.
76  const uint8_t kCryptByteBlock = 1u;
77  const uint8_t kSkipByteBlock = 9u;
78  pattern.crypt_byte_block = kCryptByteBlock;
79  pattern.skip_byte_block = kSkipByteBlock;
80  }
81  return pattern;
82 }
83 
84 void GenerateSinf(const EncryptionKey& encryption_key,
85  FourCC old_type,
86  FourCC protection_scheme,
87  ProtectionPattern pattern,
88  ProtectionSchemeInfo* sinf) {
89  sinf->format.format = old_type;
90 
91  DCHECK_NE(protection_scheme, FOURCC_NULL);
92  sinf->type.type = protection_scheme;
93  sinf->type.version = kCencSchemeVersion;
94 
95  auto& track_encryption = sinf->info.track_encryption;
96  track_encryption.default_is_protected = 1;
97  DCHECK(!encryption_key.iv.empty());
98  if (protection_scheme == FOURCC_cbcs) {
99  // ISO/IEC 23001-7:2016 10.4.1
100  // For 'cbcs' scheme, Constant IVs SHALL be used.
101  track_encryption.default_per_sample_iv_size = 0;
102  track_encryption.default_constant_iv = encryption_key.iv;
103  } else {
104  track_encryption.default_per_sample_iv_size = encryption_key.iv.size();
105  }
106  track_encryption.default_crypt_byte_block = pattern.crypt_byte_block;
107  track_encryption.default_skip_byte_block = pattern.skip_byte_block;
108  track_encryption.default_kid = encryption_key.key_id;
109 }
110 
111 void GenerateEncryptedSampleEntry(const EncryptionKey& encryption_key,
112  double clear_lead_in_seconds,
113  FourCC protection_scheme,
114  ProtectionPattern pattern,
115  SampleDescription* description) {
116  DCHECK(description);
117  if (description->type == kVideo) {
118  DCHECK_EQ(1u, description->video_entries.size());
119 
120  // Add a second entry for clear content if needed.
121  if (clear_lead_in_seconds > 0)
122  description->video_entries.push_back(description->video_entries[0]);
123 
124  // Convert the first entry to an encrypted entry.
125  VideoSampleEntry& entry = description->video_entries[0];
126  GenerateSinf(encryption_key, entry.format, protection_scheme, pattern,
127  &entry.sinf);
128  entry.format = FOURCC_encv;
129  } else {
130  DCHECK_EQ(kAudio, description->type);
131  DCHECK_EQ(1u, description->audio_entries.size());
132 
133  // Add a second entry for clear content if needed.
134  if (clear_lead_in_seconds > 0)
135  description->audio_entries.push_back(description->audio_entries[0]);
136 
137  // Convert the first entry to an encrypted entry.
138  AudioSampleEntry& entry = description->audio_entries[0];
139  GenerateSinf(encryption_key, entry.format, protection_scheme, pattern,
140  &entry.sinf);
141  entry.format = FOURCC_enca;
142  }
143 }
144 
145 } // namespace
146 
147 Segmenter::Segmenter(const MuxerOptions& options,
148  scoped_ptr<FileType> ftyp,
149  scoped_ptr<Movie> moov)
150  : options_(options),
151  ftyp_(ftyp.Pass()),
152  moov_(moov.Pass()),
153  moof_(new MovieFragment()),
154  fragment_buffer_(new BufferWriter()),
155  sidx_(new SegmentIndex()),
156  muxer_listener_(NULL),
157  progress_listener_(NULL),
158  progress_target_(0),
159  accumulated_progress_(0),
160  sample_duration_(0u) {}
161 
162 Segmenter::~Segmenter() { STLDeleteElements(&fragmenters_); }
163 
164 Status Segmenter::Initialize(const std::vector<MediaStream*>& streams,
165  MuxerListener* muxer_listener,
166  ProgressListener* progress_listener,
167  KeySource* encryption_key_source,
168  uint32_t max_sd_pixels,
169  double clear_lead_in_seconds,
170  double crypto_period_duration_in_seconds,
171  FourCC protection_scheme) {
172  DCHECK_LT(0u, streams.size());
173  muxer_listener_ = muxer_listener;
174  progress_listener_ = progress_listener;
175  moof_->header.sequence_number = 0;
176 
177  moof_->tracks.resize(streams.size());
178  segment_durations_.resize(streams.size());
179  fragmenters_.resize(streams.size());
180  const bool key_rotation_enabled = crypto_period_duration_in_seconds != 0;
181  const bool kInitialEncryptionInfo = true;
182 
183  for (uint32_t i = 0; i < streams.size(); ++i) {
184  stream_map_[streams[i]] = i;
185  moof_->tracks[i].header.track_id = i + 1;
186  if (streams[i]->info()->stream_type() == kStreamVideo) {
187  // Use the first video stream as the reference stream (which is 1-based).
188  if (sidx_->reference_id == 0)
189  sidx_->reference_id = i + 1;
190  }
191  if (!encryption_key_source) {
192  fragmenters_[i] = new Fragmenter(streams[i]->info(), &moof_->tracks[i]);
193  continue;
194  }
195 
196  KeySource::TrackType track_type =
197  GetTrackTypeForEncryption(*streams[i]->info(), max_sd_pixels);
198  SampleDescription& description =
199  moov_->tracks[i].media.information.sample_table.description;
200  ProtectionPattern pattern =
201  GetProtectionPattern(protection_scheme, description.type);
202 
203  if (key_rotation_enabled) {
204  // Fill encrypted sample entry with default key.
205  EncryptionKey encryption_key;
206  encryption_key.key_id.assign(
207  kKeyRotationDefaultKeyId,
208  kKeyRotationDefaultKeyId + arraysize(kKeyRotationDefaultKeyId));
209  if (!AesCryptor::GenerateRandomIv(protection_scheme,
210  &encryption_key.iv)) {
211  return Status(error::INTERNAL_ERROR, "Failed to generate random iv.");
212  }
213  GenerateEncryptedSampleEntry(encryption_key, clear_lead_in_seconds,
214  protection_scheme, pattern, &description);
215  if (muxer_listener_) {
216  muxer_listener_->OnEncryptionInfoReady(
217  kInitialEncryptionInfo, protection_scheme, encryption_key.key_id,
218  encryption_key.iv, encryption_key.key_system_info);
219  }
220 
221  fragmenters_[i] = new KeyRotationFragmenter(
222  moof_.get(), streams[i]->info(), &moof_->tracks[i],
223  encryption_key_source, track_type,
224  crypto_period_duration_in_seconds * streams[i]->info()->time_scale(),
225  clear_lead_in_seconds * streams[i]->info()->time_scale(),
226  protection_scheme, pattern.crypt_byte_block, pattern.skip_byte_block,
227  muxer_listener_);
228  continue;
229  }
230 
231  scoped_ptr<EncryptionKey> encryption_key(new EncryptionKey());
232  Status status =
233  encryption_key_source->GetKey(track_type, encryption_key.get());
234  if (!status.ok())
235  return status;
236  if (encryption_key->iv.empty()) {
237  if (!AesCryptor::GenerateRandomIv(protection_scheme,
238  &encryption_key->iv)) {
239  return Status(error::INTERNAL_ERROR, "Failed to generate random iv.");
240  }
241  }
242 
243  GenerateEncryptedSampleEntry(*encryption_key, clear_lead_in_seconds,
244  protection_scheme, pattern, &description);
245 
246  if (moov_->pssh.empty()) {
247  moov_->pssh.resize(encryption_key->key_system_info.size());
248  for (size_t i = 0; i < encryption_key->key_system_info.size(); i++) {
249  moov_->pssh[i].raw_box = encryption_key->key_system_info[i].CreateBox();
250  }
251 
252  if (muxer_listener_) {
253  muxer_listener_->OnEncryptionInfoReady(
254  kInitialEncryptionInfo, protection_scheme, encryption_key->key_id,
255  encryption_key->iv, encryption_key->key_system_info);
256  }
257  }
258 
259  fragmenters_[i] = new EncryptingFragmenter(
260  streams[i]->info(), &moof_->tracks[i], encryption_key.Pass(),
261  clear_lead_in_seconds * streams[i]->info()->time_scale(),
262  protection_scheme, pattern.crypt_byte_block, pattern.skip_byte_block,
263  muxer_listener_);
264  }
265 
266  // Choose the first stream if there is no VIDEO.
267  if (sidx_->reference_id == 0)
268  sidx_->reference_id = 1;
269  sidx_->timescale = streams[GetReferenceStreamId()]->info()->time_scale();
270 
271  // Use media duration as progress target.
272  progress_target_ = streams[GetReferenceStreamId()]->info()->duration();
273 
274  // Use the reference stream's time scale as movie time scale.
275  moov_->header.timescale = sidx_->timescale;
276  moof_->header.sequence_number = 1;
277 
278  // Fill in version information.
279  moov_->metadata.handler.handler_type = FOURCC_ID32;
280  moov_->metadata.id3v2.language.code = "eng";
281  moov_->metadata.id3v2.private_frame.owner =
282  "https://github.com/google/shaka-packager";
283  moov_->metadata.id3v2.private_frame.value = options_.packager_version_string;
284  return DoInitialize();
285 }
286 
288  for (std::vector<Fragmenter*>::iterator it = fragmenters_.begin();
289  it != fragmenters_.end();
290  ++it) {
291  Status status = FinalizeFragment(true, *it);
292  if (!status.ok())
293  return status;
294  }
295 
296  // Set tracks and moov durations.
297  // Note that the updated moov box will be written to output file for VOD case
298  // only.
299  for (std::vector<Track>::iterator track = moov_->tracks.begin();
300  track != moov_->tracks.end();
301  ++track) {
302  track->header.duration = Rescale(track->media.header.duration,
303  track->media.header.timescale,
304  moov_->header.timescale);
305  if (track->header.duration > moov_->header.duration)
306  moov_->header.duration = track->header.duration;
307  }
308  moov_->extends.header.fragment_duration = moov_->header.duration;
309 
310  return DoFinalize();
311 }
312 
314  scoped_refptr<MediaSample> sample) {
315  // Find the fragmenter for this stream.
316  DCHECK(stream);
317  DCHECK(stream_map_.find(stream) != stream_map_.end());
318  uint32_t stream_id = stream_map_[stream];
319  Fragmenter* fragmenter = fragmenters_[stream_id];
320 
321  // Set default sample duration if it has not been set yet.
322  if (moov_->extends.tracks[stream_id].default_sample_duration == 0) {
323  moov_->extends.tracks[stream_id].default_sample_duration =
324  sample->duration();
325  }
326 
327  if (fragmenter->fragment_finalized()) {
328  return Status(error::FRAGMENT_FINALIZED,
329  "Current fragment is finalized already.");
330  }
331 
332  bool finalize_fragment = false;
333  if (fragmenter->fragment_duration() >=
334  options_.fragment_duration * stream->info()->time_scale()) {
335  if (sample->is_key_frame() || !options_.fragment_sap_aligned) {
336  finalize_fragment = true;
337  }
338  }
339  bool finalize_segment = false;
340  if (segment_durations_[stream_id] >=
341  options_.segment_duration * stream->info()->time_scale()) {
342  if (sample->is_key_frame() || !options_.segment_sap_aligned) {
343  finalize_segment = true;
344  finalize_fragment = true;
345  }
346  }
347 
348  Status status;
349  if (finalize_fragment) {
350  status = FinalizeFragment(finalize_segment, fragmenter);
351  if (!status.ok())
352  return status;
353  }
354 
355  status = fragmenter->AddSample(sample);
356  if (!status.ok())
357  return status;
358 
359  if (sample_duration_ == 0)
360  sample_duration_ = sample->duration();
361  moov_->tracks[stream_id].media.header.duration += sample->duration();
362  segment_durations_[stream_id] += sample->duration();
363  DCHECK_GE(segment_durations_[stream_id], fragmenter->fragment_duration());
364  return Status::OK;
365 }
366 
367 uint32_t Segmenter::GetReferenceTimeScale() const {
368  return moov_->header.timescale;
369 }
370 
371 double Segmenter::GetDuration() const {
372  if (moov_->header.timescale == 0) {
373  // Handling the case where this is not properly initialized.
374  return 0.0;
375  }
376 
377  return static_cast<double>(moov_->header.duration) / moov_->header.timescale;
378 }
379 
380 void Segmenter::UpdateProgress(uint64_t progress) {
381  accumulated_progress_ += progress;
382 
383  if (!progress_listener_) return;
384  if (progress_target_ == 0) return;
385  // It might happen that accumulated progress exceeds progress_target due to
386  // computation errors, e.g. rounding error. Cap it so it never reports > 100%
387  // progress.
388  if (accumulated_progress_ >= progress_target_) {
389  progress_listener_->OnProgress(1.0);
390  } else {
391  progress_listener_->OnProgress(static_cast<double>(accumulated_progress_) /
392  progress_target_);
393  }
394 }
395 
396 void Segmenter::SetComplete() {
397  if (!progress_listener_) return;
398  progress_listener_->OnProgress(1.0);
399 }
400 
401 Status Segmenter::FinalizeSegment() {
402  Status status = DoFinalizeSegment();
403 
404  // Reset segment information to initial state.
405  sidx_->references.clear();
406  std::vector<uint64_t>::iterator it = segment_durations_.begin();
407  for (; it != segment_durations_.end(); ++it)
408  *it = 0;
409 
410  return status;
411 }
412 
413 uint32_t Segmenter::GetReferenceStreamId() {
414  DCHECK(sidx_);
415  return sidx_->reference_id - 1;
416 }
417 
418 Status Segmenter::FinalizeFragment(bool finalize_segment,
419  Fragmenter* fragmenter) {
420  fragmenter->FinalizeFragment();
421 
422  // Check if all tracks are ready for fragmentation.
423  for (std::vector<Fragmenter*>::iterator it = fragmenters_.begin();
424  it != fragmenters_.end();
425  ++it) {
426  if (!(*it)->fragment_finalized())
427  return Status::OK;
428  }
429 
430  MediaData mdat;
431  // Data offset relative to 'moof': moof size + mdat header size.
432  // The code will also update box sizes for moof_ and its child boxes.
433  uint64_t data_offset = moof_->ComputeSize() + mdat.HeaderSize();
434  // 'traf' should follow 'mfhd' moof header box.
435  uint64_t next_traf_position = moof_->HeaderSize() + moof_->header.box_size();
436  for (size_t i = 0; i < moof_->tracks.size(); ++i) {
437  TrackFragment& traf = moof_->tracks[i];
438  if (traf.auxiliary_offset.offsets.size() > 0) {
439  DCHECK_EQ(traf.auxiliary_offset.offsets.size(), 1u);
440  DCHECK(!traf.sample_encryption.sample_encryption_entries.empty());
441 
442  next_traf_position += traf.box_size();
443  // SampleEncryption 'senc' box should be the last box in 'traf'.
444  // |auxiliary_offset| should point to the data of SampleEncryption.
445  traf.auxiliary_offset.offsets[0] =
446  next_traf_position - traf.sample_encryption.box_size() +
447  traf.sample_encryption.HeaderSize() +
448  sizeof(uint32_t); // for sample count field in 'senc'
449  }
450  traf.runs[0].data_offset = data_offset + mdat.data_size;
451  mdat.data_size += fragmenters_[i]->data()->Size();
452  }
453 
454  // Generate segment reference.
455  sidx_->references.resize(sidx_->references.size() + 1);
456  fragmenters_[GetReferenceStreamId()]->GenerateSegmentReference(
457  &sidx_->references[sidx_->references.size() - 1]);
458  sidx_->references[sidx_->references.size() - 1].referenced_size =
459  data_offset + mdat.data_size;
460 
461  // Write the fragment to buffer.
462  moof_->Write(fragment_buffer_.get());
463  mdat.WriteHeader(fragment_buffer_.get());
464  for (Fragmenter* fragmenter : fragmenters_)
465  fragment_buffer_->AppendBuffer(*fragmenter->data());
466 
467  // Increase sequence_number for next fragment.
468  ++moof_->header.sequence_number;
469 
470  if (finalize_segment)
471  return FinalizeSegment();
472 
473  return Status::OK;
474 }
475 
476 } // namespace mp4
477 } // namespace media
478 } // namespace shaka
std::string packager_version_string
Specify the version string to be embedded in the output files.
Definition: muxer_options.h:71
Status AddSample(scoped_refptr< MediaSample > sample)
Definition: segmenter.cc:114
virtual Status AddSample(scoped_refptr< MediaSample > sample)
Definition: fragmenter.cc:45
virtual Status GetKey(TrackType track_type, EncryptionKey *key)=0
This class listens to progress updates events.
Status Initialize(scoped_ptr< MkvWriter > writer, StreamInfo *info, ProgressListener *progress_listener, MuxerListener *muxer_listener, KeySource *encryption_key_source, uint32_t max_sd_pixels, double clear_lead_in_seconds)
Definition: segmenter.cc:48
static bool GenerateRandomIv(FourCC protection_scheme, std::vector< uint8_t > *iv)
Definition: aes_cryptor.cc:109
EncryptingFragmenter generates MP4 fragments with sample encrypted.
virtual void OnProgress(double progress)=0
KeySource is responsible for encryption key acquisition.
Definition: key_source.h:31
void UpdateProgress(uint64_t progress)
Update segmentation progress using ProgressListener.
Definition: segmenter.cc:251