|
|
|
@ -27,7 +27,7 @@ |
|
|
|
#include "config-host.h" |
|
|
|
#include "qemu-queue.h" |
|
|
|
|
|
|
|
typedef void (*audio_callback_fn_t) (void *opaque, int avail); |
|
|
|
typedef void (*audio_callback_fn) (void *opaque, int avail); |
|
|
|
|
|
|
|
typedef enum { |
|
|
|
AUD_FMT_U8, |
|
|
|
@ -108,7 +108,7 @@ SWVoiceOut *AUD_open_out ( |
|
|
|
SWVoiceOut *sw, |
|
|
|
const char *name, |
|
|
|
void *callback_opaque, |
|
|
|
audio_callback_fn_t callback_fn, |
|
|
|
audio_callback_fn callback_fn, |
|
|
|
struct audsettings *settings |
|
|
|
); |
|
|
|
|
|
|
|
@ -129,7 +129,7 @@ SWVoiceIn *AUD_open_in ( |
|
|
|
SWVoiceIn *sw, |
|
|
|
const char *name, |
|
|
|
void *callback_opaque, |
|
|
|
audio_callback_fn_t callback_fn, |
|
|
|
audio_callback_fn callback_fn, |
|
|
|
struct audsettings *settings |
|
|
|
); |
|
|
|
|
|
|
|
|