File: smpeg-export-mpegaudio-class.patch

package info (click to toggle)
livi 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,984 kB
  • sloc: ansic: 3,541; xml: 61; sh: 36; makefile: 13
file content (17 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- smpeg-0.4.5+cvs20030824.orig/MPEGaudio.h
+++ smpeg-0.4.5+cvs20030824/MPEGaudio.h
@@ -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);