]>
Commit | Line | Data |
---|---|---|
fb065187 FB |
1 | /* |
2 | * QEMU Audio subsystem header | |
1d14ffa9 FB |
3 | * |
4 | * Copyright (c) 2003-2005 Vassili Karpov (malc) | |
5 | * | |
fb065187 FB |
6 | * 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 | ||
1d14ffa9 FB |
27 | #ifdef CONFIG_COREAUDIO |
28 | #define FLOAT_MIXENG | |
29 | /* #define RECIPROCAL */ | |
30 | #endif | |
31 | #include "mixeng.h" | |
32 | ||
1d14ffa9 FB |
33 | struct audio_pcm_ops; |
34 | ||
35 | typedef enum { | |
36 | AUD_OPT_INT, | |
37 | AUD_OPT_FMT, | |
38 | AUD_OPT_STR, | |
39 | AUD_OPT_BOOL | |
40 | } audio_option_tag_e; | |
41 | ||
42 | struct audio_option { | |
43 | const char *name; | |
44 | audio_option_tag_e tag; | |
45 | void *valp; | |
46 | const char *descr; | |
fe8f096b TS |
47 | int *overriddenp; |
48 | int overridden; | |
1d14ffa9 FB |
49 | }; |
50 | ||
51 | struct audio_callback { | |
52 | void *opaque; | |
cb4f03e8 | 53 | audio_callback_fn fn; |
1d14ffa9 | 54 | }; |
fb065187 | 55 | |
1d14ffa9 FB |
56 | struct 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; | |
d929eba5 | 64 | int swap_endianness; |
1d14ffa9 | 65 | }; |
fb065187 | 66 | |
ec36b695 FB |
67 | typedef struct SWVoiceCap SWVoiceCap; |
68 | ||
1d14ffa9 | 69 | typedef struct HWVoiceOut { |
fb065187 | 70 | int enabled; |
713a98f8 | 71 | int poll_mode; |
fb065187 | 72 | int pending_disable; |
1d14ffa9 | 73 | struct audio_pcm_info info; |
fb065187 FB |
74 | |
75 | f_sample *clip; | |
fb065187 FB |
76 | |
77 | int rpos; | |
1d14ffa9 | 78 | uint64_t ts_helper; |
fb065187 | 79 | |
1ea879e5 | 80 | struct st_sample *mix_buf; |
fb065187 FB |
81 | |
82 | int samples; | |
72cf2d4f BS |
83 | QLIST_HEAD (sw_out_listhead, SWVoiceOut) sw_head; |
84 | QLIST_HEAD (sw_cap_listhead, SWVoiceCap) cap_head; | |
35f4b58c | 85 | struct audio_pcm_ops *pcm_ops; |
72cf2d4f | 86 | QLIST_ENTRY (HWVoiceOut) entries; |
1d14ffa9 | 87 | } HWVoiceOut; |
fb065187 | 88 | |
1d14ffa9 FB |
89 | typedef struct HWVoiceIn { |
90 | int enabled; | |
713a98f8 | 91 | int poll_mode; |
1d14ffa9 FB |
92 | struct audio_pcm_info info; |
93 | ||
94 | t_sample *conv; | |
7372f88d | 95 | |
1d14ffa9 | 96 | int wpos; |
1d14ffa9 FB |
97 | int total_samples_captured; |
98 | uint64_t ts_helper; | |
fb065187 | 99 | |
1ea879e5 | 100 | struct st_sample *conv_buf; |
fb065187 | 101 | |
1d14ffa9 | 102 | int samples; |
72cf2d4f | 103 | QLIST_HEAD (sw_in_listhead, SWVoiceIn) sw_head; |
35f4b58c | 104 | struct audio_pcm_ops *pcm_ops; |
72cf2d4f | 105 | QLIST_ENTRY (HWVoiceIn) entries; |
1d14ffa9 | 106 | } HWVoiceIn; |
fb065187 | 107 | |
1d14ffa9 | 108 | struct SWVoiceOut { |
1a7dafce | 109 | QEMUSoundCard *card; |
1d14ffa9 | 110 | struct audio_pcm_info info; |
fb065187 | 111 | t_sample *conv; |
fb065187 | 112 | int64_t ratio; |
1ea879e5 | 113 | struct st_sample *buf; |
fb065187 | 114 | void *rate; |
1d14ffa9 FB |
115 | int total_hw_samples_mixed; |
116 | int active; | |
117 | int empty; | |
118 | HWVoiceOut *hw; | |
119 | char *name; | |
1ea879e5 | 120 | struct mixeng_volume vol; |
1d14ffa9 | 121 | struct audio_callback callback; |
72cf2d4f | 122 | QLIST_ENTRY (SWVoiceOut) entries; |
1d14ffa9 | 123 | }; |
fb065187 | 124 | |
1d14ffa9 | 125 | struct SWVoiceIn { |
1a7dafce | 126 | QEMUSoundCard *card; |
fb065187 | 127 | int active; |
1d14ffa9 FB |
128 | struct audio_pcm_info info; |
129 | int64_t ratio; | |
130 | void *rate; | |
131 | int total_hw_samples_acquired; | |
1ea879e5 | 132 | struct st_sample *buf; |
1d14ffa9 FB |
133 | f_sample *clip; |
134 | HWVoiceIn *hw; | |
fb065187 | 135 | char *name; |
1ea879e5 | 136 | struct mixeng_volume vol; |
1d14ffa9 | 137 | struct audio_callback callback; |
72cf2d4f | 138 | QLIST_ENTRY (SWVoiceIn) entries; |
fb065187 FB |
139 | }; |
140 | ||
c0fe3827 FB |
141 | struct audio_driver { |
142 | const char *name; | |
143 | const char *descr; | |
144 | struct audio_option *options; | |
145 | void *(*init) (void); | |
146 | void (*fini) (void *); | |
35f4b58c | 147 | struct audio_pcm_ops *pcm_ops; |
c0fe3827 FB |
148 | int can_be_default; |
149 | int max_voices_out; | |
150 | int max_voices_in; | |
151 | int voice_size_out; | |
152 | int voice_size_in; | |
153 | }; | |
154 | ||
1d14ffa9 | 155 | struct audio_pcm_ops { |
1ea879e5 | 156 | int (*init_out)(HWVoiceOut *hw, struct audsettings *as); |
1d14ffa9 | 157 | void (*fini_out)(HWVoiceOut *hw); |
bdff253c | 158 | int (*run_out) (HWVoiceOut *hw, int live); |
1d14ffa9 FB |
159 | int (*write) (SWVoiceOut *sw, void *buf, int size); |
160 | int (*ctl_out) (HWVoiceOut *hw, int cmd, ...); | |
161 | ||
1ea879e5 | 162 | int (*init_in) (HWVoiceIn *hw, struct audsettings *as); |
1d14ffa9 FB |
163 | void (*fini_in) (HWVoiceIn *hw); |
164 | int (*run_in) (HWVoiceIn *hw); | |
165 | int (*read) (SWVoiceIn *sw, void *buf, int size); | |
166 | int (*ctl_in) (HWVoiceIn *hw, int cmd, ...); | |
fb065187 FB |
167 | }; |
168 | ||
8ead62cf FB |
169 | struct capture_callback { |
170 | struct audio_capture_ops ops; | |
171 | void *opaque; | |
72cf2d4f | 172 | QLIST_ENTRY (capture_callback) entries; |
8ead62cf FB |
173 | }; |
174 | ||
ec36b695 | 175 | struct CaptureVoiceOut { |
8ead62cf FB |
176 | HWVoiceOut hw; |
177 | void *buf; | |
72cf2d4f BS |
178 | QLIST_HEAD (cb_listhead, capture_callback) cb_head; |
179 | QLIST_ENTRY (CaptureVoiceOut) entries; | |
ec36b695 FB |
180 | }; |
181 | ||
182 | struct SWVoiceCap { | |
183 | SWVoiceOut sw; | |
184 | CaptureVoiceOut *cap; | |
72cf2d4f | 185 | QLIST_ENTRY (SWVoiceCap) entries; |
ec36b695 | 186 | }; |
8ead62cf | 187 | |
c0fe3827 FB |
188 | struct AudioState { |
189 | struct audio_driver *drv; | |
190 | void *drv_opaque; | |
191 | ||
192 | QEMUTimer *ts; | |
72cf2d4f BS |
193 | QLIST_HEAD (card_listhead, QEMUSoundCard) card_head; |
194 | QLIST_HEAD (hw_in_listhead, HWVoiceIn) hw_head_in; | |
195 | QLIST_HEAD (hw_out_listhead, HWVoiceOut) hw_head_out; | |
196 | QLIST_HEAD (cap_listhead, CaptureVoiceOut) cap_head; | |
c0fe3827 FB |
197 | int nb_hw_voices_out; |
198 | int nb_hw_voices_in; | |
978dd635 | 199 | int vm_running; |
c0fe3827 FB |
200 | }; |
201 | ||
202 | extern struct audio_driver no_audio_driver; | |
203 | extern struct audio_driver oss_audio_driver; | |
204 | extern struct audio_driver sdl_audio_driver; | |
205 | extern struct audio_driver wav_audio_driver; | |
206 | extern struct audio_driver fmod_audio_driver; | |
207 | extern struct audio_driver alsa_audio_driver; | |
208 | extern struct audio_driver coreaudio_audio_driver; | |
209 | extern struct audio_driver dsound_audio_driver; | |
ca9cc28c | 210 | extern struct audio_driver esd_audio_driver; |
b8e59f18 | 211 | extern struct audio_driver pa_audio_driver; |
d5631638 | 212 | extern struct audio_driver winwave_audio_driver; |
1ea879e5 | 213 | extern struct mixeng_volume nominal_volume; |
c0fe3827 | 214 | |
1ea879e5 | 215 | void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as); |
1d14ffa9 FB |
216 | void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len); |
217 | ||
218 | int audio_pcm_sw_write (SWVoiceOut *sw, void *buf, int len); | |
219 | int audio_pcm_hw_get_live_in (HWVoiceIn *hw); | |
220 | ||
221 | int audio_pcm_sw_read (SWVoiceIn *sw, void *buf, int len); | |
fb065187 | 222 | |
ddabec73 | 223 | int audio_pcm_hw_clip_out (HWVoiceOut *hw, void *pcm_buf, |
224 | int live, int pending); | |
225 | ||
c0fe3827 FB |
226 | int audio_bug (const char *funcname, int cond); |
227 | void *audio_calloc (const char *funcname, int nmemb, size_t size); | |
228 | ||
713a98f8 | 229 | void audio_run (const char *msg); |
230 | ||
fb065187 FB |
231 | #define VOICE_ENABLE 1 |
232 | #define VOICE_DISABLE 2 | |
233 | ||
1d14ffa9 FB |
234 | static inline int audio_ring_dist (int dst, int src, int len) |
235 | { | |
236 | return (dst >= src) ? (dst - src) : (len - src + dst); | |
237 | } | |
238 | ||
1d14ffa9 FB |
239 | static void GCC_ATTR dolog (const char *fmt, ...) |
240 | { | |
241 | va_list ap; | |
242 | ||
243 | va_start (ap, fmt); | |
244 | AUD_vlog (AUDIO_CAP, fmt, ap); | |
245 | va_end (ap); | |
246 | } | |
247 | ||
248 | #ifdef DEBUG | |
249 | static void GCC_ATTR ldebug (const char *fmt, ...) | |
250 | { | |
251 | va_list ap; | |
252 | ||
253 | va_start (ap, fmt); | |
254 | AUD_vlog (AUDIO_CAP, fmt, ap); | |
255 | va_end (ap); | |
256 | } | |
257 | #else | |
258 | #if defined NDEBUG && defined __GNUC__ | |
259 | #define ldebug(...) | |
260 | #elif defined NDEBUG && defined _MSC_VER | |
261 | #define ldebug __noop | |
262 | #else | |
263 | static void GCC_ATTR ldebug (const char *fmt, ...) | |
264 | { | |
265 | (void) fmt; | |
266 | } | |
267 | #endif | |
268 | #endif | |
269 | ||
270 | #undef GCC_ATTR | |
271 | ||
272 | #define AUDIO_STRINGIFY_(n) #n | |
273 | #define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n) | |
274 | ||
275 | #if defined _MSC_VER || defined __GNUC__ | |
276 | #define AUDIO_FUNC __FUNCTION__ | |
277 | #else | |
278 | #define AUDIO_FUNC __FILE__ ":" AUDIO_STRINGIFY (__LINE__) | |
279 | #endif | |
280 | ||
fb065187 | 281 | #endif /* audio_int.h */ |