[MPlayer-DOCS] r31331 - in trunk: DOCS/man/en/mplayer.1 libmpcodecs/vf_format.c

reimar subversion at mplayerhq.hu
Sat Jun 5 19:55:20 CEST 2010


Author: reimar
Date: Sat Jun  5 19:55:20 2010
New Revision: 31331

Log:
Extend -vf format to allow substituting the format for a compatible one
(e.g. chaning rgb24 to bgr24).

Modified:
   trunk/DOCS/man/en/mplayer.1

Changes in other areas also in this revision:
Modified:
   trunk/libmpcodecs/vf_format.c

Modified: trunk/DOCS/man/en/mplayer.1
==============================================================================
--- trunk/DOCS/man/en/mplayer.1	Sat Jun  5 19:45:35 2010	(r31330)
+++ trunk/DOCS/man/en/mplayer.1	Sat Jun  5 19:55:20 2010	(r31331)
@@ -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 form
 .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
 .


More information about the MPlayer-DOCS mailing list