changeset 16852:43b45a561f63

do not export useless symbols! fixed compile bug with decode support in lame
author rfelker
date Tue, 25 Oct 2005 17:08:49 +0000
parents e5a3f78b9511
children da29ac12242d
files mp3lib/dct64.c mp3lib/mpg123.h
diffstat 2 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mp3lib/dct64.c	Tue Oct 25 15:15:46 2005 +0000
+++ b/mp3lib/dct64.c	Tue Oct 25 17:08:49 2005 +0000
@@ -310,7 +310,7 @@
  * the call via dct64 is a trick to force GCC to use
  * (new) registers for the b1,b2 pointer to the bufs[xx] field
  */
-void dct64(real *a,real *b,real *c)
+static void dct64(real *a,real *b,real *c)
 {
   real bufs[0x40];
   dct64_1(a,b,bufs,bufs+0x20,c);
--- a/mp3lib/mpg123.h	Tue Oct 25 15:15:46 2005 +0000
+++ b/mp3lib/mpg123.h	Tue Oct 25 17:08:49 2005 +0000
@@ -120,7 +120,6 @@
 extern void make_decode_tables_MMX(long scaleval);
 extern int synth_1to1_MMX( real *,int,short * );
 extern int synth_1to1_MMX_s(real *, int, short *, short *, int *);
-extern void dct64(real *a,real *b,real *c);
 
 extern void dct36_3dnow(real *,real *,real *,real *,real *);
 extern void dct36_3dnowex(real *,real *,real *,real *,real *);