--- MPEGaudio.h 2005-11-25 10:29:47.000000000 -0500 +++ MPEGaudio.h 2005-11-25 10:31:05.000000000 -0500 @@ -32,12 +32,16 @@ #include "MPEGring.h" #endif +void Play_MPEGaudioSDL(void *udata, Uint8 *stream, int len); +#ifdef THREADED_AUDIO + int Decode_MPEGaudio(void *udata); +#endif + class MPEGstream; /* MPEG/WAVE Sound library - (C) 1997 by Woo-jae Jung */ - + /**************************/ /* Define values for MPEG */ /**************************/ --- audio/MPEGaudio.cpp 2005-11-25 10:29:47.000000000 -0500 +++ audio/MPEGaudio.cpp 2005-11-25 10:27:29.000000000 -0500 @@ -21,6 +21,8 @@ /* A class based on the MPEG stream class, used to parse and play audio */ +using namespace std; + #include "MPEGaudio.h" #include "MPEGstream.h"