27std::shared_ptr<Muxer> MuxerFactory::CreateMuxer(
28 MediaContainerName output_format,
29 const StreamDescriptor& stream) {
32 options.transport_stream_timestamp_offset_ms =
33 transport_stream_timestamp_offset_ms_;
39 std::shared_ptr<Muxer> muxer;
41 switch (output_format) {
46 muxer = std::make_shared<PackedAudioWriter>(options);
49 muxer = std::make_shared<webm::WebMMuxer>(options);
52 muxer = std::make_shared<ttml::TtmlMuxer>(options);
54 case CONTAINER_WEBVTT:
55 muxer = std::make_shared<webvtt::WebVttMuxer>(options);
57 case CONTAINER_MPEG2TS:
58 muxer = std::make_shared<mp2t::TsMuxer>(options);
61 muxer = std::make_shared<mp4::MP4Muxer>(options);
64 LOG(ERROR) <<
"Cannot support muxing to " << output_format;
75 muxer->set_clock(clock_);