# HG changeset patch # User nick # Date 1012935281 0 # Node ID cb255a42aa5e02648c8ea11d45b91ab9181390ec # Parent fcd6e49cb3cc8678203c3379e4eb4a08d1f82b69 Enable 15bpp on server diff -r fcd6e49cb3cc -r cb255a42aa5e libvo/vosub_vidix.c --- a/libvo/vosub_vidix.c Tue Feb 05 18:51:37 2002 +0000 +++ b/libvo/vosub_vidix.c Tue Feb 05 18:54:41 2002 +0000 @@ -504,6 +504,7 @@ 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;