blob: fd019a0fc37c7196751c429cf67bcd246d6c74c1 [file] [log] [blame]
bellardfb065182004-11-09 23:09:44 +00001/*
2 * QEMU Audio subsystem header
bellard1d14ffa2005-10-30 18:58:22 +00003 *
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
5 *
bellardfb065182004-11-09 23:09:44 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#ifndef QEMU_AUDIO_INT_H
25#define QEMU_AUDIO_INT_H
26
bellard1d14ffa2005-10-30 18:58:22 +000027#ifdef CONFIG_COREAUDIO
28#define FLOAT_MIXENG
29/* #define RECIPROCAL */
30#endif
31#include "mixeng.h"
bellardfb065182004-11-09 23:09:44 +000032
bellard1d14ffa2005-10-30 18:58:22 +000033struct audio_pcm_ops;
34
35typedef enum {
36 AUD_OPT_INT,
37 AUD_OPT_FMT,
38 AUD_OPT_STR,
39 AUD_OPT_BOOL
40} audio_option_tag_e;
41
42struct audio_option {
43 const char *name;
44 audio_option_tag_e tag;
45 void *valp;
46 const char *descr;
thsfe8f0962007-07-12 10:59:21 +000047 int *overriddenp;
48 int overridden;
bellard1d14ffa2005-10-30 18:58:22 +000049};
50
51struct audio_callback {
52 void *opaque;
malccb4f03e2009-10-15 02:40:17 +040053 audio_callback_fn fn;
bellard1d14ffa2005-10-30 18:58:22 +000054};
55
56struct audio_pcm_info {
57 int bits;
58 int sign;
59 int freq;
60 int nchannels;
61 int align;
62 int shift;
63 int bytes_per_second;
bellardd929eba2006-07-04 21:47:22 +000064 int swap_endianness;
bellard1d14ffa2005-10-30 18:58:22 +000065};
66
bellardec36b692006-07-16 18:57:03 +000067typedef struct SWVoiceCap SWVoiceCap;
68
bellard1d14ffa2005-10-30 18:58:22 +000069typedef struct HWVoiceOut {
bellardfb065182004-11-09 23:09:44 +000070 int enabled;
malc713a98f2009-09-12 02:28:45 +040071 int poll_mode;
bellardfb065182004-11-09 23:09:44 +000072 int pending_disable;
bellard1d14ffa2005-10-30 18:58:22 +000073 struct audio_pcm_info info;
bellardfb065182004-11-09 23:09:44 +000074
75 f_sample *clip;
bellardfb065182004-11-09 23:09:44 +000076
77 int rpos;
bellard1d14ffa2005-10-30 18:58:22 +000078 uint64_t ts_helper;
bellardfb065182004-11-09 23:09:44 +000079
malc1ea879e2008-12-03 22:48:44 +000080 struct st_sample *mix_buf;
bellardfb065182004-11-09 23:09:44 +000081
82 int samples;
Blue Swirl72cf2d42009-09-12 07:36:22 +000083 QLIST_HEAD (sw_out_listhead, SWVoiceOut) sw_head;
84 QLIST_HEAD (sw_cap_listhead, SWVoiceCap) cap_head;
Marc-André Lureauc01b2452012-04-17 14:32:36 +020085 int ctl_caps;
blueswir135f4b582008-10-06 18:08:30 +000086 struct audio_pcm_ops *pcm_ops;
Blue Swirl72cf2d42009-09-12 07:36:22 +000087 QLIST_ENTRY (HWVoiceOut) entries;
bellard1d14ffa2005-10-30 18:58:22 +000088} HWVoiceOut;
bellardfb065182004-11-09 23:09:44 +000089
bellard1d14ffa2005-10-30 18:58:22 +000090typedef struct HWVoiceIn {
91 int enabled;
malc713a98f2009-09-12 02:28:45 +040092 int poll_mode;
bellard1d14ffa2005-10-30 18:58:22 +000093 struct audio_pcm_info info;
bellardfb065182004-11-09 23:09:44 +000094
95 t_sample *conv;
96
bellard1d14ffa2005-10-30 18:58:22 +000097 int wpos;
bellard1d14ffa2005-10-30 18:58:22 +000098 int total_samples_captured;
99 uint64_t ts_helper;
100
malc1ea879e2008-12-03 22:48:44 +0000101 struct st_sample *conv_buf;
bellard1d14ffa2005-10-30 18:58:22 +0000102
103 int samples;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000104 QLIST_HEAD (sw_in_listhead, SWVoiceIn) sw_head;
Marc-André Lureauc01b2452012-04-17 14:32:36 +0200105 int ctl_caps;
blueswir135f4b582008-10-06 18:08:30 +0000106 struct audio_pcm_ops *pcm_ops;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000107 QLIST_ENTRY (HWVoiceIn) entries;
bellard1d14ffa2005-10-30 18:58:22 +0000108} HWVoiceIn;
109
bellard1d14ffa2005-10-30 18:58:22 +0000110struct SWVoiceOut {
malc1a7dafc2009-05-14 03:11:35 +0400111 QEMUSoundCard *card;
bellard1d14ffa2005-10-30 18:58:22 +0000112 struct audio_pcm_info info;
113 t_sample *conv;
bellardfb065182004-11-09 23:09:44 +0000114 int64_t ratio;
malc1ea879e2008-12-03 22:48:44 +0000115 struct st_sample *buf;
bellardfb065182004-11-09 23:09:44 +0000116 void *rate;
bellard1d14ffa2005-10-30 18:58:22 +0000117 int total_hw_samples_mixed;
bellardfb065182004-11-09 23:09:44 +0000118 int active;
bellard1d14ffa2005-10-30 18:58:22 +0000119 int empty;
120 HWVoiceOut *hw;
bellardfb065182004-11-09 23:09:44 +0000121 char *name;
malc1ea879e2008-12-03 22:48:44 +0000122 struct mixeng_volume vol;
bellard1d14ffa2005-10-30 18:58:22 +0000123 struct audio_callback callback;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000124 QLIST_ENTRY (SWVoiceOut) entries;
bellardfb065182004-11-09 23:09:44 +0000125};
126
bellard1d14ffa2005-10-30 18:58:22 +0000127struct SWVoiceIn {
malc1a7dafc2009-05-14 03:11:35 +0400128 QEMUSoundCard *card;
bellard1d14ffa2005-10-30 18:58:22 +0000129 int active;
130 struct audio_pcm_info info;
131 int64_t ratio;
132 void *rate;
133 int total_hw_samples_acquired;
malc1ea879e2008-12-03 22:48:44 +0000134 struct st_sample *buf;
bellard1d14ffa2005-10-30 18:58:22 +0000135 f_sample *clip;
136 HWVoiceIn *hw;
137 char *name;
malc1ea879e2008-12-03 22:48:44 +0000138 struct mixeng_volume vol;
bellard1d14ffa2005-10-30 18:58:22 +0000139 struct audio_callback callback;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000140 QLIST_ENTRY (SWVoiceIn) entries;
bellardfb065182004-11-09 23:09:44 +0000141};
142
bellardc0fe3822005-11-05 18:55:28 +0000143struct audio_driver {
144 const char *name;
145 const char *descr;
146 struct audio_option *options;
147 void *(*init) (void);
148 void (*fini) (void *);
blueswir135f4b582008-10-06 18:08:30 +0000149 struct audio_pcm_ops *pcm_ops;
bellardc0fe3822005-11-05 18:55:28 +0000150 int can_be_default;
151 int max_voices_out;
152 int max_voices_in;
153 int voice_size_out;
154 int voice_size_in;
Marc-André Lureauc01b2452012-04-17 14:32:36 +0200155 int ctl_caps;
bellardc0fe3822005-11-05 18:55:28 +0000156};
157
bellard1d14ffa2005-10-30 18:58:22 +0000158struct audio_pcm_ops {
malc1ea879e2008-12-03 22:48:44 +0000159 int (*init_out)(HWVoiceOut *hw, struct audsettings *as);
bellard1d14ffa2005-10-30 18:58:22 +0000160 void (*fini_out)(HWVoiceOut *hw);
malcbdff2532009-09-18 11:37:39 +0400161 int (*run_out) (HWVoiceOut *hw, int live);
bellard1d14ffa2005-10-30 18:58:22 +0000162 int (*write) (SWVoiceOut *sw, void *buf, int size);
163 int (*ctl_out) (HWVoiceOut *hw, int cmd, ...);
bellardfb065182004-11-09 23:09:44 +0000164
malc1ea879e2008-12-03 22:48:44 +0000165 int (*init_in) (HWVoiceIn *hw, struct audsettings *as);
bellard1d14ffa2005-10-30 18:58:22 +0000166 void (*fini_in) (HWVoiceIn *hw);
167 int (*run_in) (HWVoiceIn *hw);
168 int (*read) (SWVoiceIn *sw, void *buf, int size);
169 int (*ctl_in) (HWVoiceIn *hw, int cmd, ...);
170};
bellardfb065182004-11-09 23:09:44 +0000171
bellard8ead62c2006-07-04 16:51:32 +0000172struct capture_callback {
173 struct audio_capture_ops ops;
174 void *opaque;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000175 QLIST_ENTRY (capture_callback) entries;
bellard8ead62c2006-07-04 16:51:32 +0000176};
177
bellardec36b692006-07-16 18:57:03 +0000178struct CaptureVoiceOut {
bellard8ead62c2006-07-04 16:51:32 +0000179 HWVoiceOut hw;
180 void *buf;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000181 QLIST_HEAD (cb_listhead, capture_callback) cb_head;
182 QLIST_ENTRY (CaptureVoiceOut) entries;
bellardec36b692006-07-16 18:57:03 +0000183};
184
185struct SWVoiceCap {
186 SWVoiceOut sw;
187 CaptureVoiceOut *cap;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000188 QLIST_ENTRY (SWVoiceCap) entries;
bellardec36b692006-07-16 18:57:03 +0000189};
bellard8ead62c2006-07-04 16:51:32 +0000190
bellardc0fe3822005-11-05 18:55:28 +0000191struct AudioState {
192 struct audio_driver *drv;
193 void *drv_opaque;
194
195 QEMUTimer *ts;
Blue Swirl72cf2d42009-09-12 07:36:22 +0000196 QLIST_HEAD (card_listhead, QEMUSoundCard) card_head;
197 QLIST_HEAD (hw_in_listhead, HWVoiceIn) hw_head_in;
198 QLIST_HEAD (hw_out_listhead, HWVoiceOut) hw_head_out;
199 QLIST_HEAD (cap_listhead, CaptureVoiceOut) cap_head;
bellardc0fe3822005-11-05 18:55:28 +0000200 int nb_hw_voices_out;
201 int nb_hw_voices_in;
malc978dd632009-02-18 20:44:04 +0000202 int vm_running;
bellardc0fe3822005-11-05 18:55:28 +0000203};
204
205extern struct audio_driver no_audio_driver;
206extern struct audio_driver oss_audio_driver;
207extern struct audio_driver sdl_audio_driver;
208extern struct audio_driver wav_audio_driver;
209extern struct audio_driver fmod_audio_driver;
210extern struct audio_driver alsa_audio_driver;
211extern struct audio_driver coreaudio_audio_driver;
212extern struct audio_driver dsound_audio_driver;
balrogca9cc282008-01-14 04:24:29 +0000213extern struct audio_driver esd_audio_driver;
malcb8e59f12008-07-02 21:03:08 +0000214extern struct audio_driver pa_audio_driver;
Gerd Hoffmann3e313752010-11-09 17:29:46 +0100215extern struct audio_driver spice_audio_driver;
malcd5631632009-10-10 01:13:41 +0400216extern struct audio_driver winwave_audio_driver;
Michael Walle00e07672011-01-05 01:05:47 +0100217extern const struct mixeng_volume nominal_volume;
bellardc0fe3822005-11-05 18:55:28 +0000218
malc1ea879e2008-12-03 22:48:44 +0000219void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as);
bellard1d14ffa2005-10-30 18:58:22 +0000220void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len);
bellardfb065182004-11-09 23:09:44 +0000221
bellard1d14ffa2005-10-30 18:58:22 +0000222int audio_pcm_sw_write (SWVoiceOut *sw, void *buf, int len);
223int audio_pcm_hw_get_live_in (HWVoiceIn *hw);
bellardfb065182004-11-09 23:09:44 +0000224
bellard1d14ffa2005-10-30 18:58:22 +0000225int audio_pcm_sw_read (SWVoiceIn *sw, void *buf, int len);
bellardfb065182004-11-09 23:09:44 +0000226
malcddabec72009-09-18 10:59:38 +0400227int audio_pcm_hw_clip_out (HWVoiceOut *hw, void *pcm_buf,
228 int live, int pending);
229
bellardc0fe3822005-11-05 18:55:28 +0000230int audio_bug (const char *funcname, int cond);
231void *audio_calloc (const char *funcname, int nmemb, size_t size);
232
malc713a98f2009-09-12 02:28:45 +0400233void audio_run (const char *msg);
234
bellardfb065182004-11-09 23:09:44 +0000235#define VOICE_ENABLE 1
236#define VOICE_DISABLE 2
Marc-André Lureau6c95ab92012-04-17 14:32:35 +0200237#define VOICE_VOLUME 3
bellardfb065182004-11-09 23:09:44 +0000238
Marc-André Lureauc01b2452012-04-17 14:32:36 +0200239#define VOICE_VOLUME_CAP (1 << VOICE_VOLUME)
240
bellard1d14ffa2005-10-30 18:58:22 +0000241static inline int audio_ring_dist (int dst, int src, int len)
242{
243 return (dst >= src) ? (dst - src) : (len - src + dst);
244}
245
Stefan Weil87e613e2013-06-16 11:19:31 +0200246#define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
bellard1d14ffa2005-10-30 18:58:22 +0000247
248#ifdef DEBUG
Stefan Weil87e613e2013-06-16 11:19:31 +0200249#define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
bellard1d14ffa2005-10-30 18:58:22 +0000250#else
Stefan Weil87e613e2013-06-16 11:19:31 +0200251#define ldebug(fmt, ...) (void)0
bellard1d14ffa2005-10-30 18:58:22 +0000252#endif
bellard1d14ffa2005-10-30 18:58:22 +0000253
254#define AUDIO_STRINGIFY_(n) #n
255#define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
256
257#if defined _MSC_VER || defined __GNUC__
258#define AUDIO_FUNC __FUNCTION__
259#else
260#define AUDIO_FUNC __FILE__ ":" AUDIO_STRINGIFY (__LINE__)
261#endif
262
bellardfb065182004-11-09 23:09:44 +0000263#endif /* audio_int.h */