Revert "obs-ffmpeg: Check nvenc max bframe count"

This reverts commit a793748743.

Not necessary, there's a better fix with 77fbfbe5c6.
This commit is contained in:
jp9000
2022-11-01 15:25:57 -07:00
parent f405647419
commit a1235f498e

View File

@@ -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;