// 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 #include "packager/media/formats/mp4/single_segment_segmenter.h" #include #include "packager/base/file_util.h" #include "packager/base/strings/stringprintf.h" #include "packager/base/time/time.h" #include "packager/media/base/buffer_writer.h" #include "packager/media/base/media_stream.h" #include "packager/media/base/muxer_options.h" #include "packager/media/event/muxer_listener.h" #include "packager/media/file/file.h" #include "packager/media/formats/mp4/box_definitions.h" namespace edash_packager { namespace media { namespace mp4 { namespace { // Create a temp file name using process/thread id and current time. std::string TempFileName() { int32_t tid = static_cast(pthread_self()); int32_t pid = static_cast(getpid()); int64_t now = base::Time::Now().ToInternalValue(); return base::StringPrintf("packager-tempfile-%x-%d-%" PRIx64, tid, pid, now); } } // namespace SingleSegmentSegmenter::SingleSegmentSegmenter(const MuxerOptions& options, scoped_ptr ftyp, scoped_ptr moov) : Segmenter(options, ftyp.Pass(), moov.Pass()) {} SingleSegmentSegmenter::~SingleSegmentSegmenter() {} bool SingleSegmentSegmenter::GetInitRange(size_t* offset, size_t* size) { // In Finalize, ftyp and moov gets written first so offset must be 0. *offset = 0; *size = ftyp()->ComputeSize() + moov()->ComputeSize(); return true; } bool SingleSegmentSegmenter::GetIndexRange(size_t* offset, size_t* size) { // Index range is right after init range so the offset must be the size of // ftyp and moov. *offset = ftyp()->ComputeSize() + moov()->ComputeSize(); *size = vod_sidx_->ComputeSize(); return true; } Status SingleSegmentSegmenter::DoInitialize() { if (options().temp_dir.empty()) { base::FilePath temp_file_path; if (!base::CreateTemporaryFile(&temp_file_path)) { LOG(ERROR) << "Failed to create temporary file."; return Status(error::FILE_FAILURE, "Unable to create temporary file."); } temp_file_name_ = temp_file_path.value(); } else { temp_file_name_ = base::FilePath(options().temp_dir).Append(TempFileName()).value(); } temp_file_.reset(File::Open(temp_file_name_.c_str(), "w")); return temp_file_ ? Status::OK : Status(error::FILE_FAILURE, "Cannot open file to write " + temp_file_name_); } Status SingleSegmentSegmenter::DoFinalize() { DCHECK(temp_file_); DCHECK(ftyp()); DCHECK(moov()); DCHECK(vod_sidx_); // Close the temp file to prepare for reading later. if (!temp_file_.release()->Close()) { return Status(error::FILE_FAILURE, "Cannot close the temp file " + temp_file_name_); } scoped_ptr file( File::Open(options().output_file_name.c_str(), "w")); if (file == NULL) { return Status(error::FILE_FAILURE, "Cannot open file to write " + options().output_file_name); } // Write ftyp, moov and sidx to output file. scoped_ptr buffer(new BufferWriter()); ftyp()->Write(buffer.get()); moov()->Write(buffer.get()); vod_sidx_->Write(buffer.get()); Status status = buffer->WriteToFile(file.get()); if (!status.ok()) return status; // Load the temp file and write to output file. scoped_ptr temp_file( File::Open(temp_file_name_.c_str(), "r")); if (temp_file == NULL) { return Status(error::FILE_FAILURE, "Cannot open file to read " + temp_file_name_); } const int kBufSize = 0x40000; // 256KB. scoped_ptr buf(new uint8_t[kBufSize]); while (!temp_file->Eof()) { int64_t size = temp_file->Read(buf.get(), kBufSize); if (size <= 0) { return Status(error::FILE_FAILURE, "Failed to read file " + temp_file_name_); } int64_t size_written = file->Write(buf.get(), size); if (size_written != size) { return Status(error::FILE_FAILURE, "Failed to write file " + options().output_file_name); } } return Status::OK; } Status SingleSegmentSegmenter::DoFinalizeSegment() { DCHECK(sidx()); DCHECK(fragment_buffer()); // sidx() contains pre-generated segment references with one reference per // fragment. In VOD, this segment is converted into a subsegment, i.e. one // reference, which contains all the fragments in sidx(). std::vector& refs = sidx()->references; SegmentReference& vod_ref = refs[0]; uint64_t first_sap_time = refs[0].sap_delta_time + refs[0].earliest_presentation_time; for (uint32_t i = 1; i < sidx()->references.size(); ++i) { vod_ref.referenced_size += refs[i].referenced_size; // NOTE: We calculate subsegment duration based on the total duration of // this subsegment instead of subtracting earliest_presentation_time as // indicated in the spec. vod_ref.subsegment_duration += refs[i].subsegment_duration; vod_ref.earliest_presentation_time = std::min( vod_ref.earliest_presentation_time, refs[i].earliest_presentation_time); if (vod_ref.sap_type == SegmentReference::TypeUnknown && refs[i].sap_type != SegmentReference::TypeUnknown) { vod_ref.sap_type = refs[i].sap_type; first_sap_time = refs[i].sap_delta_time + refs[i].earliest_presentation_time; } } // Calculate sap delta time w.r.t. earliest_presentation_time. if (vod_ref.sap_type != SegmentReference::TypeUnknown) { vod_ref.sap_delta_time = first_sap_time - vod_ref.earliest_presentation_time; } // Create segment if it does not exist yet. if (vod_sidx_ == NULL) { vod_sidx_.reset(new SegmentIndex()); vod_sidx_->reference_id = sidx()->reference_id; vod_sidx_->timescale = sidx()->timescale; if (vod_ref.earliest_presentation_time > 0) { const double starting_time_in_seconds = static_cast(vod_ref.earliest_presentation_time) / GetReferenceTimeScale(); // Give a warning if it is significant. if (starting_time_in_seconds > 0.5) { // Note that DASH IF player requires presentationTimeOffset to be set in // Segment{Base,List,Template} if there is non-zero starting time. Since // current Chromium's MSE implementation uses DTS, the player expects // DTS to be used. LOG(WARNING) << "Warning! Non-zero starting time (in seconds): " << starting_time_in_seconds << ". Manual adjustment of presentationTimeOffset in " "mpd might be necessary."; } } // Force earliest_presentation_time to start from 0 for VOD. vod_sidx_->earliest_presentation_time = 0; } vod_sidx_->references.push_back(vod_ref); // Append fragment buffer to temp file. size_t segment_size = fragment_buffer()->Size(); Status status = fragment_buffer()->WriteToFile(temp_file_.get()); if (!status.ok()) return status; if (muxer_listener()) { muxer_listener()->OnNewSegment(vod_ref.earliest_presentation_time, vod_ref.subsegment_duration, segment_size); } return Status::OK; } } // namespace mp4 } // namespace media } // namespace edash_packager