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-10-01 22:10:21 +00:00
|
|
|
|
#include "packager/media/formats/mp4/multi_segment_segmenter.h"
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
2016-08-19 22:32:27 +00:00
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
|
#include "packager/base/strings/string_number_conversions.h"
|
|
|
|
|
#include "packager/base/strings/string_util.h"
|
|
|
|
|
#include "packager/media/base/buffer_writer.h"
|
|
|
|
|
#include "packager/media/base/muxer_options.h"
|
|
|
|
|
#include "packager/media/base/muxer_util.h"
|
|
|
|
|
#include "packager/media/event/muxer_listener.h"
|
|
|
|
|
#include "packager/media/file/file.h"
|
|
|
|
|
#include "packager/media/formats/mp4/box_definitions.h"
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
|
namespace shaka {
|
2013-11-12 20:37:58 +00:00
|
|
|
|
namespace media {
|
|
|
|
|
namespace mp4 {
|
|
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
|
MultiSegmentSegmenter::MultiSegmentSegmenter(const MuxerOptions& options,
|
2016-08-17 17:41:40 +00:00
|
|
|
|
std::unique_ptr<FileType> ftyp,
|
|
|
|
|
std::unique_ptr<Movie> moov)
|
|
|
|
|
: Segmenter(options, std::move(ftyp), std::move(moov)),
|
2013-11-12 20:37:58 +00:00
|
|
|
|
styp_(new SegmentType),
|
|
|
|
|
num_segments_(0) {
|
|
|
|
|
// Use the same brands for styp as ftyp.
|
2014-04-08 20:21:07 +00:00
|
|
|
|
styp_->major_brand = Segmenter::ftyp()->major_brand;
|
|
|
|
|
styp_->compatible_brands = Segmenter::ftyp()->compatible_brands;
|
2017-03-15 19:42:00 +00:00
|
|
|
|
// Replace 'cmfc' with 'cmfs' for CMAF segments compatibility.
|
|
|
|
|
std::replace(styp_->compatible_brands.begin(), styp_->compatible_brands.end(),
|
|
|
|
|
FOURCC_cmfc, FOURCC_cmfs);
|
2013-11-12 20:37:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
|
MultiSegmentSegmenter::~MultiSegmentSegmenter() {}
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
2014-04-18 22:00:30 +00:00
|
|
|
|
bool MultiSegmentSegmenter::GetInitRange(size_t* offset, size_t* size) {
|
2017-05-01 23:17:09 +00:00
|
|
|
|
VLOG(1) << "MultiSegmentSegmenter outputs init segment: "
|
|
|
|
|
<< options().output_file_name;
|
2014-04-18 22:00:30 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MultiSegmentSegmenter::GetIndexRange(size_t* offset, size_t* size) {
|
2017-05-01 23:17:09 +00:00
|
|
|
|
VLOG(1) << "MultiSegmentSegmenter does not have index range.";
|
2014-04-18 22:00:30 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
2017-05-01 23:17:09 +00:00
|
|
|
|
std::vector<Range> MultiSegmentSegmenter::GetSegmentRanges() {
|
|
|
|
|
VLOG(1) << "MultiSegmentSegmenter does not have media segment ranges.";
|
|
|
|
|
return std::vector<Range>();
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-18 22:00:30 +00:00
|
|
|
|
Status MultiSegmentSegmenter::DoInitialize() {
|
2014-01-23 00:13:41 +00:00
|
|
|
|
DCHECK(ftyp());
|
|
|
|
|
DCHECK(moov());
|
2013-11-12 20:37:58 +00:00
|
|
|
|
// Generate the output file with init segment.
|
|
|
|
|
File* file = File::Open(options().output_file_name.c_str(), "w");
|
|
|
|
|
if (file == NULL) {
|
|
|
|
|
return Status(error::FILE_FAILURE,
|
|
|
|
|
"Cannot open file for write " + options().output_file_name);
|
|
|
|
|
}
|
2016-08-17 17:41:40 +00:00
|
|
|
|
std::unique_ptr<BufferWriter> buffer(new BufferWriter);
|
2013-11-12 20:37:58 +00:00
|
|
|
|
ftyp()->Write(buffer.get());
|
|
|
|
|
moov()->Write(buffer.get());
|
2014-04-18 22:00:30 +00:00
|
|
|
|
Status status = buffer->WriteToFile(file);
|
2013-11-12 20:37:58 +00:00
|
|
|
|
if (!file->Close()) {
|
|
|
|
|
LOG(WARNING) << "Failed to close the file properly: "
|
|
|
|
|
<< options().output_file_name;
|
|
|
|
|
}
|
|
|
|
|
return status;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-18 22:00:30 +00:00
|
|
|
|
Status MultiSegmentSegmenter::DoFinalize() {
|
2015-05-11 21:07:10 +00:00
|
|
|
|
SetComplete();
|
2014-04-18 22:00:30 +00:00
|
|
|
|
return Status::OK;
|
2013-12-12 23:49:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-18 22:00:30 +00:00
|
|
|
|
Status MultiSegmentSegmenter::DoFinalizeSegment() {
|
2014-01-23 00:13:41 +00:00
|
|
|
|
DCHECK(sidx());
|
2013-11-12 20:37:58 +00:00
|
|
|
|
// earliest_presentation_time is the earliest presentation time of any
|
|
|
|
|
// access unit in the reference stream in the first subsegment.
|
|
|
|
|
// It will be re-calculated later when subsegments are finalized.
|
|
|
|
|
sidx()->earliest_presentation_time =
|
|
|
|
|
sidx()->references[0].earliest_presentation_time;
|
|
|
|
|
|
|
|
|
|
if (options().num_subsegments_per_sidx <= 0)
|
|
|
|
|
return WriteSegment();
|
|
|
|
|
|
|
|
|
|
// sidx() contains pre-generated segment references with one reference per
|
|
|
|
|
// fragment. Calculate |num_fragments_per_subsegment| and combine
|
|
|
|
|
// pre-generated references into final subsegment references.
|
2016-11-09 02:11:13 +00:00
|
|
|
|
size_t num_fragments = sidx()->references.size();
|
|
|
|
|
size_t num_fragments_per_subsegment =
|
2013-11-12 20:37:58 +00:00
|
|
|
|
(num_fragments - 1) / options().num_subsegments_per_sidx + 1;
|
|
|
|
|
if (num_fragments_per_subsegment <= 1)
|
|
|
|
|
return WriteSegment();
|
|
|
|
|
|
2016-11-09 02:11:13 +00:00
|
|
|
|
size_t frag_index = 0;
|
|
|
|
|
size_t subseg_index = 0;
|
2013-11-12 20:37:58 +00:00
|
|
|
|
std::vector<SegmentReference>& refs = sidx()->references;
|
2014-09-30 21:52:21 +00:00
|
|
|
|
uint64_t first_sap_time =
|
2013-11-12 20:37:58 +00:00
|
|
|
|
refs[0].sap_delta_time + refs[0].earliest_presentation_time;
|
2016-11-09 02:11:13 +00:00
|
|
|
|
for (size_t i = 1; i < num_fragments; ++i) {
|
2013-11-12 20:37:58 +00:00
|
|
|
|
refs[subseg_index].referenced_size += refs[i].referenced_size;
|
|
|
|
|
refs[subseg_index].subsegment_duration += refs[i].subsegment_duration;
|
|
|
|
|
refs[subseg_index].earliest_presentation_time =
|
|
|
|
|
std::min(refs[subseg_index].earliest_presentation_time,
|
|
|
|
|
refs[i].earliest_presentation_time);
|
|
|
|
|
if (refs[subseg_index].sap_type == SegmentReference::TypeUnknown &&
|
|
|
|
|
refs[i].sap_type != SegmentReference::TypeUnknown) {
|
|
|
|
|
refs[subseg_index].sap_type = refs[i].sap_type;
|
|
|
|
|
first_sap_time =
|
|
|
|
|
refs[i].sap_delta_time + refs[i].earliest_presentation_time;
|
|
|
|
|
}
|
|
|
|
|
if (++frag_index >= num_fragments_per_subsegment) {
|
|
|
|
|
// Calculate sap delta time w.r.t. sidx_->earliest_presentation_time.
|
|
|
|
|
if (refs[subseg_index].sap_type != SegmentReference::TypeUnknown) {
|
|
|
|
|
refs[subseg_index].sap_delta_time =
|
|
|
|
|
first_sap_time - refs[subseg_index].earliest_presentation_time;
|
|
|
|
|
}
|
|
|
|
|
if (++i >= num_fragments)
|
|
|
|
|
break;
|
|
|
|
|
refs[++subseg_index] = refs[i];
|
|
|
|
|
first_sap_time =
|
|
|
|
|
refs[i].sap_delta_time + refs[i].earliest_presentation_time;
|
|
|
|
|
frag_index = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
refs.resize(options().num_subsegments_per_sidx);
|
|
|
|
|
|
|
|
|
|
// earliest_presentation_time is the earliest presentation time of any
|
|
|
|
|
// access unit in the reference stream in the first subsegment.
|
|
|
|
|
sidx()->earliest_presentation_time = refs[0].earliest_presentation_time;
|
|
|
|
|
|
|
|
|
|
return WriteSegment();
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-08 20:21:07 +00:00
|
|
|
|
Status MultiSegmentSegmenter::WriteSegment() {
|
2014-01-23 00:13:41 +00:00
|
|
|
|
DCHECK(sidx());
|
|
|
|
|
DCHECK(fragment_buffer());
|
|
|
|
|
DCHECK(styp_);
|
2013-11-12 20:37:58 +00:00
|
|
|
|
|
2016-08-17 17:41:40 +00:00
|
|
|
|
std::unique_ptr<BufferWriter> buffer(new BufferWriter());
|
2013-11-12 20:37:58 +00:00
|
|
|
|
File* file;
|
|
|
|
|
std::string file_name;
|
|
|
|
|
if (options().segment_template.empty()) {
|
|
|
|
|
// Append the segment to output file if segment template is not specified.
|
|
|
|
|
file_name = options().output_file_name.c_str();
|
2015-03-19 18:28:04 +00:00
|
|
|
|
file = File::Open(file_name.c_str(), "a");
|
2013-11-12 20:37:58 +00:00
|
|
|
|
if (file == NULL) {
|
|
|
|
|
return Status(
|
|
|
|
|
error::FILE_FAILURE,
|
|
|
|
|
"Cannot open file for append " + options().output_file_name);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2016-03-28 08:23:20 +00:00
|
|
|
|
file_name = GetSegmentName(options().segment_template,
|
|
|
|
|
sidx()->earliest_presentation_time,
|
|
|
|
|
num_segments_++, options().bandwidth);
|
|
|
|
|
file = File::Open(file_name.c_str(), "w");
|
2013-11-12 20:37:58 +00:00
|
|
|
|
if (file == NULL) {
|
|
|
|
|
return Status(error::FILE_FAILURE,
|
|
|
|
|
"Cannot open file for write " + file_name);
|
|
|
|
|
}
|
|
|
|
|
styp_->Write(buffer.get());
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-13 00:13:48 +00:00
|
|
|
|
// If num_subsegments_per_sidx is negative, no SIDX box is generated.
|
|
|
|
|
if (options().num_subsegments_per_sidx >= 0)
|
2013-11-12 20:37:58 +00:00
|
|
|
|
sidx()->Write(buffer.get());
|
|
|
|
|
|
2014-05-22 18:51:55 +00:00
|
|
|
|
const size_t segment_size = buffer->Size() + fragment_buffer()->Size();
|
|
|
|
|
DCHECK_NE(segment_size, 0u);
|
|
|
|
|
|
2013-11-12 20:37:58 +00:00
|
|
|
|
Status status = buffer->WriteToFile(file);
|
|
|
|
|
if (status.ok())
|
|
|
|
|
status = fragment_buffer()->WriteToFile(file);
|
|
|
|
|
|
|
|
|
|
if (!file->Close())
|
|
|
|
|
LOG(WARNING) << "Failed to close the file properly: " << file_name;
|
2014-05-22 18:51:55 +00:00
|
|
|
|
|
2015-05-11 21:07:10 +00:00
|
|
|
|
if (!status.ok())
|
|
|
|
|
return status;
|
|
|
|
|
|
|
|
|
|
uint64_t segment_duration = 0;
|
|
|
|
|
// ISO/IEC 23009-1:2012: the value shall be identical to sum of the the
|
|
|
|
|
// values of all Subsegment_duration fields in the first ‘sidx’ box.
|
|
|
|
|
for (size_t i = 0; i < sidx()->references.size(); ++i)
|
|
|
|
|
segment_duration += sidx()->references[i].subsegment_duration;
|
|
|
|
|
|
|
|
|
|
UpdateProgress(segment_duration);
|
|
|
|
|
if (muxer_listener()) {
|
2015-06-15 21:12:42 +00:00
|
|
|
|
muxer_listener()->OnSampleDurationReady(sample_duration());
|
2016-03-28 08:23:20 +00:00
|
|
|
|
muxer_listener()->OnNewSegment(file_name,
|
|
|
|
|
sidx()->earliest_presentation_time,
|
|
|
|
|
segment_duration, segment_size);
|
2014-05-22 18:51:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-05-11 21:07:10 +00:00
|
|
|
|
return Status::OK;
|
2013-11-12 20:37:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace mp4
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
|
} // namespace shaka
|