diff options
author | Robert Swain <robert.swain@gmail.com> | 2005-12-29 07:24:23 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2005-12-29 07:24:23 +0000 |
commit | 58f7833e8e5972e5021319ae26b5a82d01a11be7 (patch) | |
tree | f43aec2c2c0cd688906da001b746dd8fd24a0aab /ffmpeg.c | |
parent | d6f41eeddc4862fd92aecd9cb853c3cf6724f676 (diff) | |
download | ffmpeg-58f7833e8e5972e5021319ae26b5a82d01a11be7.tar.gz |
update x264 wrapper.
patch by Robert Swain.
Originally committed as revision 4784 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2531,8 +2531,8 @@ static void opt_qmin(const char *arg) { video_qmin = atoi(arg); if (video_qmin < 1 || - video_qmin > 31) { - fprintf(stderr, "qmin must be >= 1 and <= 31\n"); + video_qmin > 51) { + fprintf(stderr, "qmin must be >= 1 and <= 51\n"); exit(1); } } @@ -2541,8 +2541,8 @@ static void opt_qmax(const char *arg) { video_qmax = atoi(arg); if (video_qmax < 1 || - video_qmax > 31) { - fprintf(stderr, "qmax must be >= 1 and <= 31\n"); + video_qmax > 51) { + fprintf(stderr, "qmax must be >= 1 and <= 51\n"); exit(1); } } |