5#include <packager/media/formats/mp4/mp4_media_parser.h>
11#include <absl/log/check.h>
12#include <absl/log/log.h>
13#include <absl/strings/numbers.h>
15#include <packager/file.h>
16#include <packager/file/file_closer.h>
17#include <packager/macros/compiler.h>
18#include <packager/macros/logging.h>
19#include <packager/media/base/audio_stream_info.h>
20#include <packager/media/base/buffer_reader.h>
21#include <packager/media/base/decrypt_config.h>
22#include <packager/media/base/key_source.h>
23#include <packager/media/base/media_sample.h>
24#include <packager/media/base/rcheck.h>
25#include <packager/media/base/video_stream_info.h>
26#include <packager/media/base/video_util.h>
27#include <packager/media/codecs/ac3_audio_util.h>
28#include <packager/media/codecs/ac4_audio_util.h>
29#include <packager/media/codecs/av1_codec_configuration_record.h>
30#include <packager/media/codecs/avc_decoder_configuration_record.h>
31#include <packager/media/codecs/dovi_decoder_configuration_record.h>
32#include <packager/media/codecs/ec3_audio_util.h>
33#include <packager/media/codecs/es_descriptor.h>
34#include <packager/media/codecs/hevc_decoder_configuration_record.h>
35#include <packager/media/codecs/iamf_audio_util.h>
36#include <packager/media/codecs/vp_codec_configuration_record.h>
37#include <packager/media/formats/mp4/box_definitions.h>
38#include <packager/media/formats/mp4/box_reader.h>
39#include <packager/media/formats/mp4/track_run_iterator.h>
42 use_dovi_supplemental_codecs,
44 "Set to true to signal DolbyVision using the modern supplemental "
45 "codecs approach instead of the legacy "
46 "duplicate representations approach");
53int64_t Rescale(int64_t time_in_old_scale,
56 return (
static_cast<double>(time_in_old_scale) / old_scale) * new_scale;
59H26xStreamFormat GetH26xStreamFormat(FourCC fourcc) {
64 return H26xStreamFormat::kNalUnitStreamWithoutParameterSetNalus;
68 return H26xStreamFormat::kNalUnitStreamWithParameterSetNalus;
70 return H26xStreamFormat::kUnSpecified;
74Codec FourCCToCodec(FourCC fourcc) {
83 return kCodecH265DolbyVision;
126 return kUnknownCodec;
130Codec ObjectTypeToCodec(ObjectType object_type) {
131 switch (object_type) {
132 case ObjectType::kISO_14496_3:
133 case ObjectType::kISO_13818_7_AAC_LC:
135 case ObjectType::kDTSC:
137 case ObjectType::kDTSE:
139 case ObjectType::kDTSH:
141 case ObjectType::kDTSL:
144 return kUnknownCodec;
148std::vector<uint8_t> GetDOVIDecoderConfig(
149 const std::vector<CodecConfiguration>& configs) {
150 for (
const CodecConfiguration& config : configs) {
151 if (config.box_type == FOURCC_dvcC || config.box_type == FOURCC_dvvC) {
155 return std::vector<uint8_t>();
158std::vector<uint8_t> GetLHEVCDecoderConfig(
159 const std::vector<CodecConfiguration>& configs) {
160 for (
const CodecConfiguration& config : configs) {
161 if (config.box_type == FOURCC_lhvC) {
165 return std::vector<uint8_t>();
168bool UpdateCodecStringForDolbyVision(
169 FourCC actual_format,
170 const std::vector<CodecConfiguration>& configs,
171 std::string* codec_string) {
172 DOVIDecoderConfigurationRecord dovi_config;
173 if (!dovi_config.Parse(GetDOVIDecoderConfig(configs))) {
174 LOG(ERROR) <<
"Failed to parse Dolby Vision decoder "
175 "configuration record.";
178 switch (actual_format) {
184 *codec_string = dovi_config.GetCodecString(actual_format);
189 *codec_string +=
";" + dovi_config.GetCodecString(FOURCC_dvhe);
193 *codec_string +=
";" + dovi_config.GetCodecString(FOURCC_dvh1);
196 *codec_string +=
";" + dovi_config.GetCodecString(FOURCC_dav1);
199 LOG(ERROR) <<
"Unsupported format with extra codec "
200 << FourCCToString(actual_format);
206bool UpdateDolbyVisionInfo(FourCC actual_format,
207 const std::vector<CodecConfiguration>& configs,
208 uint8_t transfer_characteristics,
209 std::string* codec_string,
210 std::string* dovi_supplemental_codec_string,
211 FourCC* dovi_compatible_brand) {
212 DOVIDecoderConfigurationRecord dovi_config;
213 if (!dovi_config.Parse(GetDOVIDecoderConfig(configs))) {
214 LOG(ERROR) <<
"Failed to parse Dolby Vision decoder "
215 "configuration record.";
218 switch (actual_format) {
224 *codec_string = dovi_config.GetCodecString(actual_format);
229 *dovi_supplemental_codec_string = dovi_config.GetCodecString(FOURCC_dvhe);
233 *dovi_supplemental_codec_string = dovi_config.GetCodecString(FOURCC_dvh1);
236 *dovi_supplemental_codec_string = dovi_config.GetCodecString(FOURCC_dav1);
239 LOG(ERROR) <<
"Unsupported format with extra codec "
240 << FourCCToString(actual_format);
243 *dovi_compatible_brand =
244 dovi_config.GetDoViCompatibleBrand(transfer_characteristics);
248bool UpdateLHEVCInfo(FourCC actual_format,
249 HEVCDecoderConfigurationRecord& hevc_config,
250 const std::vector<CodecConfiguration>& configs,
251 std::string* codec_string) {
252 if (!hevc_config.ParseLHEVCConfig(GetLHEVCDecoderConfig(configs))) {
253 LOG(ERROR) <<
"Failed to parse L-HEVC decoder "
254 "configuration record.";
257 *codec_string = hevc_config.GetCodecString(actual_format);
261const uint64_t kNanosecondsPerSecond = 1000000000ull;
265MP4MediaParser::MP4MediaParser()
266 : state_(kWaitingForInit),
267 decryption_key_source_(NULL),
271MP4MediaParser::~MP4MediaParser() {}
273void MP4MediaParser::Init(
const InitCB& init_cb,
277 DCHECK_EQ(state_, kWaitingForInit);
278 DCHECK(init_cb_ ==
nullptr);
279 DCHECK(init_cb !=
nullptr);
280 DCHECK(new_media_sample_cb !=
nullptr);
282 ChangeState(kParsingBoxes);
284 new_sample_cb_ = new_media_sample_cb;
285 decryption_key_source_ = decryption_key_source;
286 if (decryption_key_source)
290void MP4MediaParser::Reset() {
297bool MP4MediaParser::Flush() {
298 DCHECK_NE(state_, kWaitingForInit);
300 ChangeState(kParsingBoxes);
304bool MP4MediaParser::Parse(
const uint8_t* buf,
int size) {
305 DCHECK_NE(state_, kWaitingForInit);
307 if (state_ == kError)
310 queue_.Push(buf, size);
312 bool result, err =
false;
315 if (state_ == kParsingBoxes) {
316 result = ParseBox(&err);
318 DCHECK_EQ(kEmittingSamples, state_);
319 result = EnqueueSample(&err);
321 int64_t max_clear = runs_->GetMaxClearOffset() + moof_head_;
322 err = !ReadAndDiscardMDATsUntil(max_clear);
325 }
while (result && !err);
328 DLOG(ERROR) <<
"Error while parsing MP4";
338bool MP4MediaParser::LoadMoov(
const std::string& file_path) {
339 std::unique_ptr<File, FileCloser> file(
340 File::OpenWithNoBuffering(file_path.c_str(),
"r"));
342 LOG(ERROR) <<
"Unable to open media file '" << file_path <<
"'";
345 if (!file->Seek(0)) {
346 LOG(WARNING) <<
"Filesystem does not support seeking on file '" << file_path
351 uint64_t file_position(0);
352 bool mdat_seen(
false);
354 const uint32_t kBoxHeaderReadSize(16);
355 std::vector<uint8_t> buffer(kBoxHeaderReadSize);
356 int64_t bytes_read = file->Read(&buffer[0], kBoxHeaderReadSize);
357 if (bytes_read == 0) {
358 LOG(ERROR) <<
"Could not find 'moov' box in file '" << file_path <<
"'";
361 if (bytes_read < kBoxHeaderReadSize) {
362 LOG(ERROR) <<
"Error reading media file '" << file_path <<
"'";
368 if (!BoxReader::StartBox(&buffer[0], kBoxHeaderReadSize, &box_type,
370 LOG(ERROR) <<
"Could not start box from file '" << file_path <<
"'";
373 if (box_type == FOURCC_mdat) {
375 }
else if (box_type == FOURCC_moov) {
381 if (!Parse(&buffer[0], bytes_read)) {
382 LOG(ERROR) <<
"Error parsing mp4 file '" << file_path <<
"'";
385 uint64_t bytes_to_read = box_size - bytes_read;
386 buffer.resize(bytes_to_read);
387 while (bytes_to_read > 0) {
388 bytes_read = file->Read(&buffer[0], bytes_to_read);
389 if (bytes_read <= 0) {
390 LOG(ERROR) <<
"Error reading 'moov' contents from file '" << file_path
394 if (!Parse(&buffer[0], bytes_read)) {
395 LOG(ERROR) <<
"Error parsing mp4 file '" << file_path <<
"'";
398 bytes_to_read -= bytes_read;
404 file_position += box_size;
405 if (!file->Seek(file_position)) {
406 LOG(ERROR) <<
"Error skipping box in mp4 file '" << file_path <<
"'";
413bool MP4MediaParser::ParseBox(
bool* err) {
416 queue_.Peek(&buf, &size);
420 std::unique_ptr<BoxReader> reader(BoxReader::ReadBox(buf, size, err));
421 if (reader.get() == NULL)
424 if (reader->type() == FOURCC_mdat) {
430 NOTIMPLEMENTED() <<
" Non-seekable Files with 'mdat' box before 'moov' "
431 "box is not supported.";
438 <<
"Ignore unused 'mdat' box - this could be as a result of extra "
439 "not usable 'mdat' or 'mdat' associated with unrecognized track.";
444 mdat_tail_ = queue_.head() + reader->size();
446 if (reader->type() == FOURCC_moov) {
447 *err = !ParseMoov(reader.get());
448 }
else if (reader->type() == FOURCC_moof) {
449 moof_head_ = queue_.head();
450 *err = !ParseMoof(reader.get());
458 VLOG(2) <<
"Skipping top-level box: " << FourCCToString(reader->type());
461 queue_.Pop(
static_cast<int>(reader->size()));
465bool MP4MediaParser::ParseMoov(BoxReader* reader) {
469 moov_.reset(
new Movie);
470 RCHECK(moov_->Parse(reader));
473 std::vector<std::shared_ptr<StreamInfo>> streams;
475 bool use_dovi_supplemental =
476 absl::GetFlag(FLAGS_use_dovi_supplemental_codecs);
478 for (std::vector<Track>::const_iterator track = moov_->tracks.begin();
479 track != moov_->tracks.end(); ++track) {
480 const int32_t timescale = track->media.header.timescale;
483 int64_t duration = 0;
484 if (track->media.header.duration > 0) {
485 duration = track->media.header.duration;
486 }
else if (moov_->extends.header.fragment_duration > 0) {
487 DCHECK(moov_->header.timescale != 0);
488 duration = Rescale(moov_->extends.header.fragment_duration,
489 moov_->header.timescale,
491 }
else if (moov_->header.duration > 0 &&
492 moov_->header.duration != std::numeric_limits<uint64_t>::max()) {
493 DCHECK(moov_->header.timescale != 0);
495 Rescale(moov_->header.duration, moov_->header.timescale, timescale);
498 const SampleDescription& samp_descr =
499 track->media.information.sample_table.description;
505 if (moov_->extends.tracks.size() > 0) {
506 for (
size_t t = 0; t < moov_->extends.tracks.size(); t++) {
507 const TrackExtends& trex = moov_->extends.tracks[t];
508 if (trex.track_id == track->header.track_id) {
509 desc_idx = trex.default_sample_description_index;
514 const std::vector<ChunkInfo>& chunk_info =
515 track->media.information.sample_table.sample_to_chunk.chunk_info;
516 RCHECK(chunk_info.size() > 0);
517 desc_idx = chunk_info[0].sample_description_index;
519 RCHECK(desc_idx > 0);
522 if (samp_descr.type == kAudio) {
523 RCHECK(!samp_descr.audio_entries.empty());
527 if (desc_idx >= samp_descr.audio_entries.size())
530 const AudioSampleEntry& entry = samp_descr.audio_entries[desc_idx];
531 const FourCC actual_format = entry.GetActualFormat();
532 Codec codec = FourCCToCodec(actual_format);
533 uint8_t num_channels = entry.channelcount;
534 uint32_t sampling_frequency = entry.samplerate;
535 uint64_t codec_delay_ns = 0;
536 uint8_t audio_object_type = 0;
537 uint32_t max_bitrate = 0;
538 uint32_t avg_bitrate = 0;
539 std::vector<uint8_t> codec_config;
541 switch (actual_format) {
543 const DecoderConfigDescriptor& decoder_config =
544 entry.esds.es_descriptor.decoder_config_descriptor();
545 max_bitrate = decoder_config.max_bitrate();
546 avg_bitrate = decoder_config.avg_bitrate();
548 codec = ObjectTypeToCodec(decoder_config.object_type());
549 if (codec == kCodecAAC) {
550 const AACAudioSpecificConfig& aac_audio_specific_config =
551 entry.esds.aac_audio_specific_config;
552 num_channels = aac_audio_specific_config.GetNumChannels();
554 aac_audio_specific_config.GetSamplesPerSecond();
555 audio_object_type = aac_audio_specific_config.GetAudioObjectType();
557 decoder_config.decoder_specific_info_descriptor().data();
558 }
else if (codec == kUnknownCodec) {
563 LOG(WARNING) <<
"Unsupported audio object type "
564 <<
static_cast<int>(decoder_config.object_type())
565 <<
" in stsd.es_desriptor.";
570 FALLTHROUGH_INTENDED;
572 FALLTHROUGH_INTENDED;
574 FALLTHROUGH_INTENDED;
576 FALLTHROUGH_INTENDED;
578 codec_config = entry.ddts.extra_data;
579 max_bitrate = entry.ddts.max_bitrate;
580 avg_bitrate = entry.ddts.avg_bitrate;
583 codec_config = entry.udts.data;
586 codec_config = entry.dac3.data;
587 num_channels =
static_cast<uint8_t
>(GetAc3NumChannels(codec_config));
590 codec_config = entry.dec3.data;
591 num_channels =
static_cast<uint8_t
>(GetEc3NumChannels(codec_config));
594 codec_config = entry.dac4.data;
598 if (!GetAc4CodecInfo(codec_config, &audio_object_type)) {
599 LOG(ERROR) <<
"Failed to parse dac4.";
604 codec_config = entry.alac.data;
607 codec_config = entry.dfla.data;
610 codec_config = entry.dops.opus_identification_header;
612 entry.dops.preskip * kNanosecondsPerSecond / sampling_frequency;
615 codec_config = entry.iacb.data;
616 if (!GetIamfCodecStringInfo(codec_config, audio_object_type)) {
617 LOG(ERROR) <<
"Failed to parse iamf.";
623 codec_config = entry.mhac.data;
624 audio_object_type = entry.mhac.mpeg_h_3da_profile_level_indication;
632 LOG(WARNING) <<
"Unsupported audio format '"
633 << FourCCToString(actual_format) <<
"' in stsd box.";
638 uint64_t seek_preroll_ns = 0;
639 for (
const auto& sample_group_description :
640 track->media.information.sample_table.sample_group_descriptions) {
641 if (sample_group_description.grouping_type != FOURCC_roll)
643 const auto& audio_roll_recovery_entries =
644 sample_group_description.audio_roll_recovery_entries;
645 if (audio_roll_recovery_entries.size() != 1) {
646 LOG(WARNING) <<
"Unexpected number of entries in "
647 "SampleGroupDescription table with grouping type "
651 const int16_t roll_distance_in_samples =
652 audio_roll_recovery_entries[0].roll_distance;
653 if (roll_distance_in_samples < 0) {
656 if (actual_format == FOURCC_iamf)
659 RCHECK((sampling_frequency != 0));
660 seek_preroll_ns = kNanosecondsPerSecond *
661 (-roll_distance_in_samples) / sampling_frequency;
664 <<
"Roll distance is supposed to be negative, but seeing "
665 << roll_distance_in_samples;
671 const bool is_encrypted =
674 : entry.sinf.info.track_encryption.default_is_protected == 1;
675 DVLOG(1) <<
"is_audio_track_encrypted_: " << is_encrypted;
676 streams.emplace_back(
new AudioStreamInfo(
677 track->header.track_id, timescale, duration, codec,
678 AudioStreamInfo::GetCodecString(codec, audio_object_type),
679 codec_config.data(), codec_config.size(), entry.samplesize,
680 num_channels, sampling_frequency, seek_preroll_ns, codec_delay_ns,
681 max_bitrate, avg_bitrate, track->media.header.language.code,
685 if (samp_descr.type == kVideo) {
686 RCHECK(!samp_descr.video_entries.empty());
687 if (desc_idx >= samp_descr.video_entries.size())
689 const VideoSampleEntry& entry = samp_descr.video_entries[desc_idx];
690 std::vector<uint8_t> codec_configuration_data =
691 entry.codec_configuration.data;
693 uint32_t coded_width = entry.width;
694 uint32_t coded_height = entry.height;
695 uint32_t pixel_width = entry.pixel_aspect.h_spacing;
696 uint32_t pixel_height = entry.pixel_aspect.v_spacing;
697 if (pixel_width == 0 && pixel_height == 0) {
698 DerivePixelWidthHeight(coded_width, coded_height, track->header.width,
699 track->header.height, &pixel_width,
702 std::string codec_string;
703 std::string dovi_supplemental_codec_string(
"");
704 FourCC dovi_compatible_brand = FOURCC_NULL;
705 uint8_t nalu_length_size = 0;
706 uint8_t transfer_characteristics = 0;
707 uint8_t color_primaries = 0;
708 uint8_t matrix_coefficients = 0;
710 const FourCC actual_format = entry.GetActualFormat();
711 const Codec video_codec = FourCCToCodec(actual_format);
712 switch (actual_format) {
714 AV1CodecConfigurationRecord av1_config;
715 if (!av1_config.Parse(codec_configuration_data)) {
716 LOG(ERROR) <<
"Failed to parse av1c.";
720 if (entry.colr.color_parameter_type != FOURCC_NULL) {
721 transfer_characteristics = entry.colr.transfer_characteristics;
722 color_primaries = entry.colr.color_primaries;
723 matrix_coefficients = entry.colr.matrix_coefficients;
724 codec_string = av1_config.GetCodecString(
725 color_primaries, transfer_characteristics, matrix_coefficients,
726 entry.colr.video_full_range_flag);
728 codec_string = av1_config.GetCodecString();
731 if (!entry.extra_codec_configs.empty()) {
733 if (use_dovi_supplemental) {
734 if (!UpdateDolbyVisionInfo(
735 actual_format, entry.extra_codec_configs,
736 transfer_characteristics, &codec_string,
737 &dovi_supplemental_codec_string,
738 &dovi_compatible_brand)) {
742 if (!UpdateCodecStringForDolbyVision(actual_format,
743 entry.extra_codec_configs,
753 AVCDecoderConfigurationRecord avc_config;
754 if (!avc_config.Parse(codec_configuration_data)) {
755 LOG(ERROR) <<
"Failed to parse avcc.";
758 codec_string = avc_config.GetCodecString(actual_format);
759 nalu_length_size = avc_config.nalu_length_size();
760 transfer_characteristics = avc_config.transfer_characteristics();
761 color_primaries = avc_config.color_primaries();
762 matrix_coefficients = avc_config.matrix_coefficients();
765 if (avc_config.coded_width() != 0) {
766 DCHECK_NE(avc_config.coded_height(), 0u);
767 if (coded_width != avc_config.coded_width() ||
768 coded_height != avc_config.coded_height()) {
769 LOG(WARNING) <<
"Resolution in VisualSampleEntry (" << coded_width
770 <<
"," << coded_height
771 <<
") does not match with resolution in "
772 "AVCDecoderConfigurationRecord ("
773 << avc_config.coded_width() <<
","
774 << avc_config.coded_height()
775 <<
"). Use AVCDecoderConfigurationRecord.";
776 coded_width = avc_config.coded_width();
777 coded_height = avc_config.coded_height();
780 DCHECK_NE(avc_config.pixel_width(), 0u);
781 DCHECK_NE(avc_config.pixel_height(), 0u);
782 if (pixel_width != avc_config.pixel_width() ||
783 pixel_height != avc_config.pixel_height()) {
784 LOG_IF(WARNING, pixel_width != 1 || pixel_height != 1)
785 <<
"Pixel aspect ratio in PASP box (" << pixel_width <<
","
787 <<
") does not match with SAR in "
788 "AVCDecoderConfigurationRecord "
790 << avc_config.pixel_width() <<
","
791 << avc_config.pixel_height()
792 <<
"). Use AVCDecoderConfigurationRecord.";
793 pixel_width = avc_config.pixel_width();
794 pixel_height = avc_config.pixel_height();
803 HEVCDecoderConfigurationRecord hevc_config;
804 if (!hevc_config.Parse(codec_configuration_data)) {
805 LOG(ERROR) <<
"Failed to parse hevc.";
808 codec_string = hevc_config.GetCodecString(actual_format);
809 nalu_length_size = hevc_config.nalu_length_size();
810 transfer_characteristics = hevc_config.transfer_characteristics();
811 color_primaries = hevc_config.color_primaries();
812 matrix_coefficients = hevc_config.matrix_coefficients();
814 if (!entry.extra_codec_configs.empty()) {
817 if (entry.HaveDolbyVisionConfig()) {
818 if (use_dovi_supplemental) {
819 if (!UpdateDolbyVisionInfo(
820 actual_format, entry.extra_codec_configs,
821 transfer_characteristics, &codec_string,
822 &dovi_supplemental_codec_string,
823 &dovi_compatible_brand)) {
827 if (!UpdateCodecStringForDolbyVision(actual_format,
828 entry.extra_codec_configs,
834 if (entry.HaveLHEVCConfig()) {
835 if (!UpdateLHEVCInfo(actual_format, hevc_config,
836 entry.extra_codec_configs, &codec_string)) {
845 VPCodecConfigurationRecord vp_config;
846 if (!vp_config.ParseMP4(codec_configuration_data)) {
847 LOG(ERROR) <<
"Failed to parse vpcc.";
850 if (actual_format == FOURCC_vp09 &&
851 (!vp_config.is_level_set() || vp_config.level() == 0)) {
852 const double kUnknownSampleDuration = 0.0;
853 vp_config.SetVP9Level(coded_width, coded_height,
854 kUnknownSampleDuration);
855 vp_config.WriteMP4(&codec_configuration_data);
857 codec_string = vp_config.GetCodecString(video_codec);
866 LOG(WARNING) <<
"Unsupported video format '"
867 << FourCCToString(actual_format) <<
"' in stsd box.";
872 const bool is_encrypted =
875 : entry.sinf.info.track_encryption.default_is_protected == 1;
876 DVLOG(1) <<
"is_video_track_encrypted_: " << is_encrypted;
877 std::shared_ptr<VideoStreamInfo> video_stream_info(
new VideoStreamInfo(
878 track->header.track_id, timescale, duration, video_codec,
879 GetH26xStreamFormat(actual_format), codec_string,
880 codec_configuration_data.data(), codec_configuration_data.size(),
881 coded_width, coded_height, pixel_width, pixel_height, color_primaries,
882 matrix_coefficients, transfer_characteristics,
884 nalu_length_size, track->media.header.language.code, is_encrypted));
886 if (use_dovi_supplemental) {
887 video_stream_info->set_supplemental_codec(
888 dovi_supplemental_codec_string);
889 video_stream_info->set_compatible_brand(dovi_compatible_brand);
891 video_stream_info->set_layered_codec_config(
892 GetLHEVCDecoderConfig(entry.extra_codec_configs));
893 video_stream_info->set_extra_config(entry.ExtraCodecConfigsAsVector());
894 video_stream_info->set_colr_data((entry.colr.raw_box).data(),
895 (entry.colr.raw_box).size());
898 if (moov_->pssh.size() > 0) {
899 std::vector<uint8_t> pssh_raw_data;
900 for (
const auto& pssh : moov_->pssh) {
901 pssh_raw_data.insert(pssh_raw_data.end(), pssh.raw_box.begin(),
904 video_stream_info->set_eme_init_data(pssh_raw_data.data(),
905 pssh_raw_data.size());
908 streams.push_back(video_stream_info);
913 if (!FetchKeysIfNecessary(moov_->pssh))
915 runs_.reset(
new TrackRunIterator(moov_.get()));
916 RCHECK(runs_->Init());
917 ChangeState(kEmittingSamples);
921bool MP4MediaParser::ParseMoof(BoxReader* reader) {
925 RCHECK(moof.Parse(reader));
927 runs_.reset(
new TrackRunIterator(moov_.get()));
928 RCHECK(runs_->Init(moof));
929 if (!FetchKeysIfNecessary(moof.pssh))
931 ChangeState(kEmittingSamples);
935bool MP4MediaParser::FetchKeysIfNecessary(
936 const std::vector<ProtectionSystemSpecificHeader>& headers) {
941 if (!decryption_key_source_)
944 std::vector<uint8_t> pssh_raw_data;
945 for (
const auto& header : headers) {
946 pssh_raw_data.insert(pssh_raw_data.end(), header.raw_box.begin(),
947 header.raw_box.end());
950 decryption_key_source_->FetchKeys(EmeInitDataType::CENC, pssh_raw_data);
952 LOG(ERROR) <<
"Error fetching decryption keys: " << status;
958bool MP4MediaParser::EnqueueSample(
bool* err) {
959 if (!runs_->IsRunValid()) {
962 if (!queue_.Trim(mdat_tail_))
965 ChangeState(kParsingBoxes);
969 if (!runs_->IsSampleValid()) {
978 queue_.Peek(&buf, &buf_size);
983 if (!runs_->is_audio() && !runs_->is_video())
993 if (runs_->AuxInfoNeedsToBeCached()) {
994 queue_.PeekAt(runs_->aux_info_offset() + moof_head_, &buf, &buf_size);
995 if (buf_size < runs_->aux_info_size())
997 *err = !runs_->CacheAuxInfo(buf, buf_size);
1001 int64_t sample_offset = runs_->sample_offset() + moof_head_;
1002 queue_.PeekAt(sample_offset, &buf, &buf_size);
1003 if (buf_size < runs_->sample_size()) {
1004 if (sample_offset < queue_.head()) {
1005 LOG(ERROR) <<
"Incorrect sample offset " << sample_offset
1006 <<
" < " << queue_.head();
1012 const uint8_t* media_data = buf;
1013 const size_t media_data_size = runs_->sample_size();
1016 const size_t kDummyDataSize = 0;
1017 std::shared_ptr<MediaSample> stream_sample(
1018 MediaSample::CopyFrom(media_data, kDummyDataSize, runs_->is_keyframe()));
1020 if (runs_->is_encrypted()) {
1021 std::shared_ptr<uint8_t> decrypted_media_data(
1022 new uint8_t[media_data_size], std::default_delete<uint8_t[]>());
1023 std::unique_ptr<DecryptConfig> decrypt_config = runs_->GetDecryptConfig();
1024 if (!decrypt_config) {
1026 LOG(ERROR) <<
"Missing decrypt config.";
1030 if (!decryptor_source_) {
1031 stream_sample->SetData(media_data, media_data_size);
1034 stream_sample->set_decrypt_config(std::move(decrypt_config));
1035 stream_sample->set_is_encrypted(
true);
1037 if (!decryptor_source_->DecryptSampleBuffer(decrypt_config.get(),
1038 media_data, media_data_size,
1039 decrypted_media_data.get())) {
1041 LOG(ERROR) <<
"Cannot decrypt samples.";
1044 stream_sample->TransferData(std::move(decrypted_media_data),
1048 stream_sample->SetData(media_data, media_data_size);
1051 stream_sample->set_dts(runs_->dts());
1052 stream_sample->set_pts(runs_->cts());
1053 stream_sample->set_duration(runs_->duration());
1055 DVLOG(3) <<
"Pushing frame: "
1056 <<
", key=" << runs_->is_keyframe()
1057 <<
", dur=" << runs_->duration()
1058 <<
", dts=" << runs_->dts()
1059 <<
", cts=" << runs_->cts()
1060 <<
", size=" << runs_->sample_size();
1062 if (!new_sample_cb_(runs_->track_id(), stream_sample)) {
1064 LOG(ERROR) <<
"Failed to process the sample.";
1068 runs_->AdvanceSample();
1072bool MP4MediaParser::ReadAndDiscardMDATsUntil(
const int64_t offset) {
1074 while (mdat_tail_ < offset) {
1077 queue_.PeekAt(mdat_tail_, &buf, &size);
1081 if (!BoxReader::StartBox(buf, size, &type, &box_sz, &err))
1084 mdat_tail_ += box_sz;
1086 queue_.Trim(std::min(mdat_tail_, offset));
1090void MP4MediaParser::ChangeState(State new_state) {
1091 DVLOG(2) <<
"Changing state: " << new_state;
All the methods that are virtual are virtual for mocking.