Enable 15bpp on server

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4541 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nick 2002-02-05 18:54:41 +00:00
parent 9c8f46a107
commit 845228dd69
1 changed files with 1 additions and 0 deletions

View File

@ -504,6 +504,7 @@ int vidix_init(unsigned src_width,unsigned src_height,
case 4: err = ((vidix_fourcc.depth & VID_DEPTH_4BPP) != VID_DEPTH_4BPP); break;
case 8: err = ((vidix_fourcc.depth & VID_DEPTH_8BPP) != VID_DEPTH_8BPP); break;
case 12:err = ((vidix_fourcc.depth & VID_DEPTH_12BPP) != VID_DEPTH_12BPP); break;
case 15:err = ((vidix_fourcc.depth & VID_DEPTH_15BPP) != VID_DEPTH_15BPP); break;
case 16:err = ((vidix_fourcc.depth & VID_DEPTH_16BPP) != VID_DEPTH_16BPP); break;
case 24:err = ((vidix_fourcc.depth & VID_DEPTH_24BPP) != VID_DEPTH_24BPP); break;
case 32:err = ((vidix_fourcc.depth & VID_DEPTH_32BPP) != VID_DEPTH_32BPP); break;