mirror of
https://github.com/alfg/mp4-rust.git
synced 2024-12-22 03:56:28 +00:00
fix(read_header): find correct default sample duration
This commit is contained in:
parent
11dbf72d7c
commit
b3ba12433e
1 changed files with 11 additions and 13 deletions
|
@ -97,23 +97,21 @@ impl<R: Read + Seek> Mp4Reader<R> {
|
|||
|
||||
// Update tracks if any fragmented (moof) boxes are found.
|
||||
if !moofs.is_empty() {
|
||||
let mut default_sample_duration = 0;
|
||||
if let Some(ref moov) = moov {
|
||||
if let Some(ref mvex) = &moov.mvex {
|
||||
// todo: do this better. matches the original behavior before mvex.trex was changed to an array.
|
||||
default_sample_duration = mvex
|
||||
.trex
|
||||
.first()
|
||||
.map(|x| x.default_sample_duration)
|
||||
.unwrap_or(0)
|
||||
}
|
||||
}
|
||||
|
||||
for (moof, moof_offset) in moofs.iter().zip(moof_offsets) {
|
||||
for traf in moof.trafs.iter() {
|
||||
let track_id = traf.tfhd.track_id;
|
||||
if let Some(track) = tracks.get_mut(&track_id) {
|
||||
track.default_sample_duration = default_sample_duration;
|
||||
track.default_sample_duration = moov
|
||||
.as_ref()
|
||||
.and_then(|moov| {
|
||||
moov.mvex.as_ref().and_then(|mvex| {
|
||||
mvex.trex
|
||||
.iter()
|
||||
.find(|trex| trex.track_id == track.track_id())
|
||||
.map(|trex| trex.default_sample_duration)
|
||||
})
|
||||
})
|
||||
.unwrap_or(0);
|
||||
track.moof_offsets.push(moof_offset);
|
||||
track.trafs.push(traf.clone())
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue