diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-06-05 17:55:20 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-06-05 17:55:20 +0000 |
commit | 7e9ff557a03e16f2a8c1ce4cf4a8786878835b88 (patch) | |
tree | 205f5615dfbfb885bc6d4453b72035918efc45b9 /DOCS | |
parent | 1689c3422f1ce4557cfaa184827d9a1c0962b5ea (diff) | |
download | mpv-7e9ff557a03e16f2a8c1ce4cf4a8786878835b88.tar.bz2 mpv-7e9ff557a03e16f2a8c1ce4cf4a8786878835b88.tar.xz |
Extend -vf format to allow substituting the format for a compatible one
(e.g. chaning rgb24 to bgr24).
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31331 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r-- | DOCS/man/en/mplayer.1 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1 index 6238b1f3b2..fe11e783f5 100644 --- a/DOCS/man/en/mplayer.1 +++ b/DOCS/man/en/mplayer.1 @@ -6101,7 +6101,7 @@ Also perform R <\-> B swapping. RGB/BGR 8 \-> 15/16/24/32bpp colorspace conversion using palette. . .TP -.B format[=fourcc] +.B format[=fourcc[:outfourcc]] Restricts the colorspace for the next filter without doing any conversion. Use together with the scale filter for a real conversion. .br @@ -6111,6 +6111,17 @@ For a list of available formats see format=fmt=help. .RSs .IPs <fourcc> format name like rgb15, bgr24, yv12, etc (default: yuy2) +.IPs <outfourcc> +Format name that should be substituted for the output. +If this is not 100% compatible with the <fourcc> value it will crash. +.br +Valid examples: +.br +format=rgb24:bgr24 format=yuyv:yuy2 +.br +Invalid examples (will crash): +.br +format=rgb24:yv12 .RE .PD 1 . |