[Mplayer-cvslog] CVS: main/libmpcodecs/native xa_gsm.c,1.3,1.4

Arpi of Ize arpi at mplayer.dev.hu
Sat Apr 13 20:19:39 CEST 2002


Update of /cvsroot/mplayer/main/libmpcodecs/native
In directory mplayer:/var/tmp.root/cvs-serv18537

Modified Files:
	xa_gsm.c 
Log Message:
less namespace pollution

Index: xa_gsm.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/native/xa_gsm.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xa_gsm.c	25 Oct 2001 23:34:14 -0000	1.3
+++ xa_gsm.c	13 Apr 2002 18:19:36 -0000	1.4
@@ -39,9 +39,9 @@
 //static short gsm_buf[320];
 static XA_GSM_STATE gsm_state;
 
-unsigned char xa_sign_2_ulaw[256];
+static unsigned char xa_sign_2_ulaw[256];
 
-unsigned char XA_Signed_To_uLaw(long ch)
+static unsigned char XA_Signed_To_uLaw(long ch)
 {
   long mask;
   if (ch < 0) { ch = -ch; mask = 0x7f; }
@@ -58,7 +58,7 @@
   return (mask & ch);
 }
 
-void Gen_Signed_2_uLaw()
+static void Gen_Signed_2_uLaw()
 {
   unsigned long i;
   for(i=0;i<256;i++)




More information about the MPlayer-cvslog mailing list