Shaka Packager SDK
ts_muxer.h
1 // Copyright 2016 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 PACKAGER_MEDIA_FORMATS_MP2T_TS_MUXER_H_
8 #define PACKAGER_MEDIA_FORMATS_MP2T_TS_MUXER_H_
9 
10 #include "packager/base/macros.h"
11 #include "packager/media/base/muxer.h"
12 #include "packager/media/formats/mp2t/ts_segmenter.h"
13 
14 namespace shaka {
15 namespace media {
16 namespace mp2t {
17 
20 class TsMuxer : public Muxer {
21  public:
22  explicit TsMuxer(const MuxerOptions& muxer_options);
23  ~TsMuxer() override;
24 
25  private:
26  // Muxer implementation.
27  Status InitializeMuxer() override;
28  Status Finalize() override;
29  Status AddMediaSample(size_t stream_id, const MediaSample& sample) override;
30  Status FinalizeSegment(size_t stream_id,
31  const SegmentInfo& sample) override;
32 
33  void FireOnMediaStartEvent();
34  void FireOnMediaEndEvent();
35 
36  std::unique_ptr<TsSegmenter> segmenter_;
37  int64_t sample_durations_[2];
38  int64_t num_samples_ = 0;
39 
40  DISALLOW_COPY_AND_ASSIGN(TsMuxer);
41 };
42 
43 } // namespace mp2t
44 } // namespace media
45 } // namespace shaka
46 
47 #endif // PACKAGER_MEDIA_FORMATS_MP2T_TS_MUXER_H_
shaka::media::Muxer
Definition: muxer.h:30
shaka::media::SegmentInfo
Definition: media_handler.h:55
shaka
All the methods that are virtual are virtual for mocking.
Definition: gflags_hex_bytes.cc:11
shaka::Status
Definition: status.h:110
shaka::media::MuxerOptions
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:20
shaka::media::MediaSample
Class to hold a media sample.
Definition: media_sample.h:22
shaka::media::mp2t::TsMuxer
Definition: ts_muxer.h:20