Skip to content

Commit

Permalink
obs-nvenc: Force at least 4 b-frames when using UHQ tune
Browse files Browse the repository at this point in the history
  • Loading branch information
derrod authored and RytoEX committed Oct 21, 2024
1 parent 0721027 commit e8968ba
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions plugins/obs-nvenc/nvenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,14 @@ static bool init_encoder_base(struct nvenc_data *enc, obs_data_t *settings)

initialize_params(enc, &nv_preset, nv_tuning, voi->width, voi->height, voi->fps_num, voi->fps_den);

#ifdef NVENC_12_2_OR_LATER
/* Force at least 4 b-frames when using the UHQ tune */
if (nv_tuning == NV_ENC_TUNING_INFO_ULTRA_HIGH_QUALITY && enc->props.bf < 4) {
warn("Forcing number of b-frames to 4 for UHQ tune.");
enc->props.bf = 4;
}
#endif

config->gopLength = gop_size;
config->frameIntervalP = gop_size == 1 ? 0 : (int32_t)enc->props.bf + 1;

Expand Down

0 comments on commit e8968ba

Please sign in to comment.