mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-05-01 06:13:08 +08: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