comparison mp3lib/mpg123.h @ 30163:257ef2adfd66

Add multiple inclusion guards to all mp3lib headers.
author diego
date Mon, 04 Jan 2010 14:42:59 +0000
parents 9e739bdb049c
children 347d152a5cfa
comparison
equal deleted inserted replaced
30162:00c918779261 30163:257ef2adfd66
6 6
7 /* 7 /*
8 * mpg123 defines 8 * mpg123 defines
9 * used source: musicout.h from mpegaudio package 9 * used source: musicout.h from mpegaudio package
10 */ 10 */
11
12 #ifndef MPLAYER_MP3LIB_MPG123_H
13 #define MPLAYER_MP3LIB_MPG123_H
11 14
12 #include "config.h" 15 #include "config.h"
13 16
14 #ifndef M_PI 17 #ifndef M_PI
15 #define M_PI 3.141592653589793238462 18 #define M_PI 3.141592653589793238462
124 void dct36_3dnowex(real *, real *, real *, real *, real *); 127 void dct36_3dnowex(real *, real *, real *, real *, real *);
125 void dct36_sse(real *, real *, real *, real *, real *); 128 void dct36_sse(real *, real *, real *, real *, real *);
126 129
127 typedef int (*synth_func_t)( real *,int,short * ); 130 typedef int (*synth_func_t)( real *,int,short * );
128 typedef void (*dct36_func_t)(real *,real *,real *,real *,real *); 131 typedef void (*dct36_func_t)(real *,real *,real *,real *,real *);
132
133 #endif /* MPLAYER_MP3LIB_MPG123_H */