diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-20 21:22:18 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-12-20 21:22:18 +0000 |
commit | b32478f237d5e590e4714ee52ab5ce96206bae05 (patch) | |
tree | 0554bd8f1a3d08dcfe2f5339a75a8b7f4e5472ad /src/libspudec/xine_decoder.c | |
parent | 2bd4eed87540e5cd507d29cb446977736880cd15 (diff) | |
download | xine-lib-b32478f237d5e590e4714ee52ab5ce96206bae05.tar.gz xine-lib-b32478f237d5e590e4714ee52ab5ce96206bae05.tar.bz2 |
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
Diffstat (limited to 'src/libspudec/xine_decoder.c')
-rw-r--r-- | src/libspudec/xine_decoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; |