comparison mp3lib/mpg123.h @ 28051:9e739bdb049c

Get rid of pointless 'extern' keywords.
author diego
date Wed, 03 Dec 2008 23:01:03 +0000
parents ccf4719617b6
children 257ef2adfd66
comparison
equal deleted inserted replaced
28050:7e53b0b71b18 28051:9e739bdb049c
114 }; 114 };
115 115
116 extern real mp3lib_decwin[(512+32)]; 116 extern real mp3lib_decwin[(512+32)];
117 extern real *mp3lib_pnts[]; 117 extern real *mp3lib_pnts[];
118 118
119 extern int synth_1to1_pent( real *,int,short * ); 119 int synth_1to1_pent( real *, int, short * );
120 extern int synth_1to1_MMX( real *,int,short * ); 120 int synth_1to1_MMX( real *, int, short * );
121 extern int synth_1to1_MMX_s(real *, int, short *, short *, int *); 121 int synth_1to1_MMX_s(real *, int, short *, short *, int *);
122 122
123 extern void dct36_3dnow(real *,real *,real *,real *,real *); 123 void dct36_3dnow(real *, real *, real *, real *, real *);
124 extern void dct36_3dnowex(real *,real *,real *,real *,real *); 124 void dct36_3dnowex(real *, real *, real *, real *, real *);
125 extern void dct36_sse(real *,real *,real *,real *,real *); 125 void dct36_sse(real *, real *, real *, real *, real *);
126 126
127 typedef int (*synth_func_t)( real *,int,short * ); 127 typedef int (*synth_func_t)( real *,int,short * );
128 typedef void (*dct36_func_t)(real *,real *,real *,real *,real *); 128 typedef void (*dct36_func_t)(real *,real *,real *,real *,real *);