diff options
author | rik <rik@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-04-27 18:24:12 +0000 |
---|---|---|
committer | rik <rik@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-04-27 18:24:12 +0000 |
commit | e8793e8c86a56a730485bf6547c0b20142b6cc98 (patch) | |
tree | 77b225a5ce6195ad05201f010e27521529b39513 | |
parent | 6220f2b8cc1a222da48f9c43cc08a01cecb68235 (diff) |
update: we use the new quantizer in libavcodec, -zrquality 1 is allowed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5866 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/vo_zr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_zr.c b/libvo/vo_zr.c index 156bdb95c5..13f7618a70 100644 --- a/libvo/vo_zr.c +++ b/libvo/vo_zr.c @@ -626,7 +626,7 @@ vo_zr_parseoption(struct config * conf, char *opt, char *param){ return 1; }else if (!strcasecmp(opt, "zrquality")) { i = atoi(param); - if (i < 2 || i > 20) return ERR_OUT_OF_RANGE; + if (i < 1 || i > 20) return ERR_OUT_OF_RANGE; quality = i; return 1; }else if (!strcasecmp(opt, "zrnorm")) { @@ -658,7 +658,7 @@ vo_zr_parseoption(struct config * conf, char *opt, char *param){ " this switch allows you to see the effects\n" " of too much decimation\n" " -zrbw display in black&white (speed increase)\n" - " -zrquality jpeg compression quality [BEST] 2 - 20 [VERY BAD]\n" + " -zrquality jpeg compression quality [BEST] 1 - 20 [VERY BAD]\n" " -zrdev playback device (example -zrdev /dev/video1\n" " -zrnorm specify norm PAL/NTSC [dev: leave at current setting]\n" "\n" |