From 07ee7d6326674edea6e89c70a9bdf32a787b5378 Mon Sep 17 00:00:00 2001 From: phintuka Date: Tue, 5 Feb 2008 00:59:07 +0000 Subject: Remove bitfield sizes (uint8_t is 8 bits) --- xine_osd_command.h | 10 +++++----- 1 file 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 { -- cgit v1.2.3