Fix smpeg compilation

This commit is contained in:
Christoph Weiss 2020-02-17 10:01:46 +01:00 committed by Tony Theodore
parent 213c8a8836
commit e2b448de53
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
--- ./MPEGaudio.h~ 2006-03-13 15:24:38.000000000 +0000
+++ ./MPEGaudio.h 2006-03-13 15:25:07.000000000 +0000
@@ -149,6 +149,14 @@
};
/* The actual MPEG audio class */
+
+class MPEGaudio;
+void Play_MPEGaudioSDL(void *udata, Uint8 *stream, int len);
+int Play_MPEGaudio(MPEGaudio *audio, Uint8 *stream, int len);
+#ifdef THREADED_AUDIO
+int Decode_MPEGaudio(void *udata);
+#endif
+
class MPEGaudio : public MPEGerror, public MPEGaudioaction {
friend void Play_MPEGaudioSDL(void *udata, Uint8 *stream, int len);