This reverts commit a793748743584686d212b5b513415da3c46db38f. Not necessary, there's a better fix with 77fbfbe5c68a631.
@@ -588,8 +588,7 @@ static bool init_encoder_base(struct nvenc_data *enc, obs_data_t *settings,
config->gopLength = gop_size;
config->frameIntervalP = 1 + bf;
- int32_t max_bf = (int32_t)nv_get_cap(enc, NV_ENC_CAPS_NUM_MAX_BFRAMES);
- enc->bframes = bf <= max_bf ? bf : max_bf;
+ enc->bframes = bf;
/* lookahead */
const bool use_profile_lookahead = config->rcParams.enableLookahead;