]> git.proxmox.com Git - mirror_qemu.git/blob - audio/audio_int.h
paaudio: fix playback glitches
[mirror_qemu.git] / audio / audio_int.h
1 /*
2 * QEMU Audio subsystem header
3 *
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
5 *
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
25 #ifndef QEMU_AUDIO_INT_H
26 #define QEMU_AUDIO_INT_H
27
28 #ifdef CONFIG_AUDIO_COREAUDIO
29 #define FLOAT_MIXENG
30 /* #define RECIPROCAL */
31 #endif
32 #include "mixeng.h"
33
34 struct audio_pcm_ops;
35
36 struct audio_callback {
37 void *opaque;
38 audio_callback_fn fn;
39 };
40
41 struct audio_pcm_info {
42 int bits;
43 int sign;
44 int freq;
45 int nchannels;
46 int align;
47 int shift;
48 int bytes_per_second;
49 int swap_endianness;
50 };
51
52 typedef struct AudioState AudioState;
53 typedef struct SWVoiceCap SWVoiceCap;
54
55 typedef struct HWVoiceOut {
56 AudioState *s;
57 int enabled;
58 int poll_mode;
59 int pending_disable;
60 struct audio_pcm_info info;
61
62 f_sample *clip;
63
64 int rpos;
65 uint64_t ts_helper;
66
67 struct st_sample *mix_buf;
68
69 int samples;
70 QLIST_HEAD (sw_out_listhead, SWVoiceOut) sw_head;
71 QLIST_HEAD (sw_cap_listhead, SWVoiceCap) cap_head;
72 int ctl_caps;
73 struct audio_pcm_ops *pcm_ops;
74 QLIST_ENTRY (HWVoiceOut) entries;
75 } HWVoiceOut;
76
77 typedef struct HWVoiceIn {
78 AudioState *s;
79 int enabled;
80 int poll_mode;
81 struct audio_pcm_info info;
82
83 t_sample *conv;
84
85 int wpos;
86 int total_samples_captured;
87 uint64_t ts_helper;
88
89 struct st_sample *conv_buf;
90
91 int samples;
92 QLIST_HEAD (sw_in_listhead, SWVoiceIn) sw_head;
93 int ctl_caps;
94 struct audio_pcm_ops *pcm_ops;
95 QLIST_ENTRY (HWVoiceIn) entries;
96 } HWVoiceIn;
97
98 struct SWVoiceOut {
99 QEMUSoundCard *card;
100 AudioState *s;
101 struct audio_pcm_info info;
102 t_sample *conv;
103 int64_t ratio;
104 struct st_sample *buf;
105 void *rate;
106 int total_hw_samples_mixed;
107 int active;
108 int empty;
109 HWVoiceOut *hw;
110 char *name;
111 struct mixeng_volume vol;
112 struct audio_callback callback;
113 QLIST_ENTRY (SWVoiceOut) entries;
114 };
115
116 struct SWVoiceIn {
117 QEMUSoundCard *card;
118 AudioState *s;
119 int active;
120 struct audio_pcm_info info;
121 int64_t ratio;
122 void *rate;
123 int total_hw_samples_acquired;
124 struct st_sample *buf;
125 f_sample *clip;
126 HWVoiceIn *hw;
127 char *name;
128 struct mixeng_volume vol;
129 struct audio_callback callback;
130 QLIST_ENTRY (SWVoiceIn) entries;
131 };
132
133 typedef struct audio_driver audio_driver;
134 struct audio_driver {
135 const char *name;
136 const char *descr;
137 void *(*init) (Audiodev *);
138 void (*fini) (void *);
139 struct audio_pcm_ops *pcm_ops;
140 int can_be_default;
141 int max_voices_out;
142 int max_voices_in;
143 int voice_size_out;
144 int voice_size_in;
145 int ctl_caps;
146 QLIST_ENTRY(audio_driver) next;
147 };
148
149 struct audio_pcm_ops {
150 int (*init_out)(HWVoiceOut *hw, struct audsettings *as, void *drv_opaque);
151 void (*fini_out)(HWVoiceOut *hw);
152 int (*run_out) (HWVoiceOut *hw, int live);
153 int (*write) (SWVoiceOut *sw, void *buf, int size);
154 int (*ctl_out) (HWVoiceOut *hw, int cmd, ...);
155
156 int (*init_in) (HWVoiceIn *hw, struct audsettings *as, void *drv_opaque);
157 void (*fini_in) (HWVoiceIn *hw);
158 int (*run_in) (HWVoiceIn *hw);
159 int (*read) (SWVoiceIn *sw, void *buf, int size);
160 int (*ctl_in) (HWVoiceIn *hw, int cmd, ...);
161 };
162
163 struct capture_callback {
164 struct audio_capture_ops ops;
165 void *opaque;
166 QLIST_ENTRY (capture_callback) entries;
167 };
168
169 struct CaptureVoiceOut {
170 HWVoiceOut hw;
171 void *buf;
172 QLIST_HEAD (cb_listhead, capture_callback) cb_head;
173 QLIST_ENTRY (CaptureVoiceOut) entries;
174 };
175
176 struct SWVoiceCap {
177 SWVoiceOut sw;
178 CaptureVoiceOut *cap;
179 QLIST_ENTRY (SWVoiceCap) entries;
180 };
181
182 typedef struct AudioState {
183 struct audio_driver *drv;
184 Audiodev *dev;
185 void *drv_opaque;
186
187 QEMUTimer *ts;
188 QLIST_HEAD (card_listhead, QEMUSoundCard) card_head;
189 QLIST_HEAD (hw_in_listhead, HWVoiceIn) hw_head_in;
190 QLIST_HEAD (hw_out_listhead, HWVoiceOut) hw_head_out;
191 QLIST_HEAD (cap_listhead, CaptureVoiceOut) cap_head;
192 int nb_hw_voices_out;
193 int nb_hw_voices_in;
194 int vm_running;
195 int64_t period_ticks;
196
197 bool timer_running;
198 uint64_t timer_last;
199
200 QTAILQ_ENTRY(AudioState) list;
201 } AudioState;
202
203 extern const struct mixeng_volume nominal_volume;
204
205 extern const char *audio_prio_list[];
206
207 void audio_driver_register(audio_driver *drv);
208 audio_driver *audio_driver_lookup(const char *name);
209
210 void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as);
211 void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len);
212
213 int audio_pcm_sw_write (SWVoiceOut *sw, void *buf, int len);
214 int audio_pcm_hw_get_live_in (HWVoiceIn *hw);
215
216 int audio_pcm_sw_read (SWVoiceIn *sw, void *buf, int len);
217
218 int audio_pcm_hw_clip_out (HWVoiceOut *hw, void *pcm_buf,
219 int live, int pending);
220
221 int audio_bug (const char *funcname, int cond);
222 void *audio_calloc (const char *funcname, int nmemb, size_t size);
223
224 void audio_run(AudioState *s, const char *msg);
225
226 #define VOICE_ENABLE 1
227 #define VOICE_DISABLE 2
228 #define VOICE_VOLUME 3
229
230 #define VOICE_VOLUME_CAP (1 << VOICE_VOLUME)
231
232 static inline int audio_ring_dist (int dst, int src, int len)
233 {
234 return (dst >= src) ? (dst - src) : (len - src + dst);
235 }
236
237 #define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
238
239 #ifdef DEBUG
240 #define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
241 #else
242 #define ldebug(fmt, ...) (void)0
243 #endif
244
245 #define AUDIO_STRINGIFY_(n) #n
246 #define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
247
248 typedef struct AudiodevListEntry {
249 Audiodev *dev;
250 QSIMPLEQ_ENTRY(AudiodevListEntry) next;
251 } AudiodevListEntry;
252
253 typedef QSIMPLEQ_HEAD(, AudiodevListEntry) AudiodevListHead;
254 AudiodevListHead audio_handle_legacy_opts(void);
255
256 void audio_free_audiodev_list(AudiodevListHead *head);
257
258 void audio_create_pdos(Audiodev *dev);
259 AudiodevPerDirectionOptions *audio_get_pdo_in(Audiodev *dev);
260 AudiodevPerDirectionOptions *audio_get_pdo_out(Audiodev *dev);
261
262 #endif /* QEMU_AUDIO_INT_H */