You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36:51 +02:00
avcodec/nvenc: only enforce explicitly set twopass mode
This commit is contained in:
@@ -900,7 +900,7 @@ static av_cold void nvenc_setup_rate_control(AVCodecContext *avctx)
|
||||
|
||||
if (ctx->flags & NVENC_ONE_PASS)
|
||||
ctx->encode_config.rcParams.multiPass = NV_ENC_MULTI_PASS_DISABLED;
|
||||
if (ctx->flags & NVENC_TWO_PASSES || ctx->twopass)
|
||||
if (ctx->flags & NVENC_TWO_PASSES || ctx->twopass > 0)
|
||||
ctx->encode_config.rcParams.multiPass = NV_ENC_TWO_PASS_FULL_RESOLUTION;
|
||||
|
||||
if (ctx->rc < 0) {
|
||||
|
Reference in New Issue
Block a user