fix(video): restore the ability to set a minimum fps target (#4114)

This commit is contained in:
Andy Grundman
2025-07-29 23:12:16 -04:00
committed by GitHub
parent 99cf9ac960
commit b3ee60d422
7 changed files with 50 additions and 10 deletions

View File

@@ -504,7 +504,8 @@ namespace config {
{} // wa
}, // display_device
0 // max_bitrate
0, // max_bitrate
0 // minimum_fps_target (0 = framerate)
};
audio_t audio {
@@ -1146,6 +1147,7 @@ namespace config {
}
int_f(vars, "max_bitrate", video.max_bitrate);
double_between_f(vars, "minimum_fps_target", video.minimum_fps_target, {0.0, 1000.0});
path_f(vars, "pkey", nvhttp.pkey);
path_f(vars, "cert", nvhttp.cert);