// 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_SEGMENTER_H_ #define PACKAGER_MEDIA_FORMATS_MP2T_TS_SEGMENTER_H_ #include #include "packager/media/base/muxer_options.h" #include "packager/media/base/status.h" #include "packager/media/file/file.h" #include "packager/media/formats/mp2t/pes_packet_generator.h" #include "packager/media/formats/mp2t/ts_writer.h" namespace shaka { namespace media { class KeySource; class MuxerListener; namespace mp2t { // TODO(rkuroiwa): For now, this implements multifile segmenter. Like other // make this an abstract super class and implement multifile and single file // segmenters. class TsSegmenter { public: // TODO(rkuroiwa): Add progress listener? /// @param options is the options for this muxer. This must stay valid /// throughout the life time of the instance. /// @param listener is the MuxerListener that should be used to notify events. /// This may be null, in which case no events are sent. TsSegmenter(const MuxerOptions& options, MuxerListener* listener); ~TsSegmenter(); /// Initialize the object. /// @param stream_info is the stream info for the segmenter. /// @return OK on success. Status Initialize(const StreamInfo& stream_info); /// Finalize the segmenter. /// @return OK on success. Status Finalize(); /// @param sample gets added to this object. /// @return OK on success. Status AddSample(std::shared_ptr sample); /// Flush all the samples that are (possibly) buffered and write them to the /// current segment, this will close the file. If a file is not already opened /// before calling this, this will open one and write them to file. /// @param start_timestamp is the segment's start timestamp in the input /// stream's time scale. /// @param duration is the segment's duration in the input stream's time /// scale. // TODO(kqyang): Remove the usage of segment start timestamp and duration in // xx_segmenter, which could cause confusions on which is the source of truth // as the segment start timestamp and duration could be tracked locally. Status FinalizeSegment(uint64_t start_timestamp, uint64_t duration); /// Only for testing. void InjectTsWriterForTesting(std::unique_ptr writer); /// Only for testing. void InjectPesPacketGeneratorForTesting( std::unique_ptr generator); /// Only for testing. void SetTsWriterFileOpenedForTesting(bool value); private: Status OpenNewSegmentIfClosed(uint32_t next_pts); // Writes PES packets (carried in TsPackets) to a file. If a file is not open, // it will open one. This will not close the file. Status WritePesPacketsToFile(); const MuxerOptions& muxer_options_; MuxerListener* const listener_; // Scale used to scale the input stream to TS's timesccale (which is 90000). // Used for calculating the duration in seconds fo the current segment. double timescale_scale_ = 1.0; // Used for segment template. uint64_t segment_number_ = 0; std::unique_ptr ts_writer_; // Set to true if TsWriter::NewFile() succeeds, set to false after // TsWriter::FinalizeFile() succeeds. bool ts_writer_file_opened_ = false; std::unique_ptr pes_packet_generator_; // For OnNewSegment(). // Path of the current segment so that File::GetFileSize() can be used after // the segment has been finalized. std::string current_segment_path_; DISALLOW_COPY_AND_ASSIGN(TsSegmenter); }; } // namespace mp2t } // namespace media } // namespace shaka #endif // PACKAGER_MEDIA_FORMATS_MP2T_TS_SEGMENTER_H_