2013-09-24 01:35:40 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/media/formats/mp4/mp4_media_parser.h"
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2014-09-30 23:52:58 +00:00
|
|
|
#include <limits>
|
|
|
|
|
2014-10-01 22:10:21 +00:00
|
|
|
#include "packager/base/callback.h"
|
|
|
|
#include "packager/base/callback_helpers.h"
|
|
|
|
#include "packager/base/logging.h"
|
|
|
|
#include "packager/base/memory/ref_counted.h"
|
|
|
|
#include "packager/base/strings/string_number_conversions.h"
|
|
|
|
#include "packager/media/base/aes_encryptor.h"
|
|
|
|
#include "packager/media/base/audio_stream_info.h"
|
|
|
|
#include "packager/media/base/decrypt_config.h"
|
|
|
|
#include "packager/media/base/key_source.h"
|
|
|
|
#include "packager/media/base/media_sample.h"
|
|
|
|
#include "packager/media/base/video_stream_info.h"
|
|
|
|
#include "packager/media/formats/mp4/box_definitions.h"
|
|
|
|
#include "packager/media/formats/mp4/box_reader.h"
|
|
|
|
#include "packager/media/formats/mp4/es_descriptor.h"
|
|
|
|
#include "packager/media/formats/mp4/rcheck.h"
|
|
|
|
#include "packager/media/formats/mp4/track_run_iterator.h"
|
2013-09-24 04:17:12 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
uint64_t Rescale(uint64_t time_in_old_scale,
|
|
|
|
uint32_t old_scale,
|
|
|
|
uint32_t new_scale) {
|
2013-10-14 20:55:48 +00:00
|
|
|
return (static_cast<double>(time_in_old_scale) / old_scale) * new_scale;
|
2013-09-24 04:17:12 +00:00
|
|
|
}
|
|
|
|
|
2014-08-25 22:51:19 +00:00
|
|
|
|
|
|
|
const char kWidevineKeySystemId[] = "edef8ba979d64acea3c827dcd51d21ed";
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
} // namespace
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2014-09-19 20:41:13 +00:00
|
|
|
namespace edash_packager {
|
2013-09-24 01:35:40 +00:00
|
|
|
namespace media {
|
|
|
|
namespace mp4 {
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
MP4MediaParser::MP4MediaParser()
|
2014-03-17 18:36:41 +00:00
|
|
|
: state_(kWaitingForInit), moof_head_(0), mdat_tail_(0) {}
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2014-08-25 22:51:19 +00:00
|
|
|
MP4MediaParser::~MP4MediaParser() {
|
|
|
|
STLDeleteValues(&decryptor_map_);
|
|
|
|
}
|
2013-09-24 04:17:12 +00:00
|
|
|
|
|
|
|
void MP4MediaParser::Init(const InitCB& init_cb,
|
|
|
|
const NewSampleCB& new_sample_cb,
|
2014-08-25 22:51:19 +00:00
|
|
|
KeySource* decryption_key_source) {
|
2013-09-24 01:35:40 +00:00
|
|
|
DCHECK_EQ(state_, kWaitingForInit);
|
|
|
|
DCHECK(init_cb_.is_null());
|
|
|
|
DCHECK(!init_cb.is_null());
|
2013-09-24 04:17:12 +00:00
|
|
|
DCHECK(!new_sample_cb.is_null());
|
2013-09-24 01:35:40 +00:00
|
|
|
|
|
|
|
ChangeState(kParsingBoxes);
|
|
|
|
init_cb_ = init_cb;
|
2013-09-24 04:17:12 +00:00
|
|
|
new_sample_cb_ = new_sample_cb;
|
2014-08-25 22:51:19 +00:00
|
|
|
decryption_key_source_ = decryption_key_source;
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
void MP4MediaParser::Reset() {
|
2013-09-24 01:35:40 +00:00
|
|
|
queue_.Reset();
|
|
|
|
runs_.reset();
|
|
|
|
moof_head_ = 0;
|
|
|
|
mdat_tail_ = 0;
|
|
|
|
}
|
|
|
|
|
2014-04-24 18:37:33 +00:00
|
|
|
void MP4MediaParser::Flush() {
|
|
|
|
DCHECK_NE(state_, kWaitingForInit);
|
|
|
|
Reset();
|
|
|
|
ChangeState(kParsingBoxes);
|
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
bool MP4MediaParser::Parse(const uint8_t* buf, int size) {
|
2013-09-24 01:35:40 +00:00
|
|
|
DCHECK_NE(state_, kWaitingForInit);
|
|
|
|
|
|
|
|
if (state_ == kError)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
queue_.Push(buf, size);
|
|
|
|
|
|
|
|
bool result, err = false;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (state_ == kParsingBoxes) {
|
|
|
|
result = ParseBox(&err);
|
|
|
|
} else {
|
|
|
|
DCHECK_EQ(kEmittingSamples, state_);
|
2013-09-24 04:17:12 +00:00
|
|
|
result = EnqueueSample(&err);
|
2013-09-24 01:35:40 +00:00
|
|
|
if (result) {
|
2014-09-30 21:52:21 +00:00
|
|
|
int64_t max_clear = runs_->GetMaxClearOffset() + moof_head_;
|
2013-09-24 01:35:40 +00:00
|
|
|
err = !ReadAndDiscardMDATsUntil(max_clear);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (result && !err);
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
DLOG(ERROR) << "Error while parsing MP4";
|
|
|
|
moov_.reset();
|
|
|
|
Reset();
|
|
|
|
ChangeState(kError);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
bool MP4MediaParser::ParseBox(bool* err) {
|
2014-09-30 21:52:21 +00:00
|
|
|
const uint8_t* buf;
|
2013-09-24 01:35:40 +00:00
|
|
|
int size;
|
|
|
|
queue_.Peek(&buf, &size);
|
2013-11-12 20:32:44 +00:00
|
|
|
if (!size)
|
|
|
|
return false;
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
scoped_ptr<BoxReader> reader(BoxReader::ReadTopLevelBox(buf, size, err));
|
2013-11-12 20:32:44 +00:00
|
|
|
if (reader.get() == NULL)
|
|
|
|
return false;
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2014-03-14 18:42:11 +00:00
|
|
|
if (reader->type() == FOURCC_MDAT) {
|
|
|
|
// The code ends up here only if a MOOV box is not yet seen.
|
|
|
|
DCHECK(!moov_);
|
|
|
|
|
|
|
|
NOTIMPLEMENTED() << " Files with MDAT before MOOV is not supported yet.";
|
|
|
|
*err = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-08 17:37:58 +00:00
|
|
|
// Set up mdat offset for ReadMDATsUntil().
|
|
|
|
mdat_tail_ = queue_.head() + reader->size();
|
|
|
|
|
2013-09-24 01:35:40 +00:00
|
|
|
if (reader->type() == FOURCC_MOOV) {
|
|
|
|
*err = !ParseMoov(reader.get());
|
|
|
|
} else if (reader->type() == FOURCC_MOOF) {
|
|
|
|
moof_head_ = queue_.head();
|
|
|
|
*err = !ParseMoof(reader.get());
|
|
|
|
|
|
|
|
// Return early to avoid evicting 'moof' data from queue. Auxiliary info may
|
|
|
|
// be located anywhere in the file, including inside the 'moof' itself.
|
|
|
|
// (Since 'default-base-is-moof' is mandated, no data references can come
|
|
|
|
// before the head of the 'moof', so keeping this box around is sufficient.)
|
|
|
|
return !(*err);
|
|
|
|
} else {
|
2014-03-05 23:15:22 +00:00
|
|
|
DLOG(WARNING) << "Skipping unrecognized top-level box: "
|
|
|
|
<< FourCCToString(reader->type());
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
queue_.Pop(reader->size());
|
|
|
|
return !(*err);
|
|
|
|
}
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
bool MP4MediaParser::ParseMoov(BoxReader* reader) {
|
2013-09-24 01:35:40 +00:00
|
|
|
moov_.reset(new Movie);
|
|
|
|
RCHECK(moov_->Parse(reader));
|
|
|
|
runs_.reset();
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
std::vector<scoped_refptr<StreamInfo> > streams;
|
2013-09-24 01:35:40 +00:00
|
|
|
|
|
|
|
for (std::vector<Track>::const_iterator track = moov_->tracks.begin();
|
|
|
|
track != moov_->tracks.end(); ++track) {
|
2014-09-30 21:52:21 +00:00
|
|
|
const uint32_t timescale = track->media.header.timescale;
|
2013-10-14 20:55:48 +00:00
|
|
|
|
|
|
|
// Calculate duration (based on timescale).
|
2014-09-30 21:52:21 +00:00
|
|
|
uint64_t duration = 0;
|
2013-10-14 20:55:48 +00:00
|
|
|
if (track->media.header.duration > 0) {
|
|
|
|
duration = track->media.header.duration;
|
|
|
|
} else if (moov_->extends.header.fragment_duration > 0) {
|
|
|
|
DCHECK(moov_->header.timescale != 0);
|
|
|
|
duration = Rescale(moov_->extends.header.fragment_duration,
|
2013-11-12 20:32:44 +00:00
|
|
|
moov_->header.timescale,
|
|
|
|
timescale);
|
2013-10-14 20:55:48 +00:00
|
|
|
} else if (moov_->header.duration > 0 &&
|
2014-09-30 23:52:58 +00:00
|
|
|
moov_->header.duration != std::numeric_limits<uint64_t>::max()) {
|
2013-10-14 20:55:48 +00:00
|
|
|
DCHECK(moov_->header.timescale != 0);
|
2013-11-12 20:32:44 +00:00
|
|
|
duration =
|
|
|
|
Rescale(moov_->header.duration, moov_->header.timescale, timescale);
|
2013-10-14 20:55:48 +00:00
|
|
|
}
|
|
|
|
|
2013-09-24 01:35:40 +00:00
|
|
|
const SampleDescription& samp_descr =
|
|
|
|
track->media.information.sample_table.description;
|
|
|
|
|
|
|
|
size_t desc_idx = 0;
|
2013-10-08 17:37:58 +00:00
|
|
|
|
|
|
|
// Read sample description index from mvex if it exists otherwise read
|
|
|
|
// from the first entry in Sample To Chunk box.
|
|
|
|
if (moov_->extends.tracks.size() > 0) {
|
|
|
|
for (size_t t = 0; t < moov_->extends.tracks.size(); t++) {
|
|
|
|
const TrackExtends& trex = moov_->extends.tracks[t];
|
|
|
|
if (trex.track_id == track->header.track_id) {
|
|
|
|
desc_idx = trex.default_sample_description_index;
|
|
|
|
break;
|
|
|
|
}
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
2013-10-08 17:37:58 +00:00
|
|
|
} else {
|
|
|
|
const std::vector<ChunkInfo>& chunk_info =
|
|
|
|
track->media.information.sample_table.sample_to_chunk.chunk_info;
|
|
|
|
RCHECK(chunk_info.size() > 0);
|
|
|
|
desc_idx = chunk_info[0].sample_description_index;
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
|
|
|
RCHECK(desc_idx > 0);
|
|
|
|
desc_idx -= 1; // BMFF descriptor index is one-based
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
if (track->media.handler.type == kAudio) {
|
2013-09-24 01:35:40 +00:00
|
|
|
RCHECK(!samp_descr.audio_entries.empty());
|
|
|
|
|
|
|
|
// It is not uncommon to find otherwise-valid files with incorrect sample
|
|
|
|
// description indices, so we fail gracefully in that case.
|
|
|
|
if (desc_idx >= samp_descr.audio_entries.size())
|
|
|
|
desc_idx = 0;
|
|
|
|
const AudioSampleEntry& entry = samp_descr.audio_entries[desc_idx];
|
|
|
|
|
|
|
|
if (!(entry.format == FOURCC_MP4A || entry.format == FOURCC_EAC3 ||
|
|
|
|
(entry.format == FOURCC_ENCA &&
|
|
|
|
entry.sinf.format.format == FOURCC_MP4A))) {
|
2013-09-24 04:17:12 +00:00
|
|
|
LOG(ERROR) << "Unsupported audio format 0x"
|
|
|
|
<< std::hex << entry.format << " in stsd box.";
|
2013-09-24 01:35:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-12 20:32:44 +00:00
|
|
|
ObjectType audio_type = entry.esds.es_descriptor.object_type();
|
2013-09-24 01:35:40 +00:00
|
|
|
DVLOG(1) << "audio_type " << std::hex << audio_type;
|
|
|
|
if (audio_type == kForbidden && entry.format == FOURCC_EAC3) {
|
|
|
|
audio_type = kEAC3;
|
|
|
|
}
|
|
|
|
|
|
|
|
AudioCodec codec = kUnknownAudioCodec;
|
2014-09-30 21:52:21 +00:00
|
|
|
uint8_t num_channels = 0;
|
|
|
|
uint32_t sampling_frequency = 0;
|
|
|
|
uint8_t audio_object_type = 0;
|
|
|
|
std::vector<uint8_t> extra_data;
|
2013-09-24 01:35:40 +00:00
|
|
|
// Check if it is MPEG4 AAC defined in ISO 14496 Part 3 or
|
2013-10-14 20:55:48 +00:00
|
|
|
// supported MPEG2 AAC variants.
|
2013-11-12 20:32:44 +00:00
|
|
|
if (entry.esds.es_descriptor.IsAAC()) {
|
2013-09-24 01:35:40 +00:00
|
|
|
codec = kCodecAAC;
|
2014-01-10 00:21:06 +00:00
|
|
|
const AACAudioSpecificConfig& aac_audio_specific_config =
|
|
|
|
entry.esds.aac_audio_specific_config;
|
|
|
|
num_channels = aac_audio_specific_config.num_channels();
|
|
|
|
sampling_frequency = aac_audio_specific_config.frequency();
|
|
|
|
audio_object_type = aac_audio_specific_config.audio_object_type();
|
2013-11-12 20:32:44 +00:00
|
|
|
extra_data = entry.esds.es_descriptor.decoder_specific_info();
|
2013-09-24 01:35:40 +00:00
|
|
|
} else if (audio_type == kEAC3) {
|
|
|
|
codec = kCodecEAC3;
|
2013-09-24 04:17:12 +00:00
|
|
|
num_channels = entry.channelcount;
|
2013-10-14 20:55:48 +00:00
|
|
|
sampling_frequency = entry.samplerate;
|
2013-09-24 01:35:40 +00:00
|
|
|
} else {
|
2013-09-24 04:17:12 +00:00
|
|
|
LOG(ERROR) << "Unsupported audio object type 0x"
|
|
|
|
<< std::hex << audio_type << " in esds.";
|
2013-09-24 01:35:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-03-17 18:36:41 +00:00
|
|
|
bool is_encrypted = entry.sinf.info.track_encryption.is_encrypted;
|
|
|
|
DVLOG(1) << "is_audio_track_encrypted_: " << is_encrypted;
|
2013-11-12 20:32:44 +00:00
|
|
|
streams.push_back(new AudioStreamInfo(
|
|
|
|
track->header.track_id,
|
|
|
|
timescale,
|
|
|
|
duration,
|
|
|
|
codec,
|
|
|
|
AudioStreamInfo::GetCodecString(codec, audio_object_type),
|
|
|
|
track->media.header.language,
|
|
|
|
entry.samplesize,
|
|
|
|
num_channels,
|
|
|
|
sampling_frequency,
|
|
|
|
extra_data.size() ? &extra_data[0] : NULL,
|
|
|
|
extra_data.size(),
|
2014-03-17 18:36:41 +00:00
|
|
|
is_encrypted));
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
2013-09-24 04:17:12 +00:00
|
|
|
|
|
|
|
if (track->media.handler.type == kVideo) {
|
2013-09-24 01:35:40 +00:00
|
|
|
RCHECK(!samp_descr.video_entries.empty());
|
|
|
|
if (desc_idx >= samp_descr.video_entries.size())
|
|
|
|
desc_idx = 0;
|
|
|
|
const VideoSampleEntry& entry = samp_descr.video_entries[desc_idx];
|
|
|
|
|
|
|
|
if (!(entry.format == FOURCC_AVC1 ||
|
|
|
|
(entry.format == FOURCC_ENCV &&
|
|
|
|
entry.sinf.format.format == FOURCC_AVC1))) {
|
2013-09-24 04:17:12 +00:00
|
|
|
LOG(ERROR) << "Unsupported video format 0x"
|
|
|
|
<< std::hex << entry.format << " in stsd box.";
|
2013-09-24 01:35:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-14 20:55:48 +00:00
|
|
|
const std::string codec_string =
|
2013-11-12 20:32:44 +00:00
|
|
|
VideoStreamInfo::GetCodecString(kCodecH264,
|
|
|
|
entry.avcc.profile_indication,
|
|
|
|
entry.avcc.profile_compatibility,
|
|
|
|
entry.avcc.avc_level);
|
2013-10-14 20:55:48 +00:00
|
|
|
|
2014-03-17 18:36:41 +00:00
|
|
|
bool is_encrypted = entry.sinf.info.track_encryption.is_encrypted;
|
|
|
|
DVLOG(1) << "is_video_track_encrypted_: " << is_encrypted;
|
2013-11-12 20:32:44 +00:00
|
|
|
streams.push_back(new VideoStreamInfo(track->header.track_id,
|
|
|
|
timescale,
|
|
|
|
duration,
|
|
|
|
kCodecH264,
|
|
|
|
codec_string,
|
|
|
|
track->media.header.language,
|
|
|
|
entry.width,
|
|
|
|
entry.height,
|
|
|
|
entry.avcc.length_size,
|
|
|
|
&entry.avcc.data[0],
|
|
|
|
entry.avcc.data.size(),
|
2014-03-17 18:36:41 +00:00
|
|
|
is_encrypted));
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-11 21:44:55 +00:00
|
|
|
init_cb_.Run(streams);
|
2014-08-25 22:51:19 +00:00
|
|
|
if (!FetchKeysIfNecessary(moov_->pssh))
|
|
|
|
return false;
|
2013-10-08 17:37:58 +00:00
|
|
|
runs_.reset(new TrackRunIterator(moov_.get()));
|
|
|
|
RCHECK(runs_->Init());
|
|
|
|
ChangeState(kEmittingSamples);
|
2013-09-24 01:35:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
bool MP4MediaParser::ParseMoof(BoxReader* reader) {
|
2013-10-08 17:37:58 +00:00
|
|
|
// Must already have initialization segment.
|
2014-04-24 18:37:33 +00:00
|
|
|
RCHECK(moov_.get());
|
2013-09-24 01:35:40 +00:00
|
|
|
MovieFragment moof;
|
|
|
|
RCHECK(moof.Parse(reader));
|
2014-04-24 18:37:33 +00:00
|
|
|
if (!runs_)
|
|
|
|
runs_.reset(new TrackRunIterator(moov_.get()));
|
2013-09-24 01:35:40 +00:00
|
|
|
RCHECK(runs_->Init(moof));
|
2014-08-25 22:51:19 +00:00
|
|
|
if (!FetchKeysIfNecessary(moof.pssh))
|
|
|
|
return false;
|
2013-09-24 01:35:40 +00:00
|
|
|
ChangeState(kEmittingSamples);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-25 22:51:19 +00:00
|
|
|
bool MP4MediaParser::FetchKeysIfNecessary(
|
2013-09-24 01:35:40 +00:00
|
|
|
const std::vector<ProtectionSystemSpecificHeader>& headers) {
|
|
|
|
if (headers.empty())
|
2014-08-25 22:51:19 +00:00
|
|
|
return true;
|
|
|
|
|
2014-10-14 02:34:29 +00:00
|
|
|
// An error will be returned later if the samples need to be decrypted.
|
|
|
|
if (!decryption_key_source_)
|
|
|
|
return true;
|
2014-08-25 22:51:19 +00:00
|
|
|
|
|
|
|
// TODO(tinskip): Pass in raw 'pssh' boxes to FetchKeys. This will allow
|
|
|
|
// supporting multiple keysystems. Move this to KeySource.
|
2014-09-30 21:52:21 +00:00
|
|
|
std::vector<uint8_t> widevine_system_id;
|
2014-08-25 22:51:19 +00:00
|
|
|
base::HexStringToBytes(kWidevineKeySystemId, &widevine_system_id);
|
|
|
|
for (std::vector<ProtectionSystemSpecificHeader>::const_iterator iter =
|
|
|
|
headers.begin(); iter != headers.end(); ++iter) {
|
|
|
|
if (iter->system_id == widevine_system_id) {
|
|
|
|
Status status = decryption_key_source_->FetchKeys(iter->data);
|
|
|
|
if (!status.ok()) {
|
|
|
|
LOG(ERROR) << "Error fetching decryption keys: " << status;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
2014-08-25 22:51:19 +00:00
|
|
|
|
|
|
|
LOG(ERROR) << "No viable 'pssh' box found for content decryption.";
|
|
|
|
return false;
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
bool MP4MediaParser::EnqueueSample(bool* err) {
|
2013-09-24 01:35:40 +00:00
|
|
|
if (!runs_->IsRunValid()) {
|
|
|
|
// Remain in kEnqueueingSamples state, discarding data, until the end of
|
|
|
|
// the current 'mdat' box has been appended to the queue.
|
|
|
|
if (!queue_.Trim(mdat_tail_))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ChangeState(kParsingBoxes);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!runs_->IsSampleValid()) {
|
|
|
|
runs_->AdvanceRun();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
DCHECK(!(*err));
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
const uint8_t* buf;
|
2013-09-24 01:35:40 +00:00
|
|
|
int buf_size;
|
|
|
|
queue_.Peek(&buf, &buf_size);
|
2013-11-12 20:32:44 +00:00
|
|
|
if (!buf_size)
|
|
|
|
return false;
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2014-03-17 18:36:41 +00:00
|
|
|
// Skip this entire track if it is not audio nor video.
|
|
|
|
if (!runs_->is_audio() && !runs_->is_video())
|
2013-09-24 01:35:40 +00:00
|
|
|
runs_->AdvanceRun();
|
|
|
|
|
|
|
|
// Attempt to cache the auxiliary information first. Aux info is usually
|
|
|
|
// placed in a contiguous block before the sample data, rather than being
|
|
|
|
// interleaved. If we didn't cache it, this would require that we retain the
|
|
|
|
// start of the segment buffer while reading samples. Aux info is typically
|
|
|
|
// quite small compared to sample data, so this pattern is useful on
|
|
|
|
// memory-constrained devices where the source buffer consumes a substantial
|
|
|
|
// portion of the total system memory.
|
|
|
|
if (runs_->AuxInfoNeedsToBeCached()) {
|
|
|
|
queue_.PeekAt(runs_->aux_info_offset() + moof_head_, &buf, &buf_size);
|
2013-11-12 20:32:44 +00:00
|
|
|
if (buf_size < runs_->aux_info_size())
|
|
|
|
return false;
|
2013-09-24 01:35:40 +00:00
|
|
|
*err = !runs_->CacheAuxInfo(buf, buf_size);
|
|
|
|
return !*err;
|
|
|
|
}
|
|
|
|
|
2014-12-23 20:10:23 +00:00
|
|
|
int64_t sample_offset = runs_->sample_offset() + moof_head_;
|
|
|
|
queue_.PeekAt(sample_offset, &buf, &buf_size);
|
|
|
|
if (buf_size < runs_->sample_size()) {
|
|
|
|
if (sample_offset < queue_.head()) {
|
|
|
|
LOG(ERROR) << "Incorrect sample offset " << sample_offset
|
|
|
|
<< " < " << queue_.head();
|
|
|
|
*err = true;
|
|
|
|
}
|
2013-11-12 20:32:44 +00:00
|
|
|
return false;
|
2014-12-23 20:10:23 +00:00
|
|
|
}
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2014-08-25 22:51:19 +00:00
|
|
|
scoped_refptr<MediaSample> stream_sample(MediaSample::CopyFrom(
|
|
|
|
buf, runs_->sample_size(), runs_->is_keyframe()));
|
2013-09-24 01:35:40 +00:00
|
|
|
if (runs_->is_encrypted()) {
|
2014-08-25 22:51:19 +00:00
|
|
|
scoped_ptr<DecryptConfig> decrypt_config = runs_->GetDecryptConfig();
|
2014-10-14 02:34:29 +00:00
|
|
|
if (!decrypt_config ||
|
|
|
|
!DecryptSampleBuffer(decrypt_config.get(),
|
|
|
|
stream_sample->writable_data(),
|
|
|
|
stream_sample->data_size())) {
|
2013-09-24 01:35:40 +00:00
|
|
|
*err = true;
|
2014-10-14 02:34:29 +00:00
|
|
|
LOG(ERROR) << "Cannot decrypt samples.";
|
2013-09-24 01:35:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
stream_sample->set_dts(runs_->dts());
|
|
|
|
stream_sample->set_pts(runs_->cts());
|
|
|
|
stream_sample->set_duration(runs_->duration());
|
2013-09-24 01:35:40 +00:00
|
|
|
|
2014-03-17 18:36:41 +00:00
|
|
|
DVLOG(3) << "Pushing frame: "
|
2013-09-24 01:35:40 +00:00
|
|
|
<< ", key=" << runs_->is_keyframe()
|
2013-09-24 04:17:12 +00:00
|
|
|
<< ", dur=" << runs_->duration()
|
|
|
|
<< ", dts=" << runs_->dts()
|
|
|
|
<< ", cts=" << runs_->cts()
|
2013-09-24 01:35:40 +00:00
|
|
|
<< ", size=" << runs_->sample_size();
|
|
|
|
|
2014-10-15 21:56:12 +00:00
|
|
|
if (!new_sample_cb_.Run(runs_->track_id(), stream_sample)) {
|
|
|
|
*err = true;
|
|
|
|
LOG(ERROR) << "Failed to process the sample.";
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-24 01:35:40 +00:00
|
|
|
|
|
|
|
runs_->AdvanceSample();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-25 22:51:19 +00:00
|
|
|
bool MP4MediaParser::DecryptSampleBuffer(const DecryptConfig* decrypt_config,
|
2014-09-30 21:52:21 +00:00
|
|
|
uint8_t* buffer,
|
2014-08-25 22:51:19 +00:00
|
|
|
size_t buffer_size) {
|
|
|
|
DCHECK(decrypt_config);
|
|
|
|
DCHECK(buffer);
|
|
|
|
|
|
|
|
if (!decryption_key_source_) {
|
|
|
|
LOG(ERROR) << "Encrypted media sample encountered, but decryption is not "
|
|
|
|
"enabled";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the encryptor object.
|
|
|
|
AesCtrEncryptor* encryptor;
|
|
|
|
DecryptorMap::iterator found = decryptor_map_.find(decrypt_config->key_id());
|
|
|
|
if (found == decryptor_map_.end()) {
|
|
|
|
// Create new AesCtrEncryptor
|
|
|
|
EncryptionKey key;
|
|
|
|
Status status(decryption_key_source_->GetKey(decrypt_config->key_id(),
|
|
|
|
&key));
|
|
|
|
if (!status.ok()) {
|
|
|
|
LOG(ERROR) << "Error retrieving decryption key: " << status;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
scoped_ptr<AesCtrEncryptor> new_encryptor(new AesCtrEncryptor);
|
|
|
|
if (!new_encryptor->InitializeWithIv(key.key, decrypt_config->iv())) {
|
|
|
|
LOG(ERROR) << "Failed to initialize AesCtrEncryptor for decryption.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
encryptor = new_encryptor.release();
|
|
|
|
decryptor_map_[decrypt_config->key_id()] = encryptor;
|
|
|
|
} else {
|
|
|
|
encryptor = found->second;
|
|
|
|
}
|
|
|
|
if (!encryptor->SetIv(decrypt_config->iv())) {
|
|
|
|
LOG(ERROR) << "Invalid initialization vector.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (decrypt_config->subsamples().empty()) {
|
|
|
|
// Sample not encrypted using subsample encryption. Decrypt whole.
|
|
|
|
if (!encryptor->Decrypt(buffer, buffer_size, buffer)) {
|
|
|
|
LOG(ERROR) << "Error during bulk sample decryption.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Subsample decryption.
|
|
|
|
const std::vector<SubsampleEntry>& subsamples = decrypt_config->subsamples();
|
2014-09-30 21:52:21 +00:00
|
|
|
uint8_t* current_ptr = buffer;
|
|
|
|
const uint8_t* buffer_end = buffer + buffer_size;
|
2014-08-25 22:51:19 +00:00
|
|
|
current_ptr += decrypt_config->data_offset();
|
|
|
|
if (current_ptr > buffer_end) {
|
|
|
|
LOG(ERROR) << "Subsample data_offset too large.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (std::vector<SubsampleEntry>::const_iterator iter = subsamples.begin();
|
|
|
|
iter != subsamples.end();
|
|
|
|
++iter) {
|
|
|
|
if ((current_ptr + iter->clear_bytes + iter->cipher_bytes) > buffer_end) {
|
|
|
|
LOG(ERROR) << "Subsamples overflow sample buffer.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
current_ptr += iter->clear_bytes;
|
|
|
|
if (!encryptor->Decrypt(current_ptr, iter->cipher_bytes, current_ptr)) {
|
|
|
|
LOG(ERROR) << "Error decrypting subsample buffer.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
current_ptr += iter->cipher_bytes;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-30 21:52:21 +00:00
|
|
|
bool MP4MediaParser::ReadAndDiscardMDATsUntil(const int64_t offset) {
|
2013-09-24 01:35:40 +00:00
|
|
|
bool err = false;
|
|
|
|
while (mdat_tail_ < offset) {
|
2014-09-30 21:52:21 +00:00
|
|
|
const uint8_t* buf;
|
2013-09-24 01:35:40 +00:00
|
|
|
int size;
|
|
|
|
queue_.PeekAt(mdat_tail_, &buf, &size);
|
|
|
|
|
|
|
|
FourCC type;
|
2014-09-30 21:52:21 +00:00
|
|
|
uint64_t box_sz;
|
2013-09-24 04:17:12 +00:00
|
|
|
if (!BoxReader::StartTopLevelBox(buf, size, &type, &box_sz, &err))
|
2013-09-24 01:35:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
if (type != FOURCC_MDAT) {
|
2013-09-24 04:17:12 +00:00
|
|
|
LOG(ERROR) << "Unexpected box type while parsing MDATs: "
|
|
|
|
<< FourCCToString(type);
|
2013-09-24 01:35:40 +00:00
|
|
|
}
|
|
|
|
mdat_tail_ += box_sz;
|
|
|
|
}
|
|
|
|
queue_.Trim(std::min(mdat_tail_, offset));
|
|
|
|
return !err;
|
|
|
|
}
|
|
|
|
|
2013-09-24 04:17:12 +00:00
|
|
|
void MP4MediaParser::ChangeState(State new_state) {
|
2013-09-24 01:35:40 +00:00
|
|
|
DVLOG(2) << "Changing state: " << new_state;
|
|
|
|
state_ = new_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mp4
|
|
|
|
} // namespace media
|
2014-09-19 20:41:13 +00:00
|
|
|
} // namespace edash_packager
|