From: Kostya Shishkov Date: Wed, 19 Mar 2025 17:35:18 +0000 (+0100) Subject: error out on too large constant framerate X-Git-Url: https://git.nihav.org/?a=commitdiff_plain;h=fa689e3b74caa09aafccf4d69fa1b956b20470db;p=nihav-encoder.git error out on too large constant framerate --- diff --git a/src/transcoder.rs b/src/transcoder.rs index 78e6296..ad2a096 100644 --- a/src/transcoder.rs +++ b/src/transcoder.rs @@ -796,6 +796,10 @@ impl Transcoder { let enc_ctx: Box = match (&iformat, &real_fmt) { (NACodecTypeInfo::Video(svinfo), NACodecTypeInfo::Video(dvinfo)) => { let force_cfr = self.fixed_rate || (ret_eparams.flags & ENC_MODE_CFR) != 0; + if force_cfr && enc_stream.tb_den / enc_stream.tb_num > 120 { + println!("Timebase {}/{} is too much for constant framerate!", enc_stream.tb_num, enc_stream.tb_den); + return RegisterResult::Failed; + } if svinfo == dvinfo && !forced_out { Box::new(VideoEncodeContext { encoder, @@ -895,6 +899,10 @@ println!("encoder {} is not supported by output (expected {})", istr.id, istr.ge let enc_ctx: Box = match (&oopts.enc_params.format, &real_fmt) { (NACodecTypeInfo::Video(svinfo), NACodecTypeInfo::Video(dvinfo)) => { let force_cfr = self.fixed_rate || (ret_eparams.flags & ENC_MODE_CFR) != 0; + if force_cfr && enc_stream.tb_den / enc_stream.tb_num > 120 { + println!("Timebase {}/{} is too much for constant framerate!", enc_stream.tb_num, enc_stream.tb_den); + return RegisterResult::Failed; + } if svinfo == dvinfo { Box::new(VideoEncodeContext { encoder,