From 034921e5910c5c8cf65e422ec85dfed638341df4 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 3 Feb 2026 18:11:35 +0100 Subject: [PATCH] mov: add missing call to (re)initialise CTTS map search in fragmented MP4 --- nihav-commonfmt/src/demuxers/mov.rs | 1 + 1 file changed, 1 insertion(+) 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) } -- 2.39.5