DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
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 Initialize() override;
28  Status Finalize() override;
29  Status DoAddSample(const MediaStream* stream,
30  scoped_refptr<MediaSample> sample) override;
31 
32  void FireOnMediaStartEvent();
33  void FireOnMediaEndEvent();
34 
35  scoped_ptr<TsSegmenter> segmenter_;
36 
37  DISALLOW_COPY_AND_ASSIGN(TsMuxer);
38 };
39 
40 } // namespace mp2t
41 } // namespace media
42 } // namespace shaka
43 
44 #endif // PACKAGER_MEDIA_FORMATS_MP2T_TS_MUXER_H_
This structure contains the list of configuration options for Muxer.
Definition: muxer_options.h:18