diff mp3lib/mpg123.h @ 30658:fbb18bfa2dfe

Declare all public mp3lib functions in mpg123.h.
author diego
date Mon, 22 Feb 2010 13:52:59 +0000
parents 347d152a5cfa
children 5fdc3c62cf76
line wrap: on
line diff
--- a/mp3lib/mpg123.h	Mon Feb 22 13:51:58 2010 +0000
+++ b/mp3lib/mpg123.h	Mon Feb 22 13:52:59 2010 +0000
@@ -129,6 +129,15 @@
 void dct36_3dnowex(real *, real *, real *, real *, real *);
 void dct36_sse(real *, real *, real *, real *, real *);
 
+void dct64_MMX(short *, short *, real *);
+void dct64_MMX_3dnow(short *, short *, real *);
+void dct64_MMX_3dnowex(short *, short *, real *);
+void dct64_sse(short *, short *, real *);
+void dct64_altivec(real *, real *, real *);
+void (*dct64_MMX_func)(short *, short *, real *);
+
+void mp3lib_dct64(real *, real *, real *);
+
 typedef int (*synth_func_t)( real *,int,short * );
 typedef void (*dct36_func_t)(real *,real *,real *,real *,real *);