diff options
Diffstat (limited to 'mp3lib/mpg123.h')
-rw-r--r-- | mp3lib/mpg123.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mp3lib/mpg123.h b/mp3lib/mpg123.h index 2cbef31bdd..f55fb27e43 100644 --- a/mp3lib/mpg123.h +++ b/mp3lib/mpg123.h @@ -9,6 +9,9 @@ * used source: musicout.h from mpegaudio package */ +#ifndef MPLAYER_MP3LIB_MPG123_H +#define MPLAYER_MP3LIB_MPG123_H + #include "config.h" #ifndef M_PI @@ -22,6 +25,8 @@ #undef MPG123_REMOTE /* Get rid of this stuff for Win32 */ +typedef float real; + /* # define real float # define real long double @@ -126,3 +131,5 @@ void dct36_sse(real *, real *, real *, real *, real *); typedef int (*synth_func_t)( real *,int,short * ); typedef void (*dct36_func_t)(real *,real *,real *,real *,real *); + +#endif /* MPLAYER_MP3LIB_MPG123_H */ |