diff options
author | phintuka <phintuka> | 2008-02-05 00:59:07 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-02-05 00:59:07 +0000 |
commit | 07ee7d6326674edea6e89c70a9bdf32a787b5378 (patch) | |
tree | 58ad2cf372ef665a817a1321420d6ed08984f9fa | |
parent | c50f4222f13cab1746b33751c5c7951da374e096 (diff) | |
download | xineliboutput-07ee7d6326674edea6e89c70a9bdf32a787b5378.tar.gz xineliboutput-07ee7d6326674edea6e89c70a9bdf32a787b5378.tar.bz2 |
Remove bitfield sizes (uint8_t is 8 bits)
-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 { |