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-10 21:42:38 +00:00
|
|
|
#ifndef MEDIA_FORMATS_MP4_SINGLE_SEGMENT_SEGMENTER_H_
|
|
|
|
#define MEDIA_FORMATS_MP4_SINGLE_SEGMENT_SEGMENTER_H_
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
|
|
#include "media/file/file_closer.h"
|
2014-04-10 21:42:38 +00:00
|
|
|
#include "media/formats/mp4/segmenter.h"
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
|
|
namespace media {
|
|
|
|
namespace mp4 {
|
|
|
|
|
2014-01-23 22:34:39 +00:00
|
|
|
/// Segmenter for MP4 Dash Video-On-Demand profile. A single MP4 file with a
|
|
|
|
/// single segment is created, i.e. with only one SIDX box. The generated media
|
|
|
|
/// file can contain one or many subsegments with subsegment duration
|
|
|
|
/// defined by @b MuxerOptions.segment_duration. A subsegment can contain one
|
|
|
|
/// or many fragments with fragment duration defined by @b
|
|
|
|
/// MuxerOptions.fragment_duration. The actual subsegment or fragment duration
|
|
|
|
/// may not match the requested duration exactly, but will be approximated. That
|
2014-04-08 20:21:07 +00:00
|
|
|
/// is, the Segmenter tries to end subsegment/fragment at the first sample with
|
2014-01-23 22:34:39 +00:00
|
|
|
/// overall subsegment/fragment duration not smaller than defined duration and
|
2014-04-08 20:21:07 +00:00
|
|
|
/// yet meet SAP requirements. SingleSegmentSegmenter ignores @b
|
2014-01-23 22:34:39 +00:00
|
|
|
/// MuxerOptions.num_subsegments_per_sidx.
|
2014-04-08 20:21:07 +00:00
|
|
|
class SingleSegmentSegmenter : public Segmenter {
|
2013-11-12 20:37:58 +00:00
|
|
|
public:
|
2014-04-08 20:21:07 +00:00
|
|
|
SingleSegmentSegmenter(const MuxerOptions& options,
|
|
|
|
scoped_ptr<FileType> ftyp,
|
|
|
|
scoped_ptr<Movie> moov);
|
|
|
|
virtual ~SingleSegmentSegmenter();
|
2013-11-12 20:37:58 +00:00
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
/// @name Segmenter implementation overrides.
|
2014-01-23 22:34:39 +00:00
|
|
|
/// @{
|
2013-12-12 23:49:31 +00:00
|
|
|
virtual bool GetInitRange(size_t* offset, size_t* size) OVERRIDE;
|
|
|
|
virtual bool GetIndexRange(size_t* offset, size_t* size) OVERRIDE;
|
2014-01-23 22:34:39 +00:00
|
|
|
/// @}
|
2013-12-12 23:49:31 +00:00
|
|
|
|
2013-11-12 20:37:58 +00:00
|
|
|
private:
|
2014-04-18 22:00:30 +00:00
|
|
|
// Segmenter implementation overrides.
|
|
|
|
virtual Status DoInitialize() OVERRIDE;
|
|
|
|
virtual Status DoFinalize() OVERRIDE;
|
|
|
|
virtual Status DoFinalizeSegment() OVERRIDE;
|
|
|
|
|
2013-11-12 20:37:58 +00:00
|
|
|
scoped_ptr<SegmentIndex> vod_sidx_;
|
|
|
|
scoped_ptr<File, FileCloser> temp_file_;
|
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(SingleSegmentSegmenter);
|
2013-11-12 20:37:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mp4
|
|
|
|
} // namespace media
|
|
|
|
|
2014-04-10 21:42:38 +00:00
|
|
|
#endif // MEDIA_FORMATS_MP4_SINGLE_SEGMENT_SEGMENTER_H_
|