]> git.nihav.org Git - nihav.git/commitdiff
mov: add missing call to (re)initialise CTTS map search in fragmented MP4
authorKostya Shishkov <kostya.shishkov@gmail.com>
Tue, 3 Feb 2026 17:11:35 +0000 (18:11 +0100)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Tue, 3 Feb 2026 17:40:02 +0000 (18:40 +0100)
nihav-commonfmt/src/demuxers/mov.rs

index a1e2882bb4a8ac3742c3a460958a14c85c66aea7..b57a284f41f5865e0429756ceaff7947f506e935 100644 (file)
@@ -1146,6 +1146,7 @@ fn read_trun(track: &mut Track, br: &mut dyn ByteIO, size: u64) -> DemuxerResult
             }
         }
     }
+    track.ctts_map.reset();
 
     Ok(size)
 }