increase permissible frame rate range to 1..60 FPS
This commit is contained in:
parent
f8e44a59c3
commit
bea15ca01f
|
@ -189,7 +189,7 @@ int parse_args(settings_t* settings, int argc, char** argv) {
|
|||
return -1;
|
||||
}
|
||||
i = settings->video_fps_num / settings->video_fps_den;
|
||||
if (i < 1 || i > 30) {
|
||||
if (i < 1 || i > 60) {
|
||||
fprintf(stderr, "Invalid frame rate: %d/%d\n", settings->video_fps_num, settings->video_fps_den);
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue