diff options
author | malc <av1474@comtv.ru> | 2009-05-14 03:11:35 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-05-14 03:20:43 +0400 |
commit | 1a7dafce1dfc3dc2052d0c5d8397e72121291c57 (patch) | |
tree | 6b83da7787156494d16c58e2d5a41396a01a964f /audio/audio.h | |
parent | b36aa85c7bef893bdad1f0646a2f6b3018eff0fb (diff) | |
download | qemu-1a7dafce1dfc3dc2052d0c5d8397e72121291c57.tar.gz qemu-1a7dafce1dfc3dc2052d0c5d8397e72121291c57.tar.bz2 qemu-1a7dafce1dfc3dc2052d0c5d8397e72121291c57.zip |
Remove any pretense that there can be more than one AudioState
Diffstat (limited to 'audio/audio.h')
-rw-r--r-- | audio/audio.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/audio/audio.h b/audio/audio.h index 4aaeb965e3..3fb2c8bbec 100644 --- a/audio/audio.h +++ b/audio/audio.h @@ -78,7 +78,6 @@ typedef struct CaptureVoiceOut CaptureVoiceOut; typedef struct SWVoiceIn SWVoiceIn; typedef struct QEMUSoundCard { - AudioState *audio; char *name; LIST_ENTRY (QEMUSoundCard) entries; } QEMUSoundCard; @@ -94,12 +93,10 @@ void AUD_log (const char *cap, const char *fmt, ...) #endif ; -AudioState *AUD_init (void); void AUD_help (void); -void AUD_register_card (AudioState *s, const char *name, QEMUSoundCard *card); +void AUD_register_card (const char *name, QEMUSoundCard *card); void AUD_remove_card (QEMUSoundCard *card); CaptureVoiceOut *AUD_add_capture ( - AudioState *s, struct audsettings *as, struct audio_capture_ops *ops, void *opaque |