From: Kostya Shishkov Date: Sat, 22 Mar 2025 15:00:47 +0000 (+0100) Subject: do not attempt to synchronise packets when some of them lack timestamps X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=24a65c00910f45ee79faac24aba59299aa630694;p=nihav-encoder.git do not attempt to synchronise packets when some of them lack timestamps --- 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()