summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/en/mplayer.12
-rw-r--r--libvo/vo_gl.c4
2 files changed, 2 insertions, 4 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1
index 4192c15946..24172907f6 100644
--- a/DOCS/man/en/mplayer.1
+++ b/DOCS/man/en/mplayer.1
@@ -3506,7 +3506,7 @@ Slower but in some cases more correct output (default: disabled).
Enables support for more (RGB and BGR) color formats (default: enabled).
Needs OpenGL version >= 1.2.
.IPs slice-height=<0\-...>
-Number of lines copied to texture in one piece (default: 4).
+Number of lines copied to texture in one piece (default: 0).
0 for whole image.
.br
.I NOTE:
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index cac6e55079..3007b93021 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -808,7 +808,7 @@ static int preinit(const char *arg)
use_rectangle = 0;
use_glFinish = 0;
swap_interval = 1;
- slice_height = -1;
+ slice_height = 0;
custom_prog = NULL;
custom_tex = NULL;
custom_tlin = 1;
@@ -868,8 +868,6 @@ static int preinit(const char *arg)
gl_target = GL_TEXTURE_RECTANGLE;
else
gl_target = GL_TEXTURE_2D;
- if (slice_height == -1)
- slice_height = use_yuv ? 16 : 4;
yuvconvtype = use_yuv | lscale << YUV_LUM_SCALER_SHIFT | cscale << YUV_CHROM_SCALER_SHIFT;
if (many_fmts)
mp_msg (MSGT_VO, MSGL_INFO, "[gl] using extended formats. "