Shaka Packager SDK
Loading...
Searching...
No Matches
mp4_media_parser.cc
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include <packager/media/formats/mp4/mp4_media_parser.h>
6
7#include <algorithm>
8#include <functional>
9#include <limits>
10
11#include <absl/log/check.h>
12#include <absl/log/log.h>
13#include <absl/strings/numbers.h>
14
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>
40
41ABSL_FLAG(bool,
42 use_dovi_supplemental_codecs,
43 false,
44 "Set to true to signal DolbyVision using the modern supplemental "
45 "codecs approach instead of the legacy "
46 "duplicate representations approach");
47
48namespace shaka {
49namespace media {
50namespace mp4 {
51namespace {
52
53int64_t Rescale(int64_t time_in_old_scale,
54 int32_t old_scale,
55 int32_t new_scale) {
56 return (static_cast<double>(time_in_old_scale) / old_scale) * new_scale;
57}
58
59H26xStreamFormat GetH26xStreamFormat(FourCC fourcc) {
60 switch (fourcc) {
61 case FOURCC_avc1:
62 case FOURCC_dvh1:
63 case FOURCC_hvc1:
64 return H26xStreamFormat::kNalUnitStreamWithoutParameterSetNalus;
65 case FOURCC_avc3:
66 case FOURCC_dvhe:
67 case FOURCC_hev1:
68 return H26xStreamFormat::kNalUnitStreamWithParameterSetNalus;
69 default:
70 return H26xStreamFormat::kUnSpecified;
71 }
72}
73
74Codec FourCCToCodec(FourCC fourcc) {
75 switch (fourcc) {
76 case FOURCC_av01:
77 return kCodecAV1;
78 case FOURCC_avc1:
79 case FOURCC_avc3:
80 return kCodecH264;
81 case FOURCC_dvh1:
82 case FOURCC_dvhe:
83 return kCodecH265DolbyVision;
84 case FOURCC_hev1:
85 case FOURCC_hvc1:
86 return kCodecH265;
87 case FOURCC_vp08:
88 return kCodecVP8;
89 case FOURCC_vp09:
90 return kCodecVP9;
91 case FOURCC_Opus:
92 return kCodecOpus;
93 case FOURCC_dtsc:
94 return kCodecDTSC;
95 case FOURCC_dtsh:
96 return kCodecDTSH;
97 case FOURCC_dtsl:
98 return kCodecDTSL;
99 case FOURCC_dtse:
100 return kCodecDTSE;
101 case FOURCC_dtsx:
102 return kCodecDTSX;
103 case FOURCC_dtsp:
104 return kCodecDTSP;
105 case FOURCC_dtsm:
106 return kCodecDTSM;
107 case FOURCC_ac_3:
108 return kCodecAC3;
109 case FOURCC_ec_3:
110 return kCodecEAC3;
111 case FOURCC_ac_4:
112 return kCodecAC4;
113 case FOURCC_alac:
114 return kCodecALAC;
115 case FOURCC_fLaC:
116 return kCodecFlac;
117 case FOURCC_iamf:
118 return kCodecIAMF;
119 case FOURCC_ipcm:
120 return kCodecPcm;
121 case FOURCC_mha1:
122 return kCodecMha1;
123 case FOURCC_mhm1:
124 return kCodecMhm1;
125 default:
126 return kUnknownCodec;
127 }
128}
129
130Codec ObjectTypeToCodec(ObjectType object_type) {
131 switch (object_type) {
132 case ObjectType::kISO_14496_3:
133 case ObjectType::kISO_13818_7_AAC_LC:
134 return kCodecAAC;
135 case ObjectType::kDTSC:
136 return kCodecDTSC;
137 case ObjectType::kDTSE:
138 return kCodecDTSE;
139 case ObjectType::kDTSH:
140 return kCodecDTSH;
141 case ObjectType::kDTSL:
142 return kCodecDTSL;
143 default:
144 return kUnknownCodec;
145 }
146}
147
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) {
152 return config.data;
153 }
154 }
155 return std::vector<uint8_t>();
156}
157
158std::vector<uint8_t> GetLHEVCDecoderConfig(
159 const std::vector<CodecConfiguration>& configs) {
160 for (const CodecConfiguration& config : configs) {
161 if (config.box_type == FOURCC_lhvC) {
162 return config.data;
163 }
164 }
165 return std::vector<uint8_t>();
166}
167
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.";
176 return false;
177 }
178 switch (actual_format) {
179 case FOURCC_dvh1:
180 case FOURCC_dvhe:
181 case FOURCC_dav1:
182 // Non-Backward compatibility mode. Replace the code string with
183 // Dolby Vision only.
184 *codec_string = dovi_config.GetCodecString(actual_format);
185 break;
186 case FOURCC_hev1:
187 // Backward compatibility mode. Two codecs are signalled: base codec
188 // without Dolby Vision and HDR with Dolby Vision.
189 *codec_string += ";" + dovi_config.GetCodecString(FOURCC_dvhe);
190 break;
191 case FOURCC_hvc1:
192 // See above.
193 *codec_string += ";" + dovi_config.GetCodecString(FOURCC_dvh1);
194 break;
195 case FOURCC_av01:
196 *codec_string += ";" + dovi_config.GetCodecString(FOURCC_dav1);
197 break;
198 default:
199 LOG(ERROR) << "Unsupported format with extra codec "
200 << FourCCToString(actual_format);
201 return false;
202 }
203 return true;
204}
205
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.";
216 return false;
217 }
218 switch (actual_format) {
219 case FOURCC_dvh1:
220 case FOURCC_dvhe:
221 case FOURCC_dav1:
222 // Non-Backward compatibility mode. Replace the code string with
223 // Dolby Vision only.
224 *codec_string = dovi_config.GetCodecString(actual_format);
225 break;
226 case FOURCC_hev1:
227 // Backward compatibility mode. Use supplemental codec indicating Dolby
228 // Dolby Vision content.
229 *dovi_supplemental_codec_string = dovi_config.GetCodecString(FOURCC_dvhe);
230 break;
231 case FOURCC_hvc1:
232 // See above.
233 *dovi_supplemental_codec_string = dovi_config.GetCodecString(FOURCC_dvh1);
234 break;
235 case FOURCC_av01:
236 *dovi_supplemental_codec_string = dovi_config.GetCodecString(FOURCC_dav1);
237 break;
238 default:
239 LOG(ERROR) << "Unsupported format with extra codec "
240 << FourCCToString(actual_format);
241 return false;
242 }
243 *dovi_compatible_brand =
244 dovi_config.GetDoViCompatibleBrand(transfer_characteristics);
245 return true;
246}
247
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.";
255 return false;
256 }
257 *codec_string = hevc_config.GetCodecString(actual_format);
258 return true;
259}
260
261const uint64_t kNanosecondsPerSecond = 1000000000ull;
262
263} // namespace
264
265MP4MediaParser::MP4MediaParser()
266 : state_(kWaitingForInit),
267 decryption_key_source_(NULL),
268 moof_head_(0),
269 mdat_tail_(0) {}
270
271MP4MediaParser::~MP4MediaParser() {}
272
273void MP4MediaParser::Init(const InitCB& init_cb,
274 const NewMediaSampleCB& new_media_sample_cb,
275 const NewTextSampleCB& new_text_sample_cb,
276 KeySource* decryption_key_source) {
277 DCHECK_EQ(state_, kWaitingForInit);
278 DCHECK(init_cb_ == nullptr);
279 DCHECK(init_cb != nullptr);
280 DCHECK(new_media_sample_cb != nullptr);
281
282 ChangeState(kParsingBoxes);
283 init_cb_ = init_cb;
284 new_sample_cb_ = new_media_sample_cb;
285 decryption_key_source_ = decryption_key_source;
286 if (decryption_key_source)
287 decryptor_source_.reset(new DecryptorSource(decryption_key_source));
288}
289
290void MP4MediaParser::Reset() {
291 queue_.Reset();
292 runs_.reset();
293 moof_head_ = 0;
294 mdat_tail_ = 0;
295}
296
297bool MP4MediaParser::Flush() {
298 DCHECK_NE(state_, kWaitingForInit);
299 Reset();
300 ChangeState(kParsingBoxes);
301 return true;
302}
303
304bool MP4MediaParser::Parse(const uint8_t* buf, int size) {
305 DCHECK_NE(state_, kWaitingForInit);
306
307 if (state_ == kError)
308 return false;
309
310 queue_.Push(buf, size);
311
312 bool result, err = false;
313
314 do {
315 if (state_ == kParsingBoxes) {
316 result = ParseBox(&err);
317 } else {
318 DCHECK_EQ(kEmittingSamples, state_);
319 result = EnqueueSample(&err);
320 if (result) {
321 int64_t max_clear = runs_->GetMaxClearOffset() + moof_head_;
322 err = !ReadAndDiscardMDATsUntil(max_clear);
323 }
324 }
325 } while (result && !err);
326
327 if (err) {
328 DLOG(ERROR) << "Error while parsing MP4";
329 moov_.reset();
330 Reset();
331 ChangeState(kError);
332 return false;
333 }
334
335 return true;
336}
337
338bool MP4MediaParser::LoadMoov(const std::string& file_path) {
339 std::unique_ptr<File, FileCloser> file(
340 File::OpenWithNoBuffering(file_path.c_str(), "r"));
341 if (!file) {
342 LOG(ERROR) << "Unable to open media file '" << file_path << "'";
343 return false;
344 }
345 if (!file->Seek(0)) {
346 LOG(WARNING) << "Filesystem does not support seeking on file '" << file_path
347 << "'";
348 return false;
349 }
350
351 uint64_t file_position(0);
352 bool mdat_seen(false);
353 while (true) {
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 << "'";
359 return false;
360 }
361 if (bytes_read < kBoxHeaderReadSize) {
362 LOG(ERROR) << "Error reading media file '" << file_path << "'";
363 return false;
364 }
365 uint64_t box_size;
366 FourCC box_type;
367 bool err;
368 if (!BoxReader::StartBox(&buffer[0], kBoxHeaderReadSize, &box_type,
369 &box_size, &err)) {
370 LOG(ERROR) << "Could not start box from file '" << file_path << "'";
371 return false;
372 }
373 if (box_type == FOURCC_mdat) {
374 mdat_seen = true;
375 } else if (box_type == FOURCC_moov) {
376 if (!mdat_seen) {
377 // 'moov' is before 'mdat'. Nothing to do.
378 break;
379 }
380 // 'mdat' before 'moov'. Read and parse 'moov'.
381 if (!Parse(&buffer[0], bytes_read)) {
382 LOG(ERROR) << "Error parsing mp4 file '" << file_path << "'";
383 return false;
384 }
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
391 << "'";
392 return false;
393 }
394 if (!Parse(&buffer[0], bytes_read)) {
395 LOG(ERROR) << "Error parsing mp4 file '" << file_path << "'";
396 return false;
397 }
398 bytes_to_read -= bytes_read;
399 }
400 queue_.Reset(); // So that we don't need to adjust data offsets.
401 mdat_tail_ = 0; // So it will skip boxes until mdat.
402 break; // Done.
403 }
404 file_position += box_size;
405 if (!file->Seek(file_position)) {
406 LOG(ERROR) << "Error skipping box in mp4 file '" << file_path << "'";
407 return false;
408 }
409 }
410 return true;
411}
412
413bool MP4MediaParser::ParseBox(bool* err) {
414 const uint8_t* buf;
415 int size;
416 queue_.Peek(&buf, &size);
417 if (!size)
418 return false;
419
420 std::unique_ptr<BoxReader> reader(BoxReader::ReadBox(buf, size, err));
421 if (reader.get() == NULL)
422 return false;
423
424 if (reader->type() == FOURCC_mdat) {
425 if (!moov_) {
426 // For seekable files, we seek to the 'moov' and load the 'moov' first
427 // then seek back (see LoadMoov function for details); we do not support
428 // having 'mdat' before 'moov' for non-seekable files. The code ends up
429 // here only if it is a non-seekable file.
430 NOTIMPLEMENTED() << " Non-seekable Files with 'mdat' box before 'moov' "
431 "box is not supported.";
432 *err = true;
433 return false;
434 } else {
435 // This can happen if there are unused 'mdat' boxes, which is unusual
436 // but allowed by the spec. Ignore the 'mdat' and proceed.
437 LOG(INFO)
438 << "Ignore unused 'mdat' box - this could be as a result of extra "
439 "not usable 'mdat' or 'mdat' associated with unrecognized track.";
440 }
441 }
442
443 // Set up mdat offset for ReadMDATsUntil().
444 mdat_tail_ = queue_.head() + reader->size();
445
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());
451
452 // Return early to avoid evicting 'moof' data from queue. Auxiliary info may
453 // be located anywhere in the file, including inside the 'moof' itself.
454 // (Since 'default-base-is-moof' is mandated, no data references can come
455 // before the head of the 'moof', so keeping this box around is sufficient.)
456 return !(*err);
457 } else {
458 VLOG(2) << "Skipping top-level box: " << FourCCToString(reader->type());
459 }
460
461 queue_.Pop(static_cast<int>(reader->size()));
462 return !(*err);
463}
464
465bool MP4MediaParser::ParseMoov(BoxReader* reader) {
466 if (moov_)
467 return true; // Already parsed the 'moov' box.
468
469 moov_.reset(new Movie);
470 RCHECK(moov_->Parse(reader));
471 runs_.reset();
472
473 std::vector<std::shared_ptr<StreamInfo>> streams;
474
475 bool use_dovi_supplemental =
476 absl::GetFlag(FLAGS_use_dovi_supplemental_codecs);
477
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;
481
482 // Calculate duration (based on 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, timescale);
490 } else if (moov_->header.duration > 0 &&
491 moov_->header.duration != std::numeric_limits<uint64_t>::max()) {
492 DCHECK(moov_->header.timescale != 0);
493 duration =
494 Rescale(moov_->header.duration, moov_->header.timescale, timescale);
495 }
496
497 const SampleDescription& samp_descr =
498 track->media.information.sample_table.description;
499
500 size_t desc_idx = 0;
501
502 // Read sample description index from mvex if it exists otherwise read
503 // from the first entry in Sample To Chunk box.
504 if (moov_->extends.tracks.size() > 0) {
505 for (size_t t = 0; t < moov_->extends.tracks.size(); t++) {
506 const TrackExtends& trex = moov_->extends.tracks[t];
507 if (trex.track_id == track->header.track_id) {
508 desc_idx = trex.default_sample_description_index;
509 break;
510 }
511 }
512 } else {
513 const std::vector<ChunkInfo>& chunk_info =
514 track->media.information.sample_table.sample_to_chunk.chunk_info;
515 RCHECK(chunk_info.size() > 0);
516 desc_idx = chunk_info[0].sample_description_index;
517 }
518 RCHECK(desc_idx > 0);
519 desc_idx -= 1; // BMFF descriptor index is one-based
520
521 if (samp_descr.type == kAudio) {
522 RCHECK(!samp_descr.audio_entries.empty());
523
524 // It is not uncommon to find otherwise-valid files with incorrect sample
525 // description indices, so we fail gracefully in that case.
526 if (desc_idx >= samp_descr.audio_entries.size())
527 desc_idx = 0;
528
529 const AudioSampleEntry& entry = samp_descr.audio_entries[desc_idx];
530 const FourCC actual_format = entry.GetActualFormat();
531 Codec codec = FourCCToCodec(actual_format);
532 uint8_t num_channels = entry.channelcount;
533 uint32_t sampling_frequency = entry.samplerate;
534 uint64_t codec_delay_ns = 0;
535 uint8_t audio_object_type = 0;
536 uint32_t max_bitrate = 0;
537 uint32_t avg_bitrate = 0;
538 std::vector<uint8_t> codec_config;
539
540 switch (actual_format) {
541 case FOURCC_mp4a: {
542 const DecoderConfigDescriptor& decoder_config =
543 entry.esds.es_descriptor.decoder_config_descriptor();
544 max_bitrate = decoder_config.max_bitrate();
545 avg_bitrate = decoder_config.avg_bitrate();
546
547 codec = ObjectTypeToCodec(decoder_config.object_type());
548 if (codec == kCodecAAC) {
549 const AACAudioSpecificConfig& aac_audio_specific_config =
550 entry.esds.aac_audio_specific_config;
551 num_channels = aac_audio_specific_config.GetNumChannels();
552 sampling_frequency =
553 aac_audio_specific_config.GetSamplesPerSecond();
554 audio_object_type = aac_audio_specific_config.GetAudioObjectType();
555 codec_config =
556 decoder_config.decoder_specific_info_descriptor().data();
557 } else if (codec == kUnknownCodec) {
558 // Intentionally not to fail in the parser as there may be multiple
559 // streams in the source content, which allows the supported stream
560 // to be packaged. An error will be returned if the unsupported
561 // stream is passed to the muxer.
562 LOG(WARNING) << "Unsupported audio object type "
563 << static_cast<int>(decoder_config.object_type())
564 << " in stsd.es_desriptor.";
565 }
566 break;
567 }
568 case FOURCC_dtsc:
569 FALLTHROUGH_INTENDED;
570 case FOURCC_dtse:
571 FALLTHROUGH_INTENDED;
572 case FOURCC_dtsh:
573 FALLTHROUGH_INTENDED;
574 case FOURCC_dtsl:
575 FALLTHROUGH_INTENDED;
576 case FOURCC_dtsm:
577 codec_config = entry.ddts.extra_data;
578 max_bitrate = entry.ddts.max_bitrate;
579 avg_bitrate = entry.ddts.avg_bitrate;
580 break;
581 case FOURCC_dtsx:
582 codec_config = entry.udts.data;
583 break;
584 case FOURCC_ac_3:
585 codec_config = entry.dac3.data;
586 num_channels = static_cast<uint8_t>(GetAc3NumChannels(codec_config));
587 break;
588 case FOURCC_ec_3:
589 codec_config = entry.dec3.data;
590 num_channels = static_cast<uint8_t>(GetEc3NumChannels(codec_config));
591 break;
592 case FOURCC_ac_4:
593 codec_config = entry.dac4.data;
594 // Stop the process if have errors when parsing AC-4 dac4 box,
595 // bitstream version 0 (has beed deprecated) and contains multiple
596 // presentations in single AC-4 stream (only used for broadcast).
597 if (!GetAc4CodecInfo(codec_config, &audio_object_type)) {
598 LOG(ERROR) << "Failed to parse dac4.";
599 return false;
600 }
601 break;
602 case FOURCC_alac:
603 codec_config = entry.alac.data;
604 break;
605 case FOURCC_fLaC:
606 codec_config = entry.dfla.data;
607 break;
608 case FOURCC_Opus:
609 codec_config = entry.dops.opus_identification_header;
610 codec_delay_ns =
611 entry.dops.preskip * kNanosecondsPerSecond / sampling_frequency;
612 break;
613 case FOURCC_iamf:
614 codec_config = entry.iacb.data;
615 if (!GetIamfCodecStringInfo(codec_config, audio_object_type)) {
616 LOG(ERROR) << "Failed to parse iamf.";
617 return false;
618 }
619 break;
620 case FOURCC_mha1:
621 case FOURCC_mhm1:
622 codec_config = entry.mhac.data;
623 audio_object_type = entry.mhac.mpeg_h_3da_profile_level_indication;
624 break;
625 default:
626 // Intentionally not to fail in the parser as there may be multiple
627 // streams in the source content, which allows the supported stream to
628 // be packaged.
629 // An error will be returned if the unsupported stream is passed to
630 // the muxer.
631 LOG(WARNING) << "Unsupported audio format '"
632 << FourCCToString(actual_format) << "' in stsd box.";
633 break;
634 }
635
636 // Extract possible seek preroll.
637 uint64_t seek_preroll_ns = 0;
638 for (const auto& sample_group_description :
639 track->media.information.sample_table.sample_group_descriptions) {
640 if (sample_group_description.grouping_type != FOURCC_roll)
641 continue;
642 const auto& audio_roll_recovery_entries =
643 sample_group_description.audio_roll_recovery_entries;
644 if (audio_roll_recovery_entries.size() != 1) {
645 LOG(WARNING) << "Unexpected number of entries in "
646 "SampleGroupDescription table with grouping type "
647 "'roll'.";
648 break;
649 }
650 const int16_t roll_distance_in_samples =
651 audio_roll_recovery_entries[0].roll_distance;
652 if (roll_distance_in_samples < 0) {
653 // IAMF requires the `samplerate` field to be set to 0.
654 // (https://aomediacodec.github.io/iamf/#iasampleentry-section)
655 if (actual_format == FOURCC_iamf)
656 continue;
657
658 RCHECK((sampling_frequency != 0));
659 seek_preroll_ns = kNanosecondsPerSecond *
660 (-roll_distance_in_samples) / sampling_frequency;
661 } else {
662 LOG(WARNING)
663 << "Roll distance is supposed to be negative, but seeing "
664 << roll_distance_in_samples;
665 }
666 break;
667 }
668
669 // The stream will be decrypted if a |decryptor_source_| is available.
670 const bool is_encrypted =
671 decryptor_source_
672 ? false
673 : entry.sinf.info.track_encryption.default_is_protected == 1;
674 DVLOG(1) << "is_audio_track_encrypted_: " << is_encrypted;
675 streams.emplace_back(new AudioStreamInfo(
676 track->header.track_id, timescale, duration, codec,
677 AudioStreamInfo::GetCodecString(codec, audio_object_type),
678 codec_config.data(), codec_config.size(), entry.samplesize,
679 num_channels, sampling_frequency, seek_preroll_ns, codec_delay_ns,
680 max_bitrate, avg_bitrate, track->media.header.language.code,
681 is_encrypted));
682 }
683
684 if (samp_descr.type == kVideo) {
685 RCHECK(!samp_descr.video_entries.empty());
686 if (desc_idx >= samp_descr.video_entries.size())
687 desc_idx = 0;
688 const VideoSampleEntry& entry = samp_descr.video_entries[desc_idx];
689 std::vector<uint8_t> codec_configuration_data =
690 entry.codec_configuration.data;
691
692 uint32_t coded_width = entry.width;
693 uint32_t coded_height = entry.height;
694 uint32_t pixel_width = entry.pixel_aspect.h_spacing;
695 uint32_t pixel_height = entry.pixel_aspect.v_spacing;
696 if (pixel_width == 0 && pixel_height == 0) {
697 DerivePixelWidthHeight(coded_width, coded_height, track->header.width,
698 track->header.height, &pixel_width,
699 &pixel_height);
700 }
701 std::string codec_string;
702 std::string dovi_supplemental_codec_string("");
703 FourCC dovi_compatible_brand = FOURCC_NULL;
704 uint8_t nalu_length_size = 0;
705 uint8_t transfer_characteristics = 0;
706 uint8_t color_primaries = 0;
707 uint8_t matrix_coefficients = 0;
708
709 const FourCC actual_format = entry.GetActualFormat();
710 const Codec video_codec = FourCCToCodec(actual_format);
711 switch (actual_format) {
712 case FOURCC_av01: {
713 AV1CodecConfigurationRecord av1_config;
714 if (!av1_config.Parse(codec_configuration_data)) {
715 LOG(ERROR) << "Failed to parse av1c.";
716 return false;
717 }
718 // Generate the full codec string if the colr atom is present.
719 if (entry.colr.color_parameter_type != FOURCC_NULL) {
720 transfer_characteristics = entry.colr.transfer_characteristics;
721 color_primaries = entry.colr.color_primaries;
722 matrix_coefficients = entry.colr.matrix_coefficients;
723 codec_string = av1_config.GetCodecString(
724 color_primaries, transfer_characteristics, matrix_coefficients,
725 entry.colr.video_full_range_flag);
726 } else {
727 codec_string = av1_config.GetCodecString();
728 }
729
730 if (!entry.extra_codec_configs.empty()) {
731 // |extra_codec_configs| is present only for Dolby Vision.
732 if (use_dovi_supplemental) {
733 if (!UpdateDolbyVisionInfo(
734 actual_format, entry.extra_codec_configs,
735 transfer_characteristics, &codec_string,
736 &dovi_supplemental_codec_string,
737 &dovi_compatible_brand)) {
738 return false;
739 }
740 } else {
741 if (!UpdateCodecStringForDolbyVision(actual_format,
742 entry.extra_codec_configs,
743 &codec_string)) {
744 return false;
745 }
746 }
747 }
748 break;
749 }
750 case FOURCC_avc1:
751 case FOURCC_avc3: {
752 AVCDecoderConfigurationRecord avc_config;
753 if (!avc_config.Parse(codec_configuration_data)) {
754 LOG(ERROR) << "Failed to parse avcc.";
755 return false;
756 }
757 codec_string = avc_config.GetCodecString(actual_format);
758 nalu_length_size = avc_config.nalu_length_size();
759 transfer_characteristics = avc_config.transfer_characteristics();
760 color_primaries = avc_config.color_primaries();
761 matrix_coefficients = avc_config.matrix_coefficients();
762
763 // Use configurations from |avc_config| if it is valid.
764 if (avc_config.coded_width() != 0) {
765 DCHECK_NE(avc_config.coded_height(), 0u);
766 if (coded_width != avc_config.coded_width() ||
767 coded_height != avc_config.coded_height()) {
768 LOG(WARNING) << "Resolution in VisualSampleEntry (" << coded_width
769 << "," << coded_height
770 << ") does not match with resolution in "
771 "AVCDecoderConfigurationRecord ("
772 << avc_config.coded_width() << ","
773 << avc_config.coded_height()
774 << "). Use AVCDecoderConfigurationRecord.";
775 coded_width = avc_config.coded_width();
776 coded_height = avc_config.coded_height();
777 }
778
779 DCHECK_NE(avc_config.pixel_width(), 0u);
780 DCHECK_NE(avc_config.pixel_height(), 0u);
781 if (pixel_width != avc_config.pixel_width() ||
782 pixel_height != avc_config.pixel_height()) {
783 LOG_IF(WARNING, pixel_width != 1 || pixel_height != 1)
784 << "Pixel aspect ratio in PASP box (" << pixel_width << ","
785 << pixel_height
786 << ") does not match with SAR in "
787 "AVCDecoderConfigurationRecord "
788 "("
789 << avc_config.pixel_width() << ","
790 << avc_config.pixel_height()
791 << "). Use AVCDecoderConfigurationRecord.";
792 pixel_width = avc_config.pixel_width();
793 pixel_height = avc_config.pixel_height();
794 }
795 }
796 break;
797 }
798 case FOURCC_dvh1:
799 case FOURCC_dvhe:
800 case FOURCC_hev1:
801 case FOURCC_hvc1: {
802 HEVCDecoderConfigurationRecord hevc_config;
803 if (!hevc_config.Parse(codec_configuration_data)) {
804 LOG(ERROR) << "Failed to parse hevc.";
805 return false;
806 }
807 codec_string = hevc_config.GetCodecString(actual_format);
808 nalu_length_size = hevc_config.nalu_length_size();
809 transfer_characteristics = hevc_config.transfer_characteristics();
810 color_primaries = hevc_config.color_primaries();
811 matrix_coefficients = hevc_config.matrix_coefficients();
812
813 if (!entry.extra_codec_configs.empty()) {
814 // |extra_codec_configs| is present for Dolby Vision and/or
815 // stereo MV-HEVC.
816 if (entry.HaveDolbyVisionConfig()) {
817 if (use_dovi_supplemental) {
818 if (!UpdateDolbyVisionInfo(
819 actual_format, entry.extra_codec_configs,
820 transfer_characteristics, &codec_string,
821 &dovi_supplemental_codec_string,
822 &dovi_compatible_brand)) {
823 return false;
824 }
825 } else {
826 if (!UpdateCodecStringForDolbyVision(actual_format,
827 entry.extra_codec_configs,
828 &codec_string)) {
829 return false;
830 }
831 }
832 }
833 if (entry.HaveLHEVCConfig()) {
834 if (!UpdateLHEVCInfo(actual_format, hevc_config,
835 entry.extra_codec_configs, &codec_string)) {
836 return false;
837 }
838 }
839 }
840 break;
841 }
842 case FOURCC_vp08:
843 case FOURCC_vp09: {
844 VPCodecConfigurationRecord vp_config;
845 if (!vp_config.ParseMP4(codec_configuration_data)) {
846 LOG(ERROR) << "Failed to parse vpcc.";
847 return false;
848 }
849 if (actual_format == FOURCC_vp09 &&
850 (!vp_config.is_level_set() || vp_config.level() == 0)) {
851 const double kUnknownSampleDuration = 0.0;
852 vp_config.SetVP9Level(coded_width, coded_height,
853 kUnknownSampleDuration);
854 vp_config.WriteMP4(&codec_configuration_data);
855 }
856 codec_string = vp_config.GetCodecString(video_codec);
857 break;
858 }
859 default:
860 // Intentionally not to fail in the parser as there may be multiple
861 // streams in the source content, which allows the supported stream to
862 // be packaged.
863 // An error will be returned if the unsupported stream is passed to
864 // the muxer.
865 LOG(WARNING) << "Unsupported video format '"
866 << FourCCToString(actual_format) << "' in stsd box.";
867 break;
868 }
869
870 // The stream will be decrypted if a |decryptor_source_| is available.
871 const bool is_encrypted =
872 decryptor_source_
873 ? false
874 : entry.sinf.info.track_encryption.default_is_protected == 1;
875 DVLOG(1) << "is_video_track_encrypted_: " << is_encrypted;
876 std::shared_ptr<VideoStreamInfo> video_stream_info(new VideoStreamInfo(
877 track->header.track_id, timescale, duration, video_codec,
878 GetH26xStreamFormat(actual_format), codec_string,
879 codec_configuration_data.data(), codec_configuration_data.size(),
880 coded_width, coded_height, pixel_width, pixel_height, color_primaries,
881 matrix_coefficients, transfer_characteristics,
882 0, // trick_play_factor
883 nalu_length_size, track->media.header.language.code, is_encrypted));
884
885 if (use_dovi_supplemental) {
886 video_stream_info->set_supplemental_codec(
887 dovi_supplemental_codec_string);
888 video_stream_info->set_compatible_brand(dovi_compatible_brand);
889 }
890 video_stream_info->set_layered_codec_config(
891 GetLHEVCDecoderConfig(entry.extra_codec_configs));
892 video_stream_info->set_extra_config(entry.ExtraCodecConfigsAsVector());
893 video_stream_info->set_colr_data((entry.colr.raw_box).data(),
894 (entry.colr.raw_box).size());
895
896 // Set pssh raw data if it has.
897 if (moov_->pssh.size() > 0) {
898 std::vector<uint8_t> pssh_raw_data;
899 for (const auto& pssh : moov_->pssh) {
900 pssh_raw_data.insert(pssh_raw_data.end(), pssh.raw_box.begin(),
901 pssh.raw_box.end());
902 }
903 video_stream_info->set_eme_init_data(pssh_raw_data.data(),
904 pssh_raw_data.size());
905 }
906
907 streams.push_back(video_stream_info);
908 }
909 }
910
911 init_cb_(streams);
912 if (!FetchKeysIfNecessary(moov_->pssh))
913 return false;
914 runs_.reset(new TrackRunIterator(moov_.get()));
915 RCHECK(runs_->Init());
916 ChangeState(kEmittingSamples);
917 return true;
918}
919
920bool MP4MediaParser::ParseMoof(BoxReader* reader) {
921 // Must already have initialization segment.
922 RCHECK(moov_.get());
923 MovieFragment moof;
924 RCHECK(moof.Parse(reader));
925 if (!runs_)
926 runs_.reset(new TrackRunIterator(moov_.get()));
927 RCHECK(runs_->Init(moof));
928 if (!FetchKeysIfNecessary(moof.pssh))
929 return false;
930 ChangeState(kEmittingSamples);
931 return true;
932}
933
934bool MP4MediaParser::FetchKeysIfNecessary(
935 const std::vector<ProtectionSystemSpecificHeader>& headers) {
936 if (headers.empty())
937 return true;
938
939 // An error will be returned later if the samples need to be decrypted.
940 if (!decryption_key_source_)
941 return true;
942
943 std::vector<uint8_t> pssh_raw_data;
944 for (const auto& header : headers) {
945 pssh_raw_data.insert(pssh_raw_data.end(), header.raw_box.begin(),
946 header.raw_box.end());
947 }
948 Status status =
949 decryption_key_source_->FetchKeys(EmeInitDataType::CENC, pssh_raw_data);
950 if (!status.ok()) {
951 LOG(ERROR) << "Error fetching decryption keys: " << status;
952 return false;
953 }
954 return true;
955}
956
957bool MP4MediaParser::EnqueueSample(bool* err) {
958 if (!runs_->IsRunValid()) {
959 // Remain in kEnqueueingSamples state, discarding data, until the end of
960 // the current 'mdat' box has been appended to the queue.
961 if (!queue_.Trim(mdat_tail_))
962 return false;
963
964 ChangeState(kParsingBoxes);
965 return true;
966 }
967
968 if (!runs_->IsSampleValid()) {
969 runs_->AdvanceRun();
970 return true;
971 }
972
973 DCHECK(!(*err));
974
975 const uint8_t* buf;
976 int buf_size;
977 queue_.Peek(&buf, &buf_size);
978 if (!buf_size)
979 return false;
980
981 // Skip this entire track if it is not audio nor video.
982 if (!runs_->is_audio() && !runs_->is_video())
983 runs_->AdvanceRun();
984
985 // Attempt to cache the auxiliary information first. Aux info is usually
986 // placed in a contiguous block before the sample data, rather than being
987 // interleaved. If we didn't cache it, this would require that we retain the
988 // start of the segment buffer while reading samples. Aux info is typically
989 // quite small compared to sample data, so this pattern is useful on
990 // memory-constrained devices where the source buffer consumes a substantial
991 // portion of the total system memory.
992 if (runs_->AuxInfoNeedsToBeCached()) {
993 queue_.PeekAt(runs_->aux_info_offset() + moof_head_, &buf, &buf_size);
994 if (buf_size < runs_->aux_info_size())
995 return false;
996 *err = !runs_->CacheAuxInfo(buf, buf_size);
997 return !*err;
998 }
999
1000 int64_t sample_offset = runs_->sample_offset() + moof_head_;
1001 queue_.PeekAt(sample_offset, &buf, &buf_size);
1002 if (buf_size < runs_->sample_size()) {
1003 if (sample_offset < queue_.head()) {
1004 LOG(ERROR) << "Incorrect sample offset " << sample_offset << " < "
1005 << queue_.head();
1006 *err = true;
1007 }
1008 return false;
1009 }
1010
1011 const uint8_t* media_data = buf;
1012 const size_t media_data_size = runs_->sample_size();
1013 // Use a dummy data size of 0 to avoid copying overhead.
1014 // Actual media data is set later.
1015 const size_t kDummyDataSize = 0;
1016 std::shared_ptr<MediaSample> stream_sample(
1017 MediaSample::CopyFrom(media_data, kDummyDataSize, runs_->is_keyframe()));
1018
1019 if (runs_->is_encrypted()) {
1020 std::shared_ptr<uint8_t> decrypted_media_data(
1021 new uint8_t[media_data_size], std::default_delete<uint8_t[]>());
1022 std::unique_ptr<DecryptConfig> decrypt_config = runs_->GetDecryptConfig();
1023 if (!decrypt_config) {
1024 *err = true;
1025 LOG(ERROR) << "Missing decrypt config.";
1026 return false;
1027 }
1028
1029 if (!decryptor_source_) {
1030 stream_sample->SetData(media_data, media_data_size);
1031 // If the demuxer does not have the decryptor_source_, store
1032 // decrypt_config so that the demuxed sample can be decrypted later.
1033 stream_sample->set_decrypt_config(std::move(decrypt_config));
1034 stream_sample->set_is_encrypted(true);
1035 } else {
1036 if (!decryptor_source_->DecryptSampleBuffer(decrypt_config.get(),
1037 media_data, media_data_size,
1038 decrypted_media_data.get())) {
1039 *err = true;
1040 LOG(ERROR) << "Cannot decrypt samples.";
1041 return false;
1042 }
1043 stream_sample->TransferData(std::move(decrypted_media_data),
1044 media_data_size);
1045 }
1046 } else {
1047 stream_sample->SetData(media_data, media_data_size);
1048 }
1049
1050 stream_sample->set_dts(runs_->dts());
1051 stream_sample->set_pts(runs_->cts());
1052 stream_sample->set_duration(runs_->duration());
1053
1054 DVLOG(3) << "Pushing frame: "
1055 << ", key=" << runs_->is_keyframe() << ", dur=" << runs_->duration()
1056 << ", dts=" << runs_->dts() << ", cts=" << runs_->cts()
1057 << ", size=" << runs_->sample_size();
1058
1059 if (!new_sample_cb_(runs_->track_id(), stream_sample)) {
1060 *err = true;
1061 LOG(ERROR) << "Failed to process the sample.";
1062 return false;
1063 }
1064
1065 runs_->AdvanceSample();
1066 return true;
1067}
1068
1069bool MP4MediaParser::ReadAndDiscardMDATsUntil(const int64_t offset) {
1070 bool err = false;
1071 while (mdat_tail_ < offset) {
1072 const uint8_t* buf;
1073 int size;
1074 queue_.PeekAt(mdat_tail_, &buf, &size);
1075
1076 FourCC type;
1077 uint64_t box_sz;
1078 if (!BoxReader::StartBox(buf, size, &type, &box_sz, &err))
1079 break;
1080
1081 mdat_tail_ += box_sz;
1082 }
1083 queue_.Trim(std::min(mdat_tail_, offset));
1084 return !err;
1085}
1086
1087void MP4MediaParser::ChangeState(State new_state) {
1088 DVLOG(2) << "Changing state: " << new_state;
1089 state_ = new_state;
1090}
1091
1092} // namespace mp4
1093} // namespace media
1094} // namespace shaka
DecryptorSource wraps KeySource and is responsible for decryptor management.
KeySource is responsible for encryption key acquisition.
Definition key_source.h:53
std::function< bool(uint32_t track_id, std::shared_ptr< MediaSample > media_sample)> NewMediaSampleCB
std::function< bool(uint32_t track_id, std::shared_ptr< TextSample > text_sample)> NewTextSampleCB
std::function< void(const std::vector< std::shared_ptr< StreamInfo > > &stream_info)> InitCB
All the methods that are virtual are virtual for mocking.