diff options
author | wm4 <wm4@nowhere> | 2012-10-03 16:50:13 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2012-10-16 07:26:31 +0200 |
commit | cf61928eecd87ba29324e501a3e4a0efde25d874 (patch) | |
tree | 4f796caef4fb3a15f0ffa89d6b4c9d94c8cd0fe3 /cfg-mplayer.h | |
parent | 466fc6d4d18ac1751527ccfff8f3c39eb3ff1e4b (diff) | |
download | mpv-cf61928eecd87ba29324e501a3e4a0efde25d874.tar.bz2 mpv-cf61928eecd87ba29324e501a3e4a0efde25d874.tar.xz |
vo_gl, options: remove doublebuffering option (--double)
Useless. It complicated the code and caused flicker, and was useless
otherwise. The manpage describes this option as "should not normally
be used".
One possibly useful effect from the point of view of the user was that
vsync was disabled. You can do this with the --vsync option, or by
changing X/driver settings directly.
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r-- | cfg-mplayer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h index 775963a879..f84a2afb96 100644 --- a/cfg-mplayer.h +++ b/cfg-mplayer.h @@ -629,7 +629,6 @@ const m_option_t mplayer_opts[]={ OPT_INTRANGE("bpp", vo_dbpp, 0, 0, 32), {"colorkey", &vo_colorkey, CONF_TYPE_INT, 0, 0, 0, NULL}, {"no-colorkey", &vo_colorkey, CONF_TYPE_FLAG, 0, 0, 0x1000000, NULL}, - {"double", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1, NULL}, // wait for v-sync (gl) {"vsync", &vo_vsync, CONF_TYPE_FLAG, 0, 0, 1, NULL}, {"panscan", &vo_panscan, CONF_TYPE_FLOAT, CONF_RANGE, -1.0, 1.0, NULL}, |