1
mirror of https://github.com/mpv-player/mpv synced 2024-11-18 21:16:10 +01:00

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
This commit is contained in:
rik 2002-04-27 18:24:12 +00:00
parent 6220f2b8cc
commit e8793e8c86

View File

@ -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"