comparison mp3lib/mpg123.h @ 30682:5fdc3c62cf76

Fix compilation: the dct64_MMX_func variable should be declared only once, not every time the header is included.
author reimar
date Tue, 23 Feb 2010 22:29:57 +0000
parents fbb18bfa2dfe
children 0ad2da052b2e
comparison
equal deleted inserted replaced
30681:5892578d325b 30682:5fdc3c62cf76
132 void dct64_MMX(short *, short *, real *); 132 void dct64_MMX(short *, short *, real *);
133 void dct64_MMX_3dnow(short *, short *, real *); 133 void dct64_MMX_3dnow(short *, short *, real *);
134 void dct64_MMX_3dnowex(short *, short *, real *); 134 void dct64_MMX_3dnowex(short *, short *, real *);
135 void dct64_sse(short *, short *, real *); 135 void dct64_sse(short *, short *, real *);
136 void dct64_altivec(real *, real *, real *); 136 void dct64_altivec(real *, real *, real *);
137 void (*dct64_MMX_func)(short *, short *, real *); 137 extern void (*dct64_MMX_func)(short *, short *, real *);
138 138
139 void mp3lib_dct64(real *, real *, real *); 139 void mp3lib_dct64(real *, real *, real *);
140 140
141 typedef int (*synth_func_t)( real *,int,short * ); 141 typedef int (*synth_func_t)( real *,int,short * );
142 typedef void (*dct36_func_t)(real *,real *,real *,real *,real *); 142 typedef void (*dct36_func_t)(real *,real *,real *,real *,real *);