From b32478f237d5e590e4714ee52ab5ce96206bae05 Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Mon, 20 Dec 2004 21:22:18 +0000 Subject: remove all local names beginning with double underscore, because C99 reserves these names for use by the C implementation CVS patchset: 7288 CVS date: 2004/12/20 21:22:18 --- src/libspudec/xine_decoder.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libspudec') diff --git a/src/libspudec/xine_decoder.c b/src/libspudec/xine_decoder.c index 206e9b87f..ee876b0b5 100644 --- a/src/libspudec/xine_decoder.c +++ b/src/libspudec/xine_decoder.c @@ -19,7 +19,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.109 2004/08/19 10:35:32 mroi Exp $ + * $Id: xine_decoder.c,v 1.110 2004/12/20 21:22:20 mroi Exp $ * * stuff needed to turn libspu into a xine decoder plugin */ @@ -50,7 +50,7 @@ #define LOG_BUTTON 1 */ -static clut_t __default_clut[] = { +static clut_t default_clut[] = { CLUT_Y_CR_CB_INIT(0x00, 0x80, 0x80), CLUT_Y_CR_CB_INIT(0xbf, 0x80, 0x80), CLUT_Y_CR_CB_INIT(0x10, 0x80, 0x80), @@ -341,7 +341,7 @@ static spu_decoder_t *open_plugin (spu_decoder_class_t *class_gen, xine_stream_t } /* FIXME:Do we really need a default clut? */ - xine_fast_memcpy(this->state.clut, __default_clut, sizeof(this->state.clut)); + xine_fast_memcpy(this->state.clut, default_clut, sizeof(this->state.clut)); this->state.need_clut = 1; this->state.vobsub = 0; -- cgit v1.2.3