diff options
author | John Stebbins <[email protected]> | 2016-03-05 15:42:01 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2016-03-05 15:42:01 -0700 |
commit | c70164206ec34815c2565f34749493e056975c74 (patch) | |
tree | 35c7d15b27481ee5450893623644d2792279a696 | |
parent | ba2f812eaad757ba5c8b726265fc8b5d47821a8a (diff) |
cli: fix constant framerate
-rw-r--r-- | test/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c index 47bdbe417..9cf49bbf2 100644 --- a/test/test.c +++ b/test/test.c @@ -2244,7 +2244,7 @@ static int ParseOptions( int argc, char ** argv ) case 'r': { vrate = strdup(optarg); - if ( cfr != 2 ) + if ( cfr != 1 && cfr != 2 ) { cfr = 2; } |