obs-ffmpeg: Increase upper NVENC bitrate limit

The bitrate for the properties was capped at 90000, which is a bit low.
master
jp9000 2016-05-04 20:31:12 -07:00
parent 2741624fbe
commit ff38176c60
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ static obs_properties_t *nvenc_properties(void *unused)
obs_property_t *p;
obs_properties_add_int(props, "bitrate",
obs_module_text("Bitrate"), 50, 90000, 50);
obs_module_text("Bitrate"), 50, 300000, 50);
obs_properties_add_int(props, "keyint_sec",
obs_module_text("KeyframeIntervalSec"), 0, 10, 1);