From fb065187e4ee9e0d1709b344ec01bb426ff1e43b Mon Sep 17 00:00:00 2001 From: bellard Date: Tue, 9 Nov 2004 23:09:44 +0000 Subject: audio clean up (initial patch by malc) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1131 c046a42c-6fe2-441c-8c8c-71466251a162 --- audio/sdlaudio.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'audio/sdlaudio.c') diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c index 4d75853422..6103c4511b 100644 --- a/audio/sdlaudio.c +++ b/audio/sdlaudio.c @@ -25,9 +25,18 @@ #include #include "vl.h" -#define AUDIO_CAP "sdl" -#include "audio/audio.h" -#include "audio/sdlaudio.h" +#include "audio/audio_int.h" + +typedef struct SDLVoice { + HWVoice hw; +} SDLVoice; + +#define dolog(...) AUD_log ("sdl", __VA_ARGS__) +#ifdef DEBUG +#define ldebug(...) dolog (__VA_ARGS__) +#else +#define ldebug(...) +#endif #define QC_SDL_SAMPLES "QEMU_SDL_SAMPLES" -- cgit v1.2.1