From: Kostya Shishkov Date: Tue, 3 Feb 2026 17:11:35 +0000 (+0100) Subject: mov: add missing call to (re)initialise CTTS map search in fragmented MP4 X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=034921e5910c5c8cf65e422ec85dfed638341df4;p=nihav.git mov: add missing call to (re)initialise CTTS map search in fragmented MP4 --- diff --git a/nihav-commonfmt/src/demuxers/mov.rs b/nihav-commonfmt/src/demuxers/mov.rs index a1e2882..b57a284 100644 --- a/nihav-commonfmt/src/demuxers/mov.rs +++ b/nihav-commonfmt/src/demuxers/mov.rs @@ -1146,6 +1146,7 @@ fn read_trun(track: &mut Track, br: &mut dyn ByteIO, size: u64) -> DemuxerResult } } } + track.ctts_map.reset(); Ok(size) }