]> git.proxmox.com Git - mirror_qemu.git/blame - audio/audio_int.h
spapr: Don't use qdev_get_machine() in spapr_msi_write()
[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;
ed2a4a79
KZ
43 bool is_signed;
44 bool is_float;
1d14ffa9
FB
45 int freq;
46 int nchannels;
2b9cce8c 47 int bytes_per_frame;
1d14ffa9 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
dc88e38f
KZ
55typedef struct STSampleBuffer {
56 size_t pos, size;
57 st_sample samples[];
58} STSampleBuffer;
59
1d14ffa9 60typedef struct HWVoiceOut {
526fb058 61 AudioState *s;
fb065187 62 int enabled;
713a98f8 63 int poll_mode;
fb065187 64 int pending_disable;
1d14ffa9 65 struct audio_pcm_info info;
fb065187
FB
66
67 f_sample *clip;
1d14ffa9 68 uint64_t ts_helper;
fb065187 69
dc88e38f 70 STSampleBuffer *mix_buf;
ff095e52
KZ
71 void *buf_emul;
72 size_t pos_emul, pending_emul, size_emul;
fb065187 73
7520462b 74 size_t samples;
72cf2d4f
BS
75 QLIST_HEAD (sw_out_listhead, SWVoiceOut) sw_head;
76 QLIST_HEAD (sw_cap_listhead, SWVoiceCap) cap_head;
35f4b58c 77 struct audio_pcm_ops *pcm_ops;
72cf2d4f 78 QLIST_ENTRY (HWVoiceOut) entries;
1d14ffa9 79} HWVoiceOut;
fb065187 80
1d14ffa9 81typedef struct HWVoiceIn {
526fb058 82 AudioState *s;
1d14ffa9 83 int enabled;
713a98f8 84 int poll_mode;
1d14ffa9
FB
85 struct audio_pcm_info info;
86
87 t_sample *conv;
7372f88d 88
7520462b 89 size_t total_samples_captured;
1d14ffa9 90 uint64_t ts_helper;
fb065187 91
dc88e38f 92 STSampleBuffer *conv_buf;
ff095e52
KZ
93 void *buf_emul;
94 size_t pos_emul, pending_emul, size_emul;
fb065187 95
7520462b 96 size_t samples;
72cf2d4f 97 QLIST_HEAD (sw_in_listhead, SWVoiceIn) sw_head;
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;
d3893a39 149 QLIST_ENTRY(audio_driver) next;
c0fe3827
FB
150};
151
1d14ffa9 152struct audio_pcm_ops {
ff095e52
KZ
153 int (*init_out)(HWVoiceOut *hw, audsettings *as, void *drv_opaque);
154 void (*fini_out)(HWVoiceOut *hw);
ff095e52 155 size_t (*write) (HWVoiceOut *hw, void *buf, size_t size);
fdc8c5f4 156 void (*run_buffer_out)(HWVoiceOut *hw);
ff095e52
KZ
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);
571a8c52 169 void (*enable_out)(HWVoiceOut *hw, bool enable);
cecc1e79 170 void (*volume_out)(HWVoiceOut *hw, Volume *vol);
ff095e52
KZ
171
172 int (*init_in) (HWVoiceIn *hw, audsettings *as, void *drv_opaque);
173 void (*fini_in) (HWVoiceIn *hw);
ff095e52
KZ
174 size_t (*read) (HWVoiceIn *hw, void *buf, size_t size);
175 void *(*get_buffer_in)(HWVoiceIn *hw, size_t *size);
176 void (*put_buffer_in)(HWVoiceIn *hw, void *buf, size_t size);
571a8c52 177 void (*enable_in)(HWVoiceIn *hw, bool enable);
cecc1e79 178 void (*volume_in)(HWVoiceIn *hw, Volume *vol);
fb065187
FB
179};
180
ff095e52
KZ
181void *audio_generic_get_buffer_in(HWVoiceIn *hw, size_t *size);
182void audio_generic_put_buffer_in(HWVoiceIn *hw, void *buf, size_t size);
fdc8c5f4 183void audio_generic_run_buffer_out(HWVoiceOut *hw);
ff095e52
KZ
184void *audio_generic_get_buffer_out(HWVoiceOut *hw, size_t *size);
185size_t audio_generic_put_buffer_out(HWVoiceOut *hw, void *buf, size_t size);
ff095e52
KZ
186size_t audio_generic_write(HWVoiceOut *hw, void *buf, size_t size);
187size_t audio_generic_read(HWVoiceIn *hw, void *buf, size_t size);
188
8ead62cf
FB
189struct capture_callback {
190 struct audio_capture_ops ops;
191 void *opaque;
72cf2d4f 192 QLIST_ENTRY (capture_callback) entries;
8ead62cf
FB
193};
194
ec36b695 195struct CaptureVoiceOut {
8ead62cf
FB
196 HWVoiceOut hw;
197 void *buf;
72cf2d4f
BS
198 QLIST_HEAD (cb_listhead, capture_callback) cb_head;
199 QLIST_ENTRY (CaptureVoiceOut) entries;
ec36b695
FB
200};
201
202struct SWVoiceCap {
203 SWVoiceOut sw;
204 CaptureVoiceOut *cap;
72cf2d4f 205 QLIST_ENTRY (SWVoiceCap) entries;
ec36b695 206};
8ead62cf 207
fd5283fb 208typedef struct AudioState {
c0fe3827 209 struct audio_driver *drv;
71830221 210 Audiodev *dev;
c0fe3827
FB
211 void *drv_opaque;
212
213 QEMUTimer *ts;
72cf2d4f
BS
214 QLIST_HEAD (card_listhead, QEMUSoundCard) card_head;
215 QLIST_HEAD (hw_in_listhead, HWVoiceIn) hw_head_in;
216 QLIST_HEAD (hw_out_listhead, HWVoiceOut) hw_head_out;
217 QLIST_HEAD (cap_listhead, CaptureVoiceOut) cap_head;
c0fe3827
FB
218 int nb_hw_voices_out;
219 int nb_hw_voices_in;
978dd635 220 int vm_running;
71830221 221 int64_t period_ticks;
526fb058
KZ
222
223 bool timer_running;
224 uint64_t timer_last;
ecd97e95
KZ
225
226 QTAILQ_ENTRY(AudioState) list;
fd5283fb 227} AudioState;
c0fe3827 228
00e07679 229extern const struct mixeng_volume nominal_volume;
c0fe3827 230
71830221
KZ
231extern const char *audio_prio_list[];
232
d3893a39
GH
233void audio_driver_register(audio_driver *drv);
234audio_driver *audio_driver_lookup(const char *name);
235
1ea879e5 236void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as);
1d14ffa9
FB
237void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len);
238
c0fe3827
FB
239int audio_bug (const char *funcname, int cond);
240void *audio_calloc (const char *funcname, int nmemb, size_t size);
241
18e2c177 242void audio_run(AudioState *s, const char *msg);
713a98f8 243
857271a2
KZ
244typedef struct RateCtl {
245 int64_t start_ticks;
246 int64_t bytes_sent;
247} RateCtl;
248
249void audio_rate_start(RateCtl *rate);
250size_t audio_rate_get_bytes(struct audio_pcm_info *info, RateCtl *rate,
251 size_t bytes_avail);
252
7520462b 253static inline size_t audio_ring_dist(size_t dst, size_t src, size_t len)
1d14ffa9
FB
254{
255 return (dst >= src) ? (dst - src) : (len - src + dst);
256}
257
87e613ea 258#define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
1d14ffa9
FB
259
260#ifdef DEBUG
87e613ea 261#define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
1d14ffa9 262#else
87e613ea 263#define ldebug(fmt, ...) (void)0
1d14ffa9 264#endif
1d14ffa9
FB
265
266#define AUDIO_STRINGIFY_(n) #n
267#define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
268
71830221
KZ
269typedef struct AudiodevListEntry {
270 Audiodev *dev;
271 QSIMPLEQ_ENTRY(AudiodevListEntry) next;
272} AudiodevListEntry;
273
274typedef QSIMPLEQ_HEAD(, AudiodevListEntry) AudiodevListHead;
275AudiodevListHead audio_handle_legacy_opts(void);
276
277void audio_free_audiodev_list(AudiodevListHead *head);
278
279void audio_create_pdos(Audiodev *dev);
280AudiodevPerDirectionOptions *audio_get_pdo_in(Audiodev *dev);
281AudiodevPerDirectionOptions *audio_get_pdo_out(Audiodev *dev);
282
175de524 283#endif /* QEMU_AUDIO_INT_H */