2016-03-21 23:33:00 +00:00
|
|
|
// Copyright 2016 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
|
|
|
#ifndef PACKAGER_MEDIA_FORMATS_MP2T_TS_MUXER_H_
|
|
|
|
#define PACKAGER_MEDIA_FORMATS_MP2T_TS_MUXER_H_
|
|
|
|
|
|
|
|
#include "packager/base/macros.h"
|
|
|
|
#include "packager/media/base/muxer.h"
|
|
|
|
#include "packager/media/formats/mp2t/ts_segmenter.h"
|
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2016-03-21 23:33:00 +00:00
|
|
|
namespace media {
|
|
|
|
namespace mp2t {
|
|
|
|
|
|
|
|
/// MPEG2 TS muxer.
|
|
|
|
/// This is a single program, single elementary stream TS muxer.
|
|
|
|
class TsMuxer : public Muxer {
|
|
|
|
public:
|
|
|
|
explicit TsMuxer(const MuxerOptions& muxer_options);
|
|
|
|
~TsMuxer() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Muxer implementation.
|
|
|
|
Status Initialize() override;
|
|
|
|
Status Finalize() override;
|
|
|
|
Status DoAddSample(const MediaStream* stream,
|
|
|
|
scoped_refptr<MediaSample> sample) override;
|
|
|
|
|
2016-04-16 22:58:47 +00:00
|
|
|
void FireOnMediaStartEvent();
|
|
|
|
void FireOnMediaEndEvent();
|
|
|
|
|
2016-08-17 17:41:40 +00:00
|
|
|
std::unique_ptr<TsSegmenter> segmenter_;
|
2016-03-21 23:33:00 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(TsMuxer);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mp2t
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2016-03-21 23:33:00 +00:00
|
|
|
|
|
|
|
#endif // PACKAGER_MEDIA_FORMATS_MP2T_TS_MUXER_H_
|