changeset 135:a008c0b15ac8 trunk

[svn] symbol fixes
author nenolod
date Thu, 10 Nov 2005 06:38:54 -0800
parents 58db9c985438
children 54218989d664
files Plugins/Input/mpg123/mpg123.c Plugins/Input/mpg123/mpg123.h
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Plugins/Input/mpg123/mpg123.c	Thu Nov 10 06:28:46 2005 -0800
+++ b/Plugins/Input/mpg123/mpg123.c	Thu Nov 10 06:38:54 2005 -0800
@@ -130,7 +130,7 @@
     };
 
 #ifdef USE_SIMD
-    static func_dct36 funcs_dct36[2] = { mpg123_dct36, dct36_3dnow };
+    static func_dct36 funcs_dct36[2] = { dct36, dct36_3dnow };
 #endif
 
     if (mpg123_cfg.resolution == 8)
--- a/Plugins/Input/mpg123/mpg123.h	Thu Nov 10 06:28:46 2005 -0800
+++ b/Plugins/Input/mpg123/mpg123.h	Thu Nov 10 06:38:54 2005 -0800
@@ -293,7 +293,7 @@
 void mpg123_dct64_mmx(real *, real *, real *);
 int mpg123_synth_1to1_mmx(real *, int, unsigned char *, int *);
 
-void mpg123_dct36(real *, real *, real *, real *, real *);
+void dct36(real *, real *, real *, real *, real *);
 void dct36_3dnow(real *, real *, real *, real *, real *);
 int mpg123_synth_1to1_3dnow(real *, int, unsigned char *, int *);