// 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 #ifndef MEDIA_FORMATS_MP4_FRAGMENTER_H_ #define MEDIA_FORMATS_MP4_FRAGMENTER_H_ #include #include "packager/base/logging.h" #include "packager/base/memory/ref_counted.h" #include "packager/base/memory/scoped_ptr.h" #include "packager/media/base/status.h" namespace edash_packager { namespace media { class BufferWriter; class MediaSample; class StreamInfo; namespace mp4 { struct SegmentReference; struct TrackFragment; /// Fragmenter is responsible for the generation of MP4 fragments, i.e. 'traf' /// box and corresponding 'mdat' box. class Fragmenter { public: /// @param info contains stream information. /// @param traf points to a TrackFragment box. Fragmenter(scoped_refptr info, TrackFragment* traf); virtual ~Fragmenter(); /// Add a sample to the fragmenter. /// @param sample points to the sample to be added. /// @return OK on success, an error status otherwise. virtual Status AddSample(scoped_refptr sample); /// Initialize the fragment with default data. /// @param first_sample_dts specifies the decoding timestamp for the first /// sample for this fragment. /// @return OK on success, an error status otherwise. virtual Status InitializeFragment(int64_t first_sample_dts); /// Finalize and optimize the fragment. virtual void FinalizeFragment(); /// Fill @a reference with current fragment information. void GenerateSegmentReference(SegmentReference* reference); uint64_t fragment_duration() const { return fragment_duration_; } uint64_t first_sap_time() const { return first_sap_time_; } uint64_t earliest_presentation_time() const { return earliest_presentation_time_; } bool fragment_initialized() const { return fragment_initialized_; } bool fragment_finalized() const { return fragment_finalized_; } BufferWriter* data() { return data_.get(); } protected: TrackFragment* traf() { return traf_; } /// Optimize sample entries table. If all values in @a entries are identical, /// then @a entries is cleared and the value is assigned to @a default_value; /// otherwise it is a NOP. Return true if the table is optimized. template bool OptimizeSampleEntries(std::vector* entries, T* default_value); private: // Check if the current fragment starts with SAP. bool StartsWithSAP(); TrackFragment* traf_; uint64_t seek_preroll_; bool fragment_initialized_; bool fragment_finalized_; uint64_t fragment_duration_; int64_t presentation_start_time_; int64_t earliest_presentation_time_; int64_t first_sap_time_; scoped_ptr data_; DISALLOW_COPY_AND_ASSIGN(Fragmenter); }; template bool Fragmenter::OptimizeSampleEntries(std::vector* entries, T* default_value) { DCHECK(entries); DCHECK(default_value); DCHECK(!entries->empty()); typename std::vector::const_iterator it = entries->begin(); T value = *it; for (; it < entries->end(); ++it) if (value != *it) return false; // Clear |entries| if it contains only one value. entries->clear(); *default_value = value; return true; } } // namespace mp4 } // namespace media } // namespace edash_packager #endif // MEDIA_FORMATS_MP4_FRAGMENTER_H_