7 #ifndef PACKAGER_MEDIA_BASE_MEDIA_HANDLER_H_ 8 #define PACKAGER_MEDIA_BASE_MEDIA_HANDLER_H_ 14 #include "packager/media/base/media_sample.h" 15 #include "packager/media/base/stream_info.h" 16 #include "packager/media/base/text_sample.h" 17 #include "packager/status.h" 22 enum class StreamDataType {
38 double start_time_in_seconds = 0;
39 double duration_in_seconds = 0;
43 enum class CueEventType { kCueIn, kCueOut, kCuePoint };
48 CueEventType type = CueEventType::kCuePoint;
49 double time_in_seconds;
54 bool is_subsegment =
false;
55 bool is_encrypted =
false;
56 int64_t start_timestamp = -1;
61 std::shared_ptr<EncryptionConfig> key_rotation_encryption_config;
66 size_t stream_index =
static_cast<size_t>(-1);
67 StreamDataType stream_data_type = StreamDataType::kUnknown;
69 std::shared_ptr<const StreamInfo> stream_info;
70 std::shared_ptr<const MediaSample> media_sample;
71 std::shared_ptr<const TextSample> text_sample;
72 std::shared_ptr<const SegmentInfo> segment_info;
73 std::shared_ptr<const Scte35Event> scte35_event;
74 std::shared_ptr<const CueEvent> cue_event;
76 static std::unique_ptr<StreamData> FromStreamInfo(
77 size_t stream_index, std::shared_ptr<const StreamInfo> stream_info) {
78 std::unique_ptr<StreamData> stream_data(
new StreamData);
79 stream_data->stream_index = stream_index;
80 stream_data->stream_data_type = StreamDataType::kStreamInfo;
81 stream_data->stream_info = std::move(stream_info);
85 static std::unique_ptr<StreamData> FromMediaSample(
86 size_t stream_index, std::shared_ptr<const MediaSample> media_sample) {
87 std::unique_ptr<StreamData> stream_data(
new StreamData);
88 stream_data->stream_index = stream_index;
89 stream_data->stream_data_type = StreamDataType::kMediaSample;
90 stream_data->media_sample = std::move(media_sample);
94 static std::unique_ptr<StreamData> FromTextSample(
95 size_t stream_index, std::shared_ptr<const TextSample> text_sample) {
96 std::unique_ptr<StreamData> stream_data(
new StreamData);
97 stream_data->stream_index = stream_index;
98 stream_data->stream_data_type = StreamDataType::kTextSample;
99 stream_data->text_sample = std::move(text_sample);
103 static std::unique_ptr<StreamData> FromSegmentInfo(
104 size_t stream_index, std::shared_ptr<const SegmentInfo> segment_info) {
105 std::unique_ptr<StreamData> stream_data(
new StreamData);
106 stream_data->stream_index = stream_index;
107 stream_data->stream_data_type = StreamDataType::kSegmentInfo;
108 stream_data->segment_info = std::move(segment_info);
112 static std::unique_ptr<StreamData> FromScte35Event(
114 std::shared_ptr<const Scte35Event> scte35_event) {
115 std::unique_ptr<StreamData> stream_data(
new StreamData);
116 stream_data->stream_index = stream_index;
117 stream_data->stream_data_type = StreamDataType::kScte35Event;
118 stream_data->scte35_event = std::move(scte35_event);
122 static std::unique_ptr<StreamData> FromCueEvent(
124 std::shared_ptr<const CueEvent> cue_event) {
125 std::unique_ptr<StreamData> stream_data(
new StreamData);
126 stream_data->stream_index = stream_index;
127 stream_data->stream_data_type = StreamDataType::kCueEvent;
128 stream_data->cue_event = std::move(cue_event);
154 Status SetHandler(
size_t output_stream_index,
155 std::shared_ptr<MediaHandler> handler);
159 return SetHandler(next_output_stream_index_, handler);
172 virtual Status InitializeInternal() = 0;
178 virtual Status Process(std::unique_ptr<StreamData> stream_data) = 0;
181 virtual Status OnFlushRequest(
size_t input_stream_index);
184 virtual bool ValidateOutputStreamIndex(
size_t stream_index)
const;
188 Status Dispatch(std::unique_ptr<StreamData> stream_data)
const;
193 std::shared_ptr<const StreamInfo> stream_info)
const {
195 StreamData::FromStreamInfo(stream_index, std::move(stream_info)));
201 std::shared_ptr<const MediaSample> media_sample)
const {
203 StreamData::FromMediaSample(stream_index, std::move(media_sample)));
210 std::shared_ptr<const TextSample> text_sample)
const {
212 StreamData::FromTextSample(stream_index, std::move(text_sample)));
218 std::shared_ptr<const SegmentInfo> segment_info)
const {
220 StreamData::FromSegmentInfo(stream_index, std::move(segment_info)));
226 std::shared_ptr<const Scte35Event> scte35_event)
const {
228 StreamData::FromScte35Event(stream_index, std::move(scte35_event)));
233 std::shared_ptr<const CueEvent> cue_event)
const {
235 StreamData::FromCueEvent(stream_index, std::move(cue_event)));
239 Status FlushDownstream(
size_t output_stream_index);
242 Status FlushAllDownstreams();
244 bool initialized() {
return initialized_; }
245 size_t num_input_streams()
const {
return num_input_streams_; }
246 size_t next_output_stream_index()
const {
return next_output_stream_index_; }
247 const std::map<size_t, std::pair<std::shared_ptr<MediaHandler>,
size_t>>&
249 return output_handlers_;
256 bool initialized_ =
false;
258 size_t num_input_streams_ = 0;
260 size_t next_output_stream_index_ = 0;
263 std::map<size_t, std::pair<std::shared_ptr<MediaHandler>,
size_t>>
270 #endif // PACKAGER_MEDIA_BASE_MEDIA_HANDLER_H_
All the methods that are virtual are virtual for mocking.