DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
segmenter.h
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 #ifndef MEDIA_FORMATS_WEBM_SEGMENTER_H_
8 #define MEDIA_FORMATS_WEBM_SEGMENTER_H_
9 
10 #include <memory>
11 #include "packager/media/base/status.h"
12 #include "packager/media/formats/webm/encryptor.h"
13 #include "packager/media/formats/webm/mkv_writer.h"
14 #include "packager/media/formats/webm/seek_head.h"
15 #include "packager/third_party/libwebm/src/mkvmuxer.hpp"
16 
17 namespace shaka {
18 namespace media {
19 
20 struct MuxerOptions;
21 
22 class AudioStreamInfo;
23 class KeySource;
24 class MediaSample;
25 class StreamInfo;
26 class MuxerListener;
27 class ProgressListener;
28 class StreamInfo;
29 class VideoStreamInfo;
30 
31 namespace webm {
32 
33 class Segmenter {
34  public:
35  explicit Segmenter(const MuxerOptions& options);
36  virtual ~Segmenter();
37 
60  Status Initialize(std::unique_ptr<MkvWriter> writer,
61  StreamInfo* info,
62  ProgressListener* progress_listener,
63  MuxerListener* muxer_listener,
64  KeySource* encryption_key_source,
65  uint32_t max_sd_pixels,
66  uint32_t max_hd_pixels,
67  uint32_t max_uhd1_pixels,
68  double clear_lead_in_seconds);
69 
72  Status Finalize();
73 
77  Status AddSample(std::shared_ptr<MediaSample> sample);
78 
81  virtual bool GetInitRangeStartAndEnd(uint64_t* start, uint64_t* end) = 0;
82 
85  virtual bool GetIndexRangeStartAndEnd(uint64_t* start, uint64_t* end) = 0;
86 
88  float GetDuration() const;
89 
90  protected:
93  uint64_t FromBMFFTimescale(uint64_t time_timescale);
95  uint64_t FromWebMTimecode(uint64_t time_webm_timecode);
97  Status WriteSegmentHeader(uint64_t file_size, MkvWriter* writer);
99  Status SetCluster(uint64_t start_webm_timecode,
100  uint64_t position,
101  MkvWriter* writer);
102 
104  void UpdateProgress(uint64_t progress);
105  void set_progress_target(uint64_t target) { progress_target_ = target; }
106 
107  const MuxerOptions& options() const { return options_; }
108  mkvmuxer::Cluster* cluster() { return cluster_.get(); }
109  mkvmuxer::Cues* cues() { return &cues_; }
110  MuxerListener* muxer_listener() { return muxer_listener_; }
111  StreamInfo* info() { return info_; }
112  SeekHead* seek_head() { return &seek_head_; }
113 
114  int track_id() const { return track_id_; }
115  uint64_t segment_payload_pos() const { return segment_payload_pos_; }
116  uint64_t cluster_length_in_time_scale() const {
117  return cluster_length_in_time_scale_;
118  }
119 
120  virtual Status DoInitialize(std::unique_ptr<MkvWriter> writer) = 0;
121  virtual Status DoFinalize() = 0;
122 
123  private:
124  Status CreateVideoTrack(VideoStreamInfo* info);
125  Status CreateAudioTrack(AudioStreamInfo* info);
126  Status InitializeEncryptor(KeySource* key_source, uint32_t max_sd_pixels,
127  uint32_t max_hd_pixels, uint32_t max_uhd1_pixels);
128 
129  // Writes the previous frame to the file.
130  Status WriteFrame(bool write_duration);
131 
132  // This is called when there needs to be a new subsegment. This does nothing
133  // in single-segment mode. In multi-segment mode this creates a new Cluster
134  // element.
135  virtual Status NewSubsegment(uint64_t start_timescale) = 0;
136  // This is called when there needs to be a new segment. In single-segment
137  // mode, this creates a new Cluster element. In multi-segment mode this
138  // creates a new output file.
139  virtual Status NewSegment(uint64_t start_timescale) = 0;
140 
141  // Store the previous sample so we know which one is the last frame.
142  std::shared_ptr<MediaSample> prev_sample_;
143  // The reference frame timestamp; used to populate the ReferenceBlock element
144  // when writing non-keyframe BlockGroups.
145  uint64_t reference_frame_timestamp_;
146 
147  const MuxerOptions& options_;
148  std::unique_ptr<Encryptor> encryptor_;
149  double clear_lead_;
150  bool enable_encryption_; // Encryption is enabled only after clear_lead_.
151 
152  std::unique_ptr<mkvmuxer::Cluster> cluster_;
153  mkvmuxer::Cues cues_;
154  SeekHead seek_head_;
155  mkvmuxer::SegmentInfo segment_info_;
156  mkvmuxer::Tracks tracks_;
157 
158  StreamInfo* info_;
159  MuxerListener* muxer_listener_;
160  ProgressListener* progress_listener_;
161  uint64_t progress_target_;
162  uint64_t accumulated_progress_;
163  uint64_t first_timestamp_;
164  int64_t sample_duration_;
165  // The position (in bytes) of the start of the Segment payload in the init
166  // file. This is also the size of the header before the SeekHead.
167  uint64_t segment_payload_pos_;
168 
169  // Durations in timescale.
170  uint64_t cluster_length_in_time_scale_;
171  uint64_t segment_length_in_time_scale_;
172 
173  int track_id_;
174 
175  DISALLOW_COPY_AND_ASSIGN(Segmenter);
176 };
177 
178 } // namespace webm
179 } // namespace media
180 } // namespace shaka
181 
182 #endif // MEDIA_FORMATS_WEBM_SEGMENTER_H_
Status WriteSegmentHeader(uint64_t file_size, MkvWriter *writer)
Writes the Segment header to writer.
Definition: segmenter.cc:221
Abstract class holds stream information.
Definition: stream_info.h:51
Status Initialize(std::unique_ptr< MkvWriter > writer, StreamInfo *info, ProgressListener *progress_listener, MuxerListener *muxer_listener, KeySource *encryption_key_source, uint32_t max_sd_pixels, uint32_t max_hd_pixels, uint32_t max_uhd1_pixels, double clear_lead_in_seconds)
Definition: segmenter.cc:51
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:18
Status SetCluster(uint64_t start_webm_timecode, uint64_t position, MkvWriter *writer)
Creates a Cluster object with the given parameters.
Definition: segmenter.cc:259
This class listens to progress updates events.
virtual bool GetIndexRangeStartAndEnd(uint64_t *start, uint64_t *end)=0
Status AddSample(std::shared_ptr< MediaSample > sample)
Definition: segmenter.cc:124
An implementation of IMkvWriter using our File type.
Definition: mkv_writer.h:21
KeySource is responsible for encryption key acquisition.
Definition: key_source.h:30
void UpdateProgress(uint64_t progress)
Update segmentation progress using ProgressListener.
Definition: segmenter.cc:268
virtual bool GetInitRangeStartAndEnd(uint64_t *start, uint64_t *end)=0
uint64_t FromWebMTimecode(uint64_t time_webm_timecode)
Converts the given time in WebM timecode to ISO BMFF timescale.
Definition: segmenter.cc:215
Holds video stream information.
Holds audio stream information.
uint64_t FromBMFFTimescale(uint64_t time_timescale)
Definition: segmenter.cc:208