obs-ffmpeg, obs-qsv11: Disable dynamic bitrate support
Unfortunately these encoders tend to crash or freeze after after multiple bitrate changes. Users with dynamic bitrate enabled experience a random encoder freeze which manifests as OBS dropping to 0kb/sec and disconnecting and it's not at all obvious that dynamic bitrate is the cause. Disable it for now until we can figure out if there is any workaround or bug on our end.
This commit is contained in:
@@ -661,8 +661,6 @@ struct obs_encoder_info nvenc_encoder_info = {
|
||||
.get_sei_data = nvenc_sei_data,
|
||||
.get_video_info = nvenc_video_info,
|
||||
#ifdef _WIN32
|
||||
.caps = OBS_ENCODER_CAP_DYN_BITRATE | OBS_ENCODER_CAP_INTERNAL,
|
||||
#else
|
||||
.caps = OBS_ENCODER_CAP_DYN_BITRATE,
|
||||
.caps = OBS_ENCODER_CAP_INTERNAL,
|
||||
#endif
|
||||
};
|
||||
|
Reference in New Issue
Block a user