summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorRobert Swain <robert.swain@gmail.com>2005-12-29 07:24:23 +0000
committerLoren Merritt <lorenm@u.washington.edu>2005-12-29 07:24:23 +0000
commit58f7833e8e5972e5021319ae26b5a82d01a11be7 (patch)
treef43aec2c2c0cd688906da001b746dd8fd24a0aab /ffmpeg.c
parentd6f41eeddc4862fd92aecd9cb853c3cf6724f676 (diff)
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.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index ab12bfdce4..0287a15700 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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);
}
}