mirror of
https://github.com/mpv-player/mpv
synced 2025-01-18 13:14:36 +00:00
Use American spelling of "gray" instead for British's "grey" for XviD option, while keeping backward compatibility
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20265 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e9f17bbc18
commit
087b6f4c1b
@ -8601,8 +8601,8 @@ This seems to be mandatory only for old versions of DivX's decoder.
|
||||
As of XviD-1.0.x, this option is replaced by the closed_gop option.
|
||||
.
|
||||
.TP
|
||||
.B (no)greyscale
|
||||
Make XviD discard chroma planes so the encoded video is greyscale only.
|
||||
.B (no)grayscale
|
||||
Make XviD discard chroma planes so the encoded video is grayscale only.
|
||||
Note that this does not speed up encoding, it just prevents chroma data
|
||||
from being written in the last stage of encoding.
|
||||
.
|
||||
@ -8737,7 +8737,7 @@ It will improve quality at the cost of encoding speed.
|
||||
It reduces PSNR by nature, as the mathematical deviation to the original
|
||||
picture will get bigger, but the subjective image quality will raise.
|
||||
Since it works with color information, you might want to turn it off when
|
||||
encoding in greyscale.
|
||||
encoding in grayscale.
|
||||
.
|
||||
.TP
|
||||
.B (no)hq_ac
|
||||
|
@ -9068,7 +9068,7 @@ Ceci ne semble n
|
||||
closed_gop.
|
||||
.
|
||||
.TP
|
||||
.B (no)greyscale
|
||||
.B (no)grayscale
|
||||
Indique à XviD de ne pas enregistrer l'information de chroma pour que la
|
||||
vidéo produite ne soit qu'en noir & blanc.
|
||||
Notez que cela ne changera en rien le temps de compression, cela évitera juste
|
||||
|
@ -331,7 +331,8 @@ m_option_t xvidencopts_conf[] =
|
||||
{"nohq_ac", &xvidenc_hqacpred, CONF_TYPE_FLAG, 0, 1, 0, NULL},
|
||||
{"frame_drop_ratio", &xvidenc_frame_drop_ratio, CONF_TYPE_INT, CONF_RANGE, 0, 100, NULL},
|
||||
{"max_key_interval", &xvidenc_max_key_interval, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
|
||||
{"greyscale", &xvidenc_greyscale, CONF_TYPE_FLAG, 0, 0, 1, NULL},
|
||||
{"greyscale", &xvidenc_greyscale, CONF_TYPE_FLAG, 0, 0, 1, NULL}, /* kept for backward compatibility */
|
||||
{"grayscale", &xvidenc_greyscale, CONF_TYPE_FLAG, 0, 0, 1, NULL},
|
||||
{"nogreyscale", &xvidenc_greyscale, CONF_TYPE_FLAG, 0, 1, 0, NULL},
|
||||
{"lumi_mask", &xvidenc_luminance_masking, CONF_TYPE_FLAG, 0, 0, 1, NULL},
|
||||
{"nolumi_mask", &xvidenc_luminance_masking, CONF_TYPE_FLAG, 0, 1, 0, NULL},
|
||||
|
Loading…
Reference in New Issue
Block a user