From: Kostya Shishkov Date: Thu, 20 Mar 2025 17:09:14 +0000 (+0100) Subject: do not try to fill too large gaps in CFR mode X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=407a9a82b7234b8e2a444818c1ddbb9855280c4b;p=nihav-encoder.git do not try to fill too large gaps in CFR mode --- diff --git a/src/transcoder.rs b/src/transcoder.rs index cee575f..786aedf 100644 --- a/src/transcoder.rs +++ b/src/transcoder.rs @@ -243,6 +243,10 @@ impl EncoderInterface for VideoEncodeContext { let mut cur_lts = *last_ts; let mut next_lts = *last_ts + u64::from(self.tb_num); let mut had_frame = false; + if cur_ts > cur_lts && (cur_ts - cur_lts) / u64::from(self.tb_den) > 16 { + println!("Gap over 16 seconds between consequent frames, that's too much"); + return Err(EncoderError::AllocError); + } while cur_ts >= cur_lts { cfrm.ts.pts = Some(cur_lts); self.encoder.encode(&cfrm)?;