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
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
#ifndef MEDIA_MP4_SEGMENTER_H_
|
|
|
|
#define MEDIA_MP4_SEGMENTER_H_
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/memory/ref_counted.h"
|
|
|
|
#include "base/memory/scoped_ptr.h"
|
|
|
|
#include "media/base/status.h"
|
|
|
|
|
|
|
|
namespace media {
|
|
|
|
|
|
|
|
struct MuxerOptions;
|
|
|
|
|
|
|
|
class BufferWriter;
|
|
|
|
class EncryptorSource;
|
|
|
|
class MediaSample;
|
|
|
|
class MediaStream;
|
|
|
|
|
|
|
|
namespace mp4 {
|
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
class Fragmenter;
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
|
|
struct FileType;
|
|
|
|
struct Movie;
|
|
|
|
struct MovieFragment;
|
|
|
|
struct SegmentIndex;
|
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
/// This class defines the Segmenter which is responsible for organizing
|
|
|
|
/// fragments into segments/subsegments and package them into a MP4 file.
|
|
|
|
/// Inherited by MultiSegmentSegmenter and SingleSegmentSegmenter.
|
|
|
|
/// SingleSegmentSegmenter defines the Segmenter for DASH Video-On-Demand with
|
|
|
|
/// a single segment for each media presentation while MultiSegmentSegmenter
|
|
|
|
/// handles all other cases including DASH live profile.
|
|
|
|
class Segmenter {
|
2013-11-12 20:37:58 +00:00
|
|
|
public:
|
2014-04-08 20:21:07 +00:00
|
|
|
Segmenter(const MuxerOptions& options,
|
|
|
|
scoped_ptr<FileType> ftyp,
|
|
|
|
scoped_ptr<Movie> moov);
|
|
|
|
virtual ~Segmenter();
|
2013-11-12 20:37:58 +00:00
|
|
|
|
2014-01-23 22:34:39 +00:00
|
|
|
/// Initialize the segmenter.
|
|
|
|
/// Calling other public methods of this class without this method returning
|
|
|
|
/// Status::OK, results in an undefined behavior.
|
|
|
|
/// @param encryptor_source can be NULL.
|
|
|
|
/// @return Status::OK on success.
|
2013-11-12 20:37:58 +00:00
|
|
|
virtual Status Initialize(EncryptorSource* encryptor_source,
|
2014-01-14 01:38:34 +00:00
|
|
|
double clear_lead_in_seconds,
|
2013-11-12 20:37:58 +00:00
|
|
|
const std::vector<MediaStream*>& streams);
|
|
|
|
|
|
|
|
virtual Status Finalize();
|
|
|
|
|
|
|
|
virtual Status AddSample(const MediaStream* stream,
|
|
|
|
scoped_refptr<MediaSample> sample);
|
|
|
|
|
2014-01-23 22:34:39 +00:00
|
|
|
/// @return true if there is an initialization range, while setting @a offset
|
|
|
|
/// and @a size; or false if initialization range does not apply.
|
2013-12-12 23:49:31 +00:00
|
|
|
virtual bool GetInitRange(size_t* offset, size_t* size) = 0;
|
|
|
|
|
2014-01-23 22:34:39 +00:00
|
|
|
/// @return true if there is an index byte range, while setting @a offset
|
|
|
|
/// and @a size; or false if index byte range does not apply.
|
2013-12-12 23:49:31 +00:00
|
|
|
virtual bool GetIndexRange(size_t* offset, size_t* size) = 0;
|
|
|
|
|
|
|
|
uint32 GetReferenceTimeScale() const;
|
|
|
|
|
2014-01-23 22:34:39 +00:00
|
|
|
/// @return The total length, in seconds, of segmented media files.
|
2013-12-12 23:49:31 +00:00
|
|
|
double GetDuration() const;
|
|
|
|
|
2013-11-12 20:37:58 +00:00
|
|
|
protected:
|
|
|
|
void InitializeSegment();
|
|
|
|
virtual Status FinalizeSegment();
|
|
|
|
|
|
|
|
uint32 GetReferenceStreamId();
|
|
|
|
|
|
|
|
const MuxerOptions& options() const { return options_; }
|
|
|
|
FileType* ftyp() { return ftyp_.get(); }
|
|
|
|
Movie* moov() { return moov_.get(); }
|
|
|
|
BufferWriter* fragment_buffer() { return fragment_buffer_.get(); }
|
|
|
|
SegmentIndex* sidx() { return sidx_.get(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
void InitializeFragments();
|
2014-04-08 20:21:07 +00:00
|
|
|
Status FinalizeFragment(Fragmenter* fragment);
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
|
|
const MuxerOptions& options_;
|
|
|
|
scoped_ptr<FileType> ftyp_;
|
|
|
|
scoped_ptr<Movie> moov_;
|
|
|
|
scoped_ptr<MovieFragment> moof_;
|
|
|
|
scoped_ptr<BufferWriter> fragment_buffer_;
|
|
|
|
scoped_ptr<SegmentIndex> sidx_;
|
2014-04-08 20:21:07 +00:00
|
|
|
std::vector<Fragmenter*> fragmenters_;
|
2013-11-12 20:37:58 +00:00
|
|
|
std::vector<uint64> segment_durations_;
|
|
|
|
std::map<const MediaStream*, uint32> stream_map_;
|
|
|
|
bool segment_initialized_;
|
|
|
|
bool end_of_segment_;
|
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(Segmenter);
|
2013-11-12 20:37:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mp4
|
|
|
|
} // namespace media
|
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
#endif // MEDIA_MP4_SEGMENTER_H_
|