2014-02-14 23:21:05 +00:00
|
|
|
// Copyright 2014 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
|
2013-11-12 20:37:58 +00:00
|
|
|
//
|
|
|
|
// Defines the muxer interface.
|
2013-10-11 21:44:55 +00:00
|
|
|
|
|
|
|
#ifndef MEDIA_BASE_MUXER_H_
|
|
|
|
#define MEDIA_BASE_MUXER_H_
|
|
|
|
|
2016-08-17 17:41:40 +00:00
|
|
|
#include <memory>
|
2013-10-11 21:44:55 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/time/clock.h"
|
2017-02-21 18:36:50 +00:00
|
|
|
#include "packager/media/base/media_handler.h"
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/base/muxer_options.h"
|
2015-05-05 23:30:14 +00:00
|
|
|
#include "packager/media/event/muxer_listener.h"
|
2015-05-11 21:07:10 +00:00
|
|
|
#include "packager/media/event/progress_listener.h"
|
2017-06-29 22:23:53 +00:00
|
|
|
#include "packager/status.h"
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2013-10-11 21:44:55 +00:00
|
|
|
namespace media {
|
|
|
|
|
|
|
|
class MediaSample;
|
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Muxer is responsible for taking elementary stream samples and producing
|
2014-08-20 23:51:15 +00:00
|
|
|
/// media containers. An optional KeySource can be provided to Muxer
|
2014-04-16 01:09:32 +00:00
|
|
|
/// to generate encrypted outputs.
|
2017-02-21 18:36:50 +00:00
|
|
|
class Muxer : public MediaHandler {
|
2013-10-11 21:44:55 +00:00
|
|
|
public:
|
2014-01-14 01:38:34 +00:00
|
|
|
explicit Muxer(const MuxerOptions& options);
|
2013-10-11 21:44:55 +00:00
|
|
|
virtual ~Muxer();
|
|
|
|
|
2015-02-09 18:22:28 +00:00
|
|
|
/// Cancel a muxing job in progress. Will cause @a Run to exit with an error
|
|
|
|
/// status of type CANCELLED.
|
|
|
|
void Cancel();
|
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Set a MuxerListener event handler for this object.
|
|
|
|
/// @param muxer_listener should not be NULL.
|
2016-08-17 17:41:40 +00:00
|
|
|
void SetMuxerListener(std::unique_ptr<MuxerListener> muxer_listener);
|
2013-12-12 23:49:31 +00:00
|
|
|
|
2015-05-11 21:07:10 +00:00
|
|
|
/// Set a ProgressListener event handler for this object.
|
|
|
|
/// @param progress_listener should not be NULL.
|
2016-08-17 17:41:40 +00:00
|
|
|
void SetProgressListener(std::unique_ptr<ProgressListener> progress_listener);
|
2015-05-11 21:07:10 +00:00
|
|
|
|
2017-09-12 17:24:24 +00:00
|
|
|
const std::vector<std::shared_ptr<const StreamInfo>>& streams() const {
|
2017-02-21 18:36:50 +00:00
|
|
|
return streams_;
|
|
|
|
}
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2014-01-24 18:46:46 +00:00
|
|
|
/// Inject clock, mainly used for testing.
|
|
|
|
/// The injected clock will be used to generate the creation time-stamp and
|
|
|
|
/// modification time-stamp of the muxer output.
|
|
|
|
/// If no clock is injected, the code uses base::Time::Now() to generate the
|
|
|
|
/// time-stamps.
|
|
|
|
/// @param clock is the Clock to be injected.
|
2014-02-28 02:39:52 +00:00
|
|
|
void set_clock(base::Clock* clock) {
|
|
|
|
clock_ = clock;
|
|
|
|
}
|
|
|
|
|
2013-11-12 20:37:58 +00:00
|
|
|
protected:
|
2017-02-21 18:36:50 +00:00
|
|
|
/// @name MediaHandler implementation overrides.
|
|
|
|
/// @{
|
|
|
|
Status InitializeInternal() override { return Status::OK; }
|
|
|
|
Status Process(std::unique_ptr<StreamData> stream_data) override;
|
2017-03-03 00:10:30 +00:00
|
|
|
Status OnFlushRequest(size_t input_stream_index) override { return Finalize(); }
|
2017-02-21 18:36:50 +00:00
|
|
|
/// @}
|
|
|
|
|
2013-11-12 20:37:58 +00:00
|
|
|
const MuxerOptions& options() const { return options_; }
|
2015-05-07 21:06:16 +00:00
|
|
|
MuxerListener* muxer_listener() { return muxer_listener_.get(); }
|
2015-05-11 21:07:10 +00:00
|
|
|
ProgressListener* progress_listener() { return progress_listener_.get(); }
|
2014-02-28 02:39:52 +00:00
|
|
|
base::Clock* clock() { return clock_; }
|
2013-10-11 21:44:55 +00:00
|
|
|
|
|
|
|
private:
|
2014-04-09 17:34:55 +00:00
|
|
|
// Initialize the muxer.
|
2017-02-21 18:36:50 +00:00
|
|
|
virtual Status InitializeMuxer() = 0;
|
2014-04-09 17:34:55 +00:00
|
|
|
|
|
|
|
// Final clean up.
|
|
|
|
virtual Status Finalize() = 0;
|
|
|
|
|
2017-02-24 01:17:47 +00:00
|
|
|
// Add a new sample.
|
2017-09-12 17:24:24 +00:00
|
|
|
virtual Status AddSample(
|
|
|
|
size_t stream_id,
|
|
|
|
const MediaSample& sample) = 0;
|
2017-02-24 01:17:47 +00:00
|
|
|
|
|
|
|
// Finalize the segment or subsegment.
|
2017-09-12 17:24:24 +00:00
|
|
|
virtual Status FinalizeSegment(
|
|
|
|
size_t stream_id,
|
|
|
|
const SegmentInfo& segment_info) = 0;
|
2014-04-09 17:34:55 +00:00
|
|
|
|
2013-11-12 20:37:58 +00:00
|
|
|
MuxerOptions options_;
|
2017-09-12 17:24:24 +00:00
|
|
|
std::vector<std::shared_ptr<const StreamInfo>> streams_;
|
2017-06-20 23:30:03 +00:00
|
|
|
std::vector<uint8_t> current_key_id_;
|
2017-03-11 02:49:55 +00:00
|
|
|
bool encryption_started_ = false;
|
2015-02-09 18:22:28 +00:00
|
|
|
bool cancelled_;
|
2013-10-11 21:44:55 +00:00
|
|
|
|
2016-08-17 17:41:40 +00:00
|
|
|
std::unique_ptr<MuxerListener> muxer_listener_;
|
|
|
|
std::unique_ptr<ProgressListener> progress_listener_;
|
2014-02-28 02:39:52 +00:00
|
|
|
// An external injected clock, can be NULL.
|
|
|
|
base::Clock* clock_;
|
2013-12-12 23:49:31 +00:00
|
|
|
|
2013-10-11 21:44:55 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(Muxer);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2013-10-11 21:44:55 +00:00
|
|
|
|
|
|
|
#endif // MEDIA_BASE_MUXER_H_
|