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/base/memory/ref_counted.h"
12 #include "packager/media/base/status.h"
13 #include "packager/media/formats/webm/encryptor.h"
14 #include "packager/media/formats/webm/mkv_writer.h"
15 #include "packager/media/formats/webm/seek_head.h"
16 #include "packager/third_party/libwebm/src/mkvmuxer.hpp"
17 
18 namespace shaka {
19 namespace media {
20 
21 struct MuxerOptions;
22 
23 class AudioStreamInfo;
24 class KeySource;
25 class MediaSample;
26 class StreamInfo;
27 class MuxerListener;
28 class ProgressListener;
29 class StreamInfo;
30 class VideoStreamInfo;
31 
32 namespace webm {
33 
34 class Segmenter {
35  public:
36  explicit Segmenter(const MuxerOptions& options);
37  virtual ~Segmenter();
38 
53  Status Initialize(std::unique_ptr<MkvWriter> writer,
54  StreamInfo* info,
55  ProgressListener* progress_listener,
56  MuxerListener* muxer_listener,
57  KeySource* encryption_key_source,
58  uint32_t max_sd_pixels,
59  double clear_lead_in_seconds);
60 
63  Status Finalize();
64 
68  Status AddSample(scoped_refptr<MediaSample> sample);
69 
72  virtual bool GetInitRangeStartAndEnd(uint64_t* start, uint64_t* end) = 0;
73 
76  virtual bool GetIndexRangeStartAndEnd(uint64_t* start, uint64_t* end) = 0;
77 
79  float GetDuration() const;
80 
81  protected:
84  uint64_t FromBMFFTimescale(uint64_t time_timescale);
86  uint64_t FromWebMTimecode(uint64_t time_webm_timecode);
88  Status WriteSegmentHeader(uint64_t file_size, MkvWriter* writer);
90  Status SetCluster(uint64_t start_webm_timecode,
91  uint64_t position,
92  MkvWriter* writer);
93 
95  void UpdateProgress(uint64_t progress);
96  void set_progress_target(uint64_t target) { progress_target_ = target; }
97 
98  const MuxerOptions& options() const { return options_; }
99  mkvmuxer::Cluster* cluster() { return cluster_.get(); }
100  mkvmuxer::Cues* cues() { return &cues_; }
101  MuxerListener* muxer_listener() { return muxer_listener_; }
102  StreamInfo* info() { return info_; }
103  SeekHead* seek_head() { return &seek_head_; }
104 
105  int track_id() const { return track_id_; }
106  uint64_t segment_payload_pos() const { return segment_payload_pos_; }
107  double cluster_length_sec() const { return cluster_length_sec_; }
108 
109  virtual Status DoInitialize(std::unique_ptr<MkvWriter> writer) = 0;
110  virtual Status DoFinalize() = 0;
111 
112  private:
113  Status CreateVideoTrack(VideoStreamInfo* info);
114  Status CreateAudioTrack(AudioStreamInfo* info);
115  Status InitializeEncryptor(KeySource* key_source, uint32_t max_sd_pixels);
116 
117  // Writes the previous frame to the file.
118  Status WriteFrame(bool write_duration);
119 
120  // This is called when there needs to be a new subsegment. This does nothing
121  // in single-segment mode. In multi-segment mode this creates a new Cluster
122  // element.
123  virtual Status NewSubsegment(uint64_t start_timescale) = 0;
124  // This is called when there needs to be a new segment. In single-segment
125  // mode, this creates a new Cluster element. In multi-segment mode this
126  // creates a new output file.
127  virtual Status NewSegment(uint64_t start_timescale) = 0;
128 
129  // Store the previous sample so we know which one is the last frame.
130  scoped_refptr<MediaSample> prev_sample_;
131  // The reference frame timestamp; used to populate the ReferenceBlock element
132  // when writing non-keyframe BlockGroups.
133  uint64_t reference_frame_timestamp_;
134 
135  const MuxerOptions& options_;
136  std::unique_ptr<Encryptor> encryptor_;
137  double clear_lead_;
138  bool enable_encryption_; // Encryption is enabled only after clear_lead_.
139 
140  std::unique_ptr<mkvmuxer::Cluster> cluster_;
141  mkvmuxer::Cues cues_;
142  SeekHead seek_head_;
143  mkvmuxer::SegmentInfo segment_info_;
144  mkvmuxer::Tracks tracks_;
145 
146  StreamInfo* info_;
147  MuxerListener* muxer_listener_;
148  ProgressListener* progress_listener_;
149  uint64_t progress_target_;
150  uint64_t accumulated_progress_;
151  uint64_t first_timestamp_;
152  int64_t sample_duration_;
153  // The position (in bytes) of the start of the Segment payload in the init
154  // file. This is also the size of the header before the SeekHead.
155  uint64_t segment_payload_pos_;
156 
157  double cluster_length_sec_;
158  double segment_length_sec_;
159 
160  int track_id_;
161 
162  DISALLOW_COPY_AND_ASSIGN(Segmenter);
163 };
164 
165 } // namespace webm
166 } // namespace media
167 } // namespace shaka
168 
169 #endif // MEDIA_FORMATS_WEBM_SEGMENTER_H_
Status WriteSegmentHeader(uint64_t file_size, MkvWriter *writer)
Writes the Segment header to writer.
Definition: segmenter.cc:217
Abstract class holds stream information.
Definition: stream_info.h:53
Status AddSample(scoped_refptr< MediaSample > sample)
Definition: segmenter.cc:120
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:255
This class listens to progress updates events.
virtual bool GetIndexRangeStartAndEnd(uint64_t *start, uint64_t *end)=0
An implementation of IMkvWriter using our File type.
Definition: mkv_writer.h:21
Status Initialize(std::unique_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:51
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:264
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:211
Holds video stream information.
Holds audio stream information.
uint64_t FromBMFFTimescale(uint64_t time_timescale)
Definition: segmenter.cc:204