]> git.proxmox.com Git - mirror_qemu.git/blame - audio/audio_int.h
audio: remove remains of the old backend api
[mirror_qemu.git] / audio / audio_int.h
CommitLineData
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 */
175de524 24
fb065187
FB
25#ifndef QEMU_AUDIO_INT_H
26#define QEMU_AUDIO_INT_H
27
1ef1ec2a 28#ifdef CONFIG_AUDIO_COREAUDIO
1d14ffa9
FB
29#define FLOAT_MIXENG
30/* #define RECIPROCAL */
31#endif
32#include "mixeng.h"
33
1d14ffa9
FB
34struct audio_pcm_ops;
35
1d14ffa9
FB
36struct audio_callback {
37 void *opaque;
cb4f03e8 38 audio_callback_fn fn;
1d14ffa9 39};
fb065187 40
1d14ffa9
FB
41struct 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;
d929eba5 49 int swap_endianness;
1d14ffa9 50};
fb065187 51
526fb058 52typedef struct AudioState AudioState;
ec36b695
FB
53typedef struct SWVoiceCap SWVoiceCap;
54
1d14ffa9 55typedef struct HWVoiceOut {
526fb058 56 AudioState *s;
fb065187 57 int enabled;
713a98f8 58 int poll_mode;
fb065187 59 int pending_disable;
1d14ffa9 60 struct audio_pcm_info info;
fb065187
FB
61
62 f_sample *clip;
fb065187 63
7520462b 64 size_t rpos;
1d14ffa9 65 uint64_t ts_helper;
fb065187 66
1ea879e5 67 struct st_sample *mix_buf;
ff095e52
KZ
68 void *buf_emul;
69 size_t pos_emul, pending_emul, size_emul;
fb065187 70
7520462b 71 size_t samples;
72cf2d4f
BS
72 QLIST_HEAD (sw_out_listhead, SWVoiceOut) sw_head;
73 QLIST_HEAD (sw_cap_listhead, SWVoiceCap) cap_head;
c01b2456 74 int ctl_caps;
35f4b58c 75 struct audio_pcm_ops *pcm_ops;
72cf2d4f 76 QLIST_ENTRY (HWVoiceOut) entries;
1d14ffa9 77} HWVoiceOut;
fb065187 78
1d14ffa9 79typedef struct HWVoiceIn {
526fb058 80 AudioState *s;
1d14ffa9 81 int enabled;
713a98f8 82 int poll_mode;
1d14ffa9
FB
83 struct audio_pcm_info info;
84
85 t_sample *conv;
7372f88d 86
7520462b
KZ
87 size_t wpos;
88 size_t total_samples_captured;
1d14ffa9 89 uint64_t ts_helper;
fb065187 90
1ea879e5 91 struct st_sample *conv_buf;
ff095e52
KZ
92 void *buf_emul;
93 size_t pos_emul, pending_emul, size_emul;
fb065187 94
7520462b 95 size_t samples;
72cf2d4f 96 QLIST_HEAD (sw_in_listhead, SWVoiceIn) sw_head;
c01b2456 97 int ctl_caps;
35f4b58c 98 struct audio_pcm_ops *pcm_ops;
72cf2d4f 99 QLIST_ENTRY (HWVoiceIn) entries;
1d14ffa9 100} HWVoiceIn;
fb065187 101
1d14ffa9 102struct SWVoiceOut {
1a7dafce 103 QEMUSoundCard *card;
526fb058 104 AudioState *s;
1d14ffa9 105 struct audio_pcm_info info;
fb065187 106 t_sample *conv;
fb065187 107 int64_t ratio;
1ea879e5 108 struct st_sample *buf;
fb065187 109 void *rate;
7520462b 110 size_t total_hw_samples_mixed;
1d14ffa9
FB
111 int active;
112 int empty;
113 HWVoiceOut *hw;
114 char *name;
1ea879e5 115 struct mixeng_volume vol;
1d14ffa9 116 struct audio_callback callback;
72cf2d4f 117 QLIST_ENTRY (SWVoiceOut) entries;
1d14ffa9 118};
fb065187 119
1d14ffa9 120struct SWVoiceIn {
1a7dafce 121 QEMUSoundCard *card;
526fb058 122 AudioState *s;
fb065187 123 int active;
1d14ffa9
FB
124 struct audio_pcm_info info;
125 int64_t ratio;
126 void *rate;
7520462b 127 size_t total_hw_samples_acquired;
1ea879e5 128 struct st_sample *buf;
1d14ffa9
FB
129 f_sample *clip;
130 HWVoiceIn *hw;
fb065187 131 char *name;
1ea879e5 132 struct mixeng_volume vol;
1d14ffa9 133 struct audio_callback callback;
72cf2d4f 134 QLIST_ENTRY (SWVoiceIn) entries;
fb065187
FB
135};
136
d3893a39 137typedef struct audio_driver audio_driver;
c0fe3827
FB
138struct audio_driver {
139 const char *name;
140 const char *descr;
71830221 141 void *(*init) (Audiodev *);
c0fe3827 142 void (*fini) (void *);
35f4b58c 143 struct audio_pcm_ops *pcm_ops;
c0fe3827
FB
144 int can_be_default;
145 int max_voices_out;
146 int max_voices_in;
147 int voice_size_out;
148 int voice_size_in;
c01b2456 149 int ctl_caps;
d3893a39 150 QLIST_ENTRY(audio_driver) next;
c0fe3827
FB
151};
152
1d14ffa9 153struct audio_pcm_ops {
ff095e52
KZ
154 int (*init_out)(HWVoiceOut *hw, audsettings *as, void *drv_opaque);
155 void (*fini_out)(HWVoiceOut *hw);
ff095e52
KZ
156 size_t (*write) (HWVoiceOut *hw, void *buf, size_t size);
157 /*
158 * get a buffer that after later can be passed to put_buffer_out; optional
159 * returns the buffer, and writes it's size to size (in bytes)
160 * this is unrelated to the above buffer_size_out function
161 */
162 void *(*get_buffer_out)(HWVoiceOut *hw, size_t *size);
163 /*
164 * put back the buffer returned by get_buffer_out; optional
165 * buf must be equal the pointer returned by get_buffer_out,
166 * size may be smaller
167 */
168 size_t (*put_buffer_out)(HWVoiceOut *hw, void *buf, size_t size);
169 int (*ctl_out) (HWVoiceOut *hw, int cmd, ...);
170
171 int (*init_in) (HWVoiceIn *hw, audsettings *as, void *drv_opaque);
172 void (*fini_in) (HWVoiceIn *hw);
ff095e52
KZ
173 size_t (*read) (HWVoiceIn *hw, void *buf, size_t size);
174 void *(*get_buffer_in)(HWVoiceIn *hw, size_t *size);
175 void (*put_buffer_in)(HWVoiceIn *hw, void *buf, size_t size);
176 int (*ctl_in) (HWVoiceIn *hw, int cmd, ...);
fb065187
FB
177};
178
ff095e52
KZ
179void *audio_generic_get_buffer_in(HWVoiceIn *hw, size_t *size);
180void audio_generic_put_buffer_in(HWVoiceIn *hw, void *buf, size_t size);
181void *audio_generic_get_buffer_out(HWVoiceOut *hw, size_t *size);
182size_t audio_generic_put_buffer_out(HWVoiceOut *hw, void *buf, size_t size);
183size_t audio_generic_put_buffer_out_nowrite(HWVoiceOut *hw, void *buf,
184 size_t size);
185size_t audio_generic_write(HWVoiceOut *hw, void *buf, size_t size);
186size_t audio_generic_read(HWVoiceIn *hw, void *buf, size_t size);
187
8ead62cf
FB
188struct capture_callback {
189 struct audio_capture_ops ops;
190 void *opaque;
72cf2d4f 191 QLIST_ENTRY (capture_callback) entries;
8ead62cf
FB
192};
193
ec36b695 194struct CaptureVoiceOut {
8ead62cf
FB
195 HWVoiceOut hw;
196 void *buf;
72cf2d4f
BS
197 QLIST_HEAD (cb_listhead, capture_callback) cb_head;
198 QLIST_ENTRY (CaptureVoiceOut) entries;
ec36b695
FB
199};
200
201struct SWVoiceCap {
202 SWVoiceOut sw;
203 CaptureVoiceOut *cap;
72cf2d4f 204 QLIST_ENTRY (SWVoiceCap) entries;
ec36b695 205};
8ead62cf 206
fd5283fb 207typedef struct AudioState {
c0fe3827 208 struct audio_driver *drv;
71830221 209 Audiodev *dev;
c0fe3827
FB
210 void *drv_opaque;
211
212 QEMUTimer *ts;
72cf2d4f
BS
213 QLIST_HEAD (card_listhead, QEMUSoundCard) card_head;
214 QLIST_HEAD (hw_in_listhead, HWVoiceIn) hw_head_in;
215 QLIST_HEAD (hw_out_listhead, HWVoiceOut) hw_head_out;
216 QLIST_HEAD (cap_listhead, CaptureVoiceOut) cap_head;
c0fe3827
FB
217 int nb_hw_voices_out;
218 int nb_hw_voices_in;
978dd635 219 int vm_running;
71830221 220 int64_t period_ticks;
526fb058
KZ
221
222 bool timer_running;
223 uint64_t timer_last;
ecd97e95
KZ
224
225 QTAILQ_ENTRY(AudioState) list;
fd5283fb 226} AudioState;
c0fe3827 227
00e07679 228extern const struct mixeng_volume nominal_volume;
c0fe3827 229
71830221
KZ
230extern const char *audio_prio_list[];
231
d3893a39
GH
232void audio_driver_register(audio_driver *drv);
233audio_driver *audio_driver_lookup(const char *name);
234
1ea879e5 235void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as);
1d14ffa9
FB
236void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len);
237
c0fe3827
FB
238int audio_bug (const char *funcname, int cond);
239void *audio_calloc (const char *funcname, int nmemb, size_t size);
240
18e2c177 241void audio_run(AudioState *s, const char *msg);
713a98f8 242
fb065187
FB
243#define VOICE_ENABLE 1
244#define VOICE_DISABLE 2
6c95ab94 245#define VOICE_VOLUME 3
fb065187 246
c01b2456
MAL
247#define VOICE_VOLUME_CAP (1 << VOICE_VOLUME)
248
7520462b 249static inline size_t audio_ring_dist(size_t dst, size_t src, size_t len)
1d14ffa9
FB
250{
251 return (dst >= src) ? (dst - src) : (len - src + dst);
252}
253
87e613ea 254#define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
1d14ffa9
FB
255
256#ifdef DEBUG
87e613ea 257#define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
1d14ffa9 258#else
87e613ea 259#define ldebug(fmt, ...) (void)0
1d14ffa9 260#endif
1d14ffa9
FB
261
262#define AUDIO_STRINGIFY_(n) #n
263#define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
264
71830221
KZ
265typedef struct AudiodevListEntry {
266 Audiodev *dev;
267 QSIMPLEQ_ENTRY(AudiodevListEntry) next;
268} AudiodevListEntry;
269
270typedef QSIMPLEQ_HEAD(, AudiodevListEntry) AudiodevListHead;
271AudiodevListHead audio_handle_legacy_opts(void);
272
273void audio_free_audiodev_list(AudiodevListHead *head);
274
275void audio_create_pdos(Audiodev *dev);
276AudiodevPerDirectionOptions *audio_get_pdo_in(Audiodev *dev);
277AudiodevPerDirectionOptions *audio_get_pdo_out(Audiodev *dev);
278
175de524 279#endif /* QEMU_AUDIO_INT_H */