From 24a65c00910f45ee79faac24aba59299aa630694 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sat, 22 Mar 2025 16:00:47 +0100 Subject: [PATCH] do not attempt to synchronise packets when some of them lack timestamps --- src/transcoder.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/transcoder.rs b/src/transcoder.rs index b11ba12..bf054f2 100644 --- a/src/transcoder.rs +++ b/src/transcoder.rs @@ -354,7 +354,12 @@ impl OutputQueue { all_with_time = false; } } - if all_with_time && min_ts.is_some() { + if !all_with_time { + println!("Some packets do not have time set, synchronisation is not possible!"); + self.sync = false; + return self.get_last_packet(); + } + if min_ts.is_some() { self.packets[min_sn].pop_front() } else { self.get_last_packet() -- 2.39.5