diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-01-14 04:24:29 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-01-14 04:24:29 +0000 |
commit | ca9cc28c62a2c2877186569f4ab0cf1034502a73 (patch) | |
tree | d46c878d8f03c294452d625c851d6bb3668c5087 /audio/audio.c | |
parent | b34d259a81500d75e4cf435f1e8b262ba7e1421a (diff) |
pthreads-based audio and miscellaneous audio clean-up (malc).
ESD support (malc, Frederick Reeve).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3917 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'audio/audio.c')
-rw-r--r-- | audio/audio.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/audio/audio.c b/audio/audio.c index 5e9d88bb1a..2bea53efa8 100644 --- a/audio/audio.c +++ b/audio/audio.c @@ -56,6 +56,9 @@ static struct audio_driver *drvtab[] = { #ifdef CONFIG_SDL &sdl_audio_driver, #endif +#ifdef CONFIG_ESD + &esd_audio_driver, +#endif &no_audio_driver, &wav_audio_driver }; @@ -414,7 +417,7 @@ static void audio_print_options (const char *prefix, { audfmt_e *fmtp = opt->valp; printf ( - "format, %s = %s, (one of: U8 S8 U16 S16)\n", + "format, %s = %s, (one of: U8 S8 U16 S16 U32 S32)\n", state, audio_audfmt_to_string (*fmtp) ); |