Mercurial > mplayer.hg
changeset 5865:f4b470b66a99
update: we use the new quantizer in libavcodec, -zrquality 1 is allowed
author | rik |
---|---|
date | Sat, 27 Apr 2002 18:24:12 +0000 |
parents | 34b27da59eaf |
children | 0f5f626e5151 |
files | libvo/vo_zr.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/vo_zr.c Sat Apr 27 18:22:52 2002 +0000 +++ b/libvo/vo_zr.c Sat Apr 27 18:24:12 2002 +0000 @@ -626,7 +626,7 @@ 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 @@ " 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"