0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Experimental negative panscan values

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23897 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-07-28 22:46:10 +00:00
parent e94b93b2c4
commit 7c047631b1
2 changed files with 5 additions and 1 deletions

View File

@ -2956,6 +2956,10 @@ movie to make it fit a 4:3 display without black bands).
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)

View File

@ -233,7 +233,7 @@ m_option_t mplayer_opts[]={
// 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},