diff options
-rw-r--r-- | xine_osd_command.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xine_osd_command.h b/xine_osd_command.h index b72cf9b1..a11982e7 100644 --- a/xine_osd_command.h +++ b/xine_osd_command.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_osd_command.h,v 1.5 2007-01-02 01:39:26 phintuka Exp $ + * $Id: xine_osd_command.h,v 1.6 2008-02-05 00:59:07 phintuka Exp $ * */ @@ -33,10 +33,10 @@ typedef enum { } osd_command_id_t; typedef struct xine_clut_s { - uint8_t cb : 8; - uint8_t cr : 8; - uint8_t y : 8; - uint8_t alpha : 8; + uint8_t cb /*: 8*/; + uint8_t cr /*: 8*/; + uint8_t y /*: 8*/; + uint8_t alpha /*: 8*/; } PACKED xine_clut_t; /* from xine, alphablend.h */ typedef struct xine_rle_elem_s { |