# HG changeset patch # User reimar # Date 1185662770 0 # Node ID f3db21f1963b9c494316a9972ca24a6070aab1fe # Parent b38974c30ed6f5ca4174a2f0e260f7312dba4cba Experimental negative panscan values diff -r b38974c30ed6 -r f3db21f1963b DOCS/man/en/mplayer.1 --- a/DOCS/man/en/mplayer.1 Sat Jul 28 22:42:20 2007 +0000 +++ b/DOCS/man/en/mplayer.1 Sat Jul 28 22:46:10 2007 +0000 @@ -2956,6 +2956,10 @@ The range controls how much of the image is cropped. Only works with the xv, xmga, mga, gl, gl2, quartz, macosx and xvidix video output drivers. +.br +.I NOTE: +Values between -1 and 0 are allowed as well, but highly experimental +and may crash or worse. Use at your own risk! . .TP .B \-panscanrange <-19.0\-99.0> (experimental) diff -r b38974c30ed6 -r f3db21f1963b cfg-mplayer.h --- a/cfg-mplayer.h Sat Jul 28 22:42:20 2007 +0000 +++ b/cfg-mplayer.h Sat Jul 28 22:46:10 2007 +0000 @@ -233,7 +233,7 @@ // wait for v-sync (vesa) {"vsync", &vo_vsync, CONF_TYPE_FLAG, 0, 0, 1, NULL}, {"novsync", &vo_vsync, CONF_TYPE_FLAG, 0, 1, 0, NULL}, - {"panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, 0.0, 1.0, NULL}, + {"panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, {"panscanrange", &vo_panscanrange, CONF_TYPE_FLOAT, CONF_RANGE, -19.0, 99.0, NULL}, {"grabpointer", &vo_grabpointer, CONF_TYPE_FLAG, 0, 0, 1, NULL},