DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
segmenter.cc
1 // Copyright 2015 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/webm/segmenter.h"
8 
9 #include "packager/base/time/time.h"
10 #include "packager/media/base/audio_stream_info.h"
11 #include "packager/media/base/media_sample.h"
12 #include "packager/media/base/media_stream.h"
13 #include "packager/media/base/muxer_options.h"
14 #include "packager/media/base/muxer_util.h"
15 #include "packager/media/base/stream_info.h"
16 #include "packager/media/base/video_stream_info.h"
17 #include "packager/media/codecs/vp_codec_configuration_record.h"
18 #include "packager/media/event/muxer_listener.h"
19 #include "packager/media/event/progress_listener.h"
20 #include "packager/third_party/libwebm/src/mkvmuxerutil.hpp"
21 #include "packager/third_party/libwebm/src/webmids.hpp"
22 #include "packager/version/version.h"
23 
24 namespace shaka {
25 namespace media {
26 namespace webm {
27 namespace {
28 int64_t kTimecodeScale = 1000000;
29 int64_t kSecondsToNs = 1000000000L;
30 } // namespace
31 
32 Segmenter::Segmenter(const MuxerOptions& options)
33  : reference_frame_timestamp_(0),
34  options_(options),
35  info_(NULL),
36  muxer_listener_(NULL),
37  progress_listener_(NULL),
38  progress_target_(0),
39  accumulated_progress_(0),
40  first_timestamp_(0),
41  sample_duration_(0),
42  segment_payload_pos_(0),
43  cluster_length_sec_(0),
44  segment_length_sec_(0),
45  track_id_(0) {}
46 
47 Segmenter::~Segmenter() {}
48 
49 Status Segmenter::Initialize(scoped_ptr<MkvWriter> writer,
50  StreamInfo* info,
51  ProgressListener* progress_listener,
52  MuxerListener* muxer_listener,
53  KeySource* encryption_key_source,
54  uint32_t max_sd_pixels,
55  double clear_lead_in_seconds) {
56  muxer_listener_ = muxer_listener;
57  info_ = info;
58  clear_lead_ = clear_lead_in_seconds;
59 
60  // Use media duration as progress target.
61  progress_target_ = info_->duration();
62  progress_listener_ = progress_listener;
63 
64  segment_info_.Init();
65  segment_info_.set_timecode_scale(kTimecodeScale);
66 
67  const std::string version = GetPackagerVersion();
68  if (!version.empty()) {
69  segment_info_.set_writing_app(
70  (GetPackagerProjectUrl() + " version " + version).c_str());
71  }
72 
73  if (options().single_segment) {
74  // Set an initial duration so the duration element is written; will be
75  // overwritten at the end. This works because this is a float and floats
76  // are always the same size.
77  segment_info_.set_duration(1);
78  }
79 
80  Status status;
81  if (encryption_key_source) {
82  status = InitializeEncryptor(encryption_key_source, max_sd_pixels);
83  if (!status.ok())
84  return status;
85  }
86 
87  // Create the track info.
88  switch (info_->stream_type()) {
89  case kStreamVideo:
90  status = CreateVideoTrack(static_cast<VideoStreamInfo*>(info_));
91  break;
92  case kStreamAudio:
93  status = CreateAudioTrack(static_cast<AudioStreamInfo*>(info_));
94  break;
95  default:
96  NOTIMPLEMENTED() << "Not implemented for stream type: "
97  << info_->stream_type();
98  status = Status(error::UNIMPLEMENTED, "Not implemented for stream type");
99  }
100  if (!status.ok())
101  return status;
102 
103  return DoInitialize(writer.Pass());
104 }
105 
107  Status status = WriteFrame(true /* write_duration */);
108  if (!status.ok())
109  return status;
110 
111  uint64_t duration =
112  prev_sample_->pts() - first_timestamp_ + prev_sample_->duration();
113  segment_info_.set_duration(FromBMFFTimescale(duration));
114  return DoFinalize();
115 }
116 
117 Status Segmenter::AddSample(scoped_refptr<MediaSample> sample) {
118  if (sample_duration_ == 0) {
119  first_timestamp_ = sample->pts();
120  sample_duration_ = sample->duration();
121  if (muxer_listener_)
122  muxer_listener_->OnSampleDurationReady(sample_duration_);
123  }
124 
125  UpdateProgress(sample->duration());
126 
127  // This writes frames in a delay. Meaning that the previous frame is written
128  // on this call to AddSample. The current frame is stored until the next
129  // call. This is done to determine which frame is the last in a Cluster.
130  // This first block determines if this is a new Cluster and writes the
131  // previous frame first before creating the new Cluster.
132 
133  Status status;
134  bool wrote_frame = false;
135  if (!cluster_) {
136  status = NewSegment(sample->pts());
137  // First frame, so no previous frame to write.
138  wrote_frame = true;
139  } else if (segment_length_sec_ >= options_.segment_duration) {
140  if (sample->is_key_frame() || !options_.segment_sap_aligned) {
141  status = WriteFrame(true /* write_duration */);
142  status.Update(NewSegment(sample->pts()));
143  segment_length_sec_ = 0;
144  cluster_length_sec_ = 0;
145  wrote_frame = true;
146  }
147  } else if (cluster_length_sec_ >= options_.fragment_duration) {
148  if (sample->is_key_frame() || !options_.fragment_sap_aligned) {
149  status = WriteFrame(true /* write_duration */);
150  status.Update(NewSubsegment(sample->pts()));
151  cluster_length_sec_ = 0;
152  wrote_frame = true;
153  }
154  }
155  if (!wrote_frame) {
156  status = WriteFrame(false /* write_duration */);
157  }
158  if (!status.ok())
159  return status;
160 
161  // Encrypt the frame.
162  if (encryptor_) {
163  const bool encrypt_frame =
164  static_cast<double>(sample->pts() - first_timestamp_) /
165  info_->time_scale() >=
166  clear_lead_;
167  status = encryptor_->EncryptFrame(sample, encrypt_frame);
168  if (!status.ok()) {
169  LOG(ERROR) << "Error encrypting frame.";
170  return status;
171  }
172  if (encrypt_frame && muxer_listener_)
173  muxer_listener_->OnEncryptionStart();
174  }
175 
176 
177  // Add the sample to the durations even though we have not written the frame
178  // yet. This is needed to make sure we split Clusters at the correct point.
179  // These are only used in this method.
180  const double duration_sec =
181  static_cast<double>(sample->duration()) / info_->time_scale();
182  cluster_length_sec_ += duration_sec;
183  segment_length_sec_ += duration_sec;
184 
185  prev_sample_ = sample;
186  return Status::OK;
187 }
188 
189 float Segmenter::GetDuration() const {
190  return static_cast<float>(segment_info_.duration()) *
191  segment_info_.timecode_scale() / kSecondsToNs;
192 }
193 
194 uint64_t Segmenter::FromBMFFTimescale(uint64_t time_timescale) {
195  // Convert the time from BMFF time_code to WebM timecode scale.
196  const int64_t time_ns =
197  kSecondsToNs * time_timescale / info_->time_scale();
198  return time_ns / segment_info_.timecode_scale();
199 }
200 
201 uint64_t Segmenter::FromWebMTimecode(uint64_t time_webm_timecode) {
202  // Convert the time to BMFF time_code from WebM timecode scale.
203  const int64_t time_ns = time_webm_timecode * segment_info_.timecode_scale();
204  return time_ns * info_->time_scale() / kSecondsToNs;
205 }
206 
207 Status Segmenter::WriteSegmentHeader(uint64_t file_size, MkvWriter* writer) {
208  Status error_status(error::FILE_FAILURE, "Error writing segment header.");
209 
210  if (!WriteEbmlHeader(writer))
211  return error_status;
212 
213  if (WriteID(writer, mkvmuxer::kMkvSegment) != 0)
214  return error_status;
215 
216  const uint64_t segment_size_size = 8;
217  segment_payload_pos_ = writer->Position() + segment_size_size;
218  if (file_size > 0) {
219  // We want the size of the segment element, so subtract the header.
220  if (WriteUIntSize(writer, file_size - segment_payload_pos_,
221  segment_size_size) != 0)
222  return error_status;
223  if (!seek_head_.Write(writer))
224  return error_status;
225  } else {
226  if (SerializeInt(writer, mkvmuxer::kEbmlUnknownValue, segment_size_size) !=
227  0)
228  return error_status;
229  // We don't know the header size, so write a placeholder.
230  if (!seek_head_.WriteVoid(writer))
231  return error_status;
232  }
233 
234  seek_head_.set_info_pos(writer->Position() - segment_payload_pos_);
235  if (!segment_info_.Write(writer))
236  return error_status;
237 
238  seek_head_.set_tracks_pos(writer->Position() - segment_payload_pos_);
239  if (!tracks_.Write(writer))
240  return error_status;
241 
242  return Status::OK;
243 }
244 
245 Status Segmenter::SetCluster(uint64_t start_webm_timecode,
246  uint64_t position,
247  MkvWriter* writer) {
248  const uint64_t scale = segment_info_.timecode_scale();
249  cluster_.reset(new mkvmuxer::Cluster(start_webm_timecode, position, scale));
250  cluster_->Init(writer);
251  return Status::OK;
252 }
253 
254 void Segmenter::UpdateProgress(uint64_t progress) {
255  accumulated_progress_ += progress;
256  if (!progress_listener_ || progress_target_ == 0)
257  return;
258  // It might happen that accumulated progress exceeds progress_target due to
259  // computation errors, e.g. rounding error. Cap it so it never reports > 100%
260  // progress.
261  if (accumulated_progress_ >= progress_target_) {
262  progress_listener_->OnProgress(1.0);
263  } else {
264  progress_listener_->OnProgress(static_cast<double>(accumulated_progress_) /
265  progress_target_);
266  }
267 }
268 
269 Status Segmenter::CreateVideoTrack(VideoStreamInfo* info) {
270  // The seed is only used to create a UID which we overwrite later.
271  unsigned int seed = 0;
272  mkvmuxer::VideoTrack* track = new mkvmuxer::VideoTrack(&seed);
273  if (!track)
274  return Status(error::INTERNAL_ERROR, "Failed to create video track.");
275 
276  if (info->codec() == kCodecVP8) {
277  track->set_codec_id(mkvmuxer::Tracks::kVp8CodecId);
278  } else if (info->codec() == kCodecVP9) {
279  track->set_codec_id(mkvmuxer::Tracks::kVp9CodecId);
280 
281  // The |StreamInfo::codec_config| field is stored using the MP4 format; we
282  // need to convert it to the WebM format.
283  VPCodecConfigurationRecord vp_config;
284  if (!vp_config.ParseMP4(info->codec_config())) {
285  return Status(error::INTERNAL_ERROR,
286  "Unable to parse VP9 codec configuration");
287  }
288 
289  std::vector<uint8_t> codec_config;
290  vp_config.WriteWebM(&codec_config);
291  if (!track->SetCodecPrivate(codec_config.data(), codec_config.size())) {
292  return Status(error::INTERNAL_ERROR,
293  "Private codec data required for VP9 streams");
294  }
295  } else {
296  LOG(ERROR) << "Only VP8 and VP9 video codecs are supported.";
297  return Status(error::UNIMPLEMENTED,
298  "Only VP8 and VP9 video codecs are supported.");
299  }
300 
301  track->set_uid(info->track_id());
302  if (!info->language().empty())
303  track->set_language(info->language().c_str());
304  track->set_type(mkvmuxer::Tracks::kVideo);
305  track->set_width(info->width());
306  track->set_height(info->height());
307  track->set_display_height(info->height());
308  track->set_display_width(info->width() * info->pixel_width() /
309  info->pixel_height());
310 
311  if (encryptor_)
312  encryptor_->AddTrackInfo(track);
313 
314  tracks_.AddTrack(track, info->track_id());
315  track_id_ = track->number();
316  return Status::OK;
317 }
318 
319 Status Segmenter::CreateAudioTrack(AudioStreamInfo* info) {
320  // The seed is only used to create a UID which we overwrite later.
321  unsigned int seed = 0;
322  mkvmuxer::AudioTrack* track = new mkvmuxer::AudioTrack(&seed);
323  if (!track)
324  return Status(error::INTERNAL_ERROR, "Failed to create audio track.");
325 
326  if (info->codec() == kCodecOpus) {
327  track->set_codec_id(mkvmuxer::Tracks::kOpusCodecId);
328  } else if (info->codec() == kCodecVorbis) {
329  track->set_codec_id(mkvmuxer::Tracks::kVorbisCodecId);
330  } else {
331  LOG(ERROR) << "Only Vorbis and Opus audio codec is supported.";
332  return Status(error::UNIMPLEMENTED,
333  "Only Vorbis and Opus audio codecs are supported.");
334  }
335  if (!track->SetCodecPrivate(info->codec_config().data(),
336  info->codec_config().size())) {
337  return Status(error::INTERNAL_ERROR,
338  "Private codec data required for audio streams");
339  }
340 
341  track->set_uid(info->track_id());
342  if (!info->language().empty())
343  track->set_language(info->language().c_str());
344  track->set_type(mkvmuxer::Tracks::kAudio);
345  track->set_sample_rate(info->sampling_frequency());
346  track->set_channels(info->num_channels());
347  track->set_seek_pre_roll(info->seek_preroll_ns());
348  track->set_codec_delay(info->codec_delay_ns());
349 
350  if (encryptor_)
351  encryptor_->AddTrackInfo(track);
352 
353  tracks_.AddTrack(track, info->track_id());
354  track_id_ = track->number();
355  return Status::OK;
356 }
357 
358 Status Segmenter::InitializeEncryptor(KeySource* key_source,
359  uint32_t max_sd_pixels) {
360  encryptor_.reset(new Encryptor());
361  const KeySource::TrackType track_type =
362  GetTrackTypeForEncryption(*info_, max_sd_pixels);
363  if (track_type == KeySource::TrackType::TRACK_TYPE_UNKNOWN)
364  return Status::OK;
365  return encryptor_->Initialize(muxer_listener_, track_type, key_source);
366 }
367 
368 Status Segmenter::WriteFrame(bool write_duration) {
369  // Create a frame manually so we can create non-SimpleBlock frames. This
370  // is required to allow the frame duration to be added. If the duration
371  // is not set, then a SimpleBlock will still be written.
372  mkvmuxer::Frame frame;
373 
374  if (!frame.Init(prev_sample_->data(), prev_sample_->data_size())) {
375  return Status(error::MUXER_FAILURE,
376  "Error adding sample to segment: Frame::Init failed");
377  }
378 
379  if (write_duration) {
380  const uint64_t duration_ns =
381  prev_sample_->duration() * kSecondsToNs / info_->time_scale();
382  frame.set_duration(duration_ns);
383  }
384  frame.set_is_key(prev_sample_->is_key_frame());
385  frame.set_timestamp(prev_sample_->pts() * kSecondsToNs / info_->time_scale());
386  frame.set_track_number(track_id_);
387 
388  if (prev_sample_->side_data_size() > 0) {
389  uint64_t block_add_id;
390  // First 8 bytes of side_data is the BlockAddID element's value, which is
391  // done to mimic ffmpeg behavior. See webm_cluster_parser.cc for details.
392  CHECK_GT(prev_sample_->side_data_size(), sizeof(block_add_id));
393  memcpy(&block_add_id, prev_sample_->side_data(), sizeof(block_add_id));
394  if (!frame.AddAdditionalData(
395  prev_sample_->side_data() + sizeof(block_add_id),
396  prev_sample_->side_data_size() - sizeof(block_add_id),
397  block_add_id)) {
398  return Status(
399  error::MUXER_FAILURE,
400  "Error adding sample to segment: Frame::AddAditionalData Failed");
401  }
402  }
403 
404  if (!prev_sample_->is_key_frame() && !frame.CanBeSimpleBlock()) {
405  const int64_t timestamp_ns =
406  reference_frame_timestamp_ * kSecondsToNs / info_->time_scale();
407  frame.set_reference_block_timestamp(timestamp_ns);
408  }
409 
410  // GetRelativeTimecode will return -1 if the relative timecode is too large
411  // to fit in the frame.
412  if (cluster_->GetRelativeTimecode(frame.timestamp() /
413  cluster_->timecode_scale()) < 0) {
414  const double segment_duration =
415  static_cast<double>(frame.timestamp()) / kSecondsToNs;
416  LOG(ERROR) << "Error adding sample to segment: segment too large, "
417  << segment_duration << " seconds.";
418  return Status(error::MUXER_FAILURE,
419  "Error adding sample to segment: segment too large");
420  }
421 
422  if (!cluster_->AddFrame(&frame)) {
423  return Status(error::MUXER_FAILURE,
424  "Error adding sample to segment: Cluster::AddFrame failed");
425  }
426 
427  // A reference frame is needed for non-keyframes. Having a reference to the
428  // previous block is good enough.
429  // See libwebm Segment::AddGenericFrame
430  reference_frame_timestamp_ = prev_sample_->pts();
431  return Status::OK;
432 }
433 
434 } // namespace webm
435 } // namespace media
436 } // namespace shaka
Abstract class holds stream information.
Definition: stream_info.h:26
Status Initialize(const std::vector< MediaStream * > &streams, MuxerListener *muxer_listener, ProgressListener *progress_listener, KeySource *encryption_key_source, uint32_t max_sd_pixels, double clear_lead_in_seconds, double crypto_period_duration_in_seconds, FourCC protection_scheme)
Definition: segmenter.cc:165
void UpdateProgress(uint64_t progress)
Update segmentation progress using ProgressListener.
Definition: segmenter.cc:383
virtual void OnSampleDurationReady(uint32_t sample_duration)=0
Class for parsing or writing VP codec configuration record.
virtual void OnEncryptionStart()=0
Status AddSample(const MediaStream *stream, scoped_refptr< MediaSample > sample)
Definition: segmenter.cc:316
This class listens to progress updates events.
mkvmuxer::int64 Position() const override
Definition: mkv_writer.cc:71
void WriteWebM(std::vector< uint8_t > *data) const
An implementation of IMkvWriter using our File type.
Definition: mkv_writer.h:21
bool ParseMP4(const std::vector< uint8_t > &data)
virtual void OnProgress(double progress)=0
KeySource is responsible for encryption key acquisition.
Definition: key_source.h:31
double GetDuration() const
Definition: segmenter.cc:374
Holds video stream information.