From fb4b4cbf8062bd0ebaedcd2b3aa6cd1112f35258 Mon Sep 17 00:00:00 2001 From: rodri Date: Mon, 2 Oct 2023 13:09:38 +0000 Subject: get rid of unused wav structs from the mixer. --- mixer.h | 18 ------------------ 1 file changed, 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; -- cgit v1.2.3