aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mixer.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/mixer.h b/mixer.h
index ad81ed1..6645cdb 100644
--- a/mixer.h
+++ b/mixer.h
@@ -18,30 +18,12 @@ enum {
AUDIO_EVENT_REWIND
};
-typedef struct Wav Wav;
-typedef struct WavStream WavStream;
typedef struct Pcm Pcm;
typedef struct AudioEvent AudioEvent;
typedef struct AudioSourceInfo AudioSourceInfo;
typedef struct AudioSource AudioSource;
typedef struct Mixer Mixer;
-struct Wav
-{
- void *data;
- int bitdepth;
- int samplerate;
- int channels;
- int length;
-};
-
-struct WavStream
-{
- Wav wav;
- void *data;
- int idx;
-};
-
struct Pcm
{
void *data;