Use slice-height 16 as default for yuv colorspaces (only relevant if decoder

does not support slice rendering).


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17028 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2005-11-22 16:18:34 +00:00
parent fc2831619d
commit 57bd6e2d5b
1 changed files with 3 additions and 1 deletions

View File

@ -711,7 +711,7 @@ static int preinit(const char *arg)
use_rectangle = 0;
use_glFinish = 0;
swap_interval = 1;
slice_height = 4;
slice_height = -1;
custom_prog = NULL;
custom_tex = NULL;
custom_tlin = 1;
@ -758,6 +758,8 @@ 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;
if (many_fmts)
mp_msg (MSGT_VO, MSGL_INFO, "[gl] using extended formats. "
"Use -vo gl:nomanyfmts if playback fails.\n");