From 58f7833e8e5972e5021319ae26b5a82d01a11be7 Mon Sep 17 00:00:00 2001 From: Robert Swain Date: Thu, 29 Dec 2005 07:24:23 +0000 Subject: update x264 wrapper. patch by Robert Swain. Originally committed as revision 4784 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffmpeg.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ffmpeg.c') 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); } } -- cgit v1.2.3