]> git.proxmox.com Git - mirror_qemu.git/blame - audio/audio_int.h
Merge remote-tracking branch 'remotes/kraxel/tags/ui-20190822-pull-request' into...
[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;
fb065187 68
7520462b 69 size_t samples;
72cf2d4f
BS
70 QLIST_HEAD (sw_out_listhead, SWVoiceOut) sw_head;
71 QLIST_HEAD (sw_cap_listhead, SWVoiceCap) cap_head;
c01b2456 72 int ctl_caps;
35f4b58c 73 struct audio_pcm_ops *pcm_ops;
72cf2d4f 74 QLIST_ENTRY (HWVoiceOut) entries;
1d14ffa9 75} HWVoiceOut;
fb065187 76
1d14ffa9 77typedef struct HWVoiceIn {
526fb058 78 AudioState *s;
1d14ffa9 79 int enabled;
713a98f8 80 int poll_mode;
1d14ffa9
FB
81 struct audio_pcm_info info;
82
83 t_sample *conv;
7372f88d 84
7520462b
KZ
85 size_t wpos;
86 size_t total_samples_captured;
1d14ffa9 87 uint64_t ts_helper;
fb065187 88
1ea879e5 89 struct st_sample *conv_buf;
fb065187 90
7520462b 91 size_t samples;
72cf2d4f 92 QLIST_HEAD (sw_in_listhead, SWVoiceIn) sw_head;
c01b2456 93 int ctl_caps;
35f4b58c 94 struct audio_pcm_ops *pcm_ops;
72cf2d4f 95 QLIST_ENTRY (HWVoiceIn) entries;
1d14ffa9 96} HWVoiceIn;
fb065187 97
1d14ffa9 98struct SWVoiceOut {
1a7dafce 99 QEMUSoundCard *card;
526fb058 100 AudioState *s;
1d14ffa9 101 struct audio_pcm_info info;
fb065187 102 t_sample *conv;
fb065187 103 int64_t ratio;
1ea879e5 104 struct st_sample *buf;
fb065187 105 void *rate;
7520462b 106 size_t total_hw_samples_mixed;
1d14ffa9
FB
107 int active;
108 int empty;
109 HWVoiceOut *hw;
110 char *name;
1ea879e5 111 struct mixeng_volume vol;
1d14ffa9 112 struct audio_callback callback;
72cf2d4f 113 QLIST_ENTRY (SWVoiceOut) entries;
1d14ffa9 114};
fb065187 115
1d14ffa9 116struct SWVoiceIn {
1a7dafce 117 QEMUSoundCard *card;
526fb058 118 AudioState *s;
fb065187 119 int active;
1d14ffa9
FB
120 struct audio_pcm_info info;
121 int64_t ratio;
122 void *rate;
7520462b 123 size_t total_hw_samples_acquired;
1ea879e5 124 struct st_sample *buf;
1d14ffa9
FB
125 f_sample *clip;
126 HWVoiceIn *hw;
fb065187 127 char *name;
1ea879e5 128 struct mixeng_volume vol;
1d14ffa9 129 struct audio_callback callback;
72cf2d4f 130 QLIST_ENTRY (SWVoiceIn) entries;
fb065187
FB
131};
132
d3893a39 133typedef struct audio_driver audio_driver;
c0fe3827
FB
134struct audio_driver {
135 const char *name;
136 const char *descr;
71830221 137 void *(*init) (Audiodev *);
c0fe3827 138 void (*fini) (void *);
35f4b58c 139 struct audio_pcm_ops *pcm_ops;
c0fe3827
FB
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;
c01b2456 145 int ctl_caps;
d3893a39 146 QLIST_ENTRY(audio_driver) next;
c0fe3827
FB
147};
148
1d14ffa9 149struct audio_pcm_ops {
5706db1d 150 int (*init_out)(HWVoiceOut *hw, struct audsettings *as, void *drv_opaque);
1d14ffa9 151 void (*fini_out)(HWVoiceOut *hw);
7520462b 152 size_t (*run_out)(HWVoiceOut *hw, size_t live);
1d14ffa9
FB
153 int (*ctl_out) (HWVoiceOut *hw, int cmd, ...);
154
5706db1d 155 int (*init_in) (HWVoiceIn *hw, struct audsettings *as, void *drv_opaque);
1d14ffa9 156 void (*fini_in) (HWVoiceIn *hw);
7520462b 157 size_t (*run_in)(HWVoiceIn *hw);
1d14ffa9 158 int (*ctl_in) (HWVoiceIn *hw, int cmd, ...);
fb065187
FB
159};
160
8ead62cf
FB
161struct capture_callback {
162 struct audio_capture_ops ops;
163 void *opaque;
72cf2d4f 164 QLIST_ENTRY (capture_callback) entries;
8ead62cf
FB
165};
166
ec36b695 167struct CaptureVoiceOut {
8ead62cf
FB
168 HWVoiceOut hw;
169 void *buf;
72cf2d4f
BS
170 QLIST_HEAD (cb_listhead, capture_callback) cb_head;
171 QLIST_ENTRY (CaptureVoiceOut) entries;
ec36b695
FB
172};
173
174struct SWVoiceCap {
175 SWVoiceOut sw;
176 CaptureVoiceOut *cap;
72cf2d4f 177 QLIST_ENTRY (SWVoiceCap) entries;
ec36b695 178};
8ead62cf 179
fd5283fb 180typedef struct AudioState {
c0fe3827 181 struct audio_driver *drv;
71830221 182 Audiodev *dev;
c0fe3827
FB
183 void *drv_opaque;
184
185 QEMUTimer *ts;
72cf2d4f
BS
186 QLIST_HEAD (card_listhead, QEMUSoundCard) card_head;
187 QLIST_HEAD (hw_in_listhead, HWVoiceIn) hw_head_in;
188 QLIST_HEAD (hw_out_listhead, HWVoiceOut) hw_head_out;
189 QLIST_HEAD (cap_listhead, CaptureVoiceOut) cap_head;
c0fe3827
FB
190 int nb_hw_voices_out;
191 int nb_hw_voices_in;
978dd635 192 int vm_running;
71830221 193 int64_t period_ticks;
526fb058
KZ
194
195 bool timer_running;
196 uint64_t timer_last;
ecd97e95
KZ
197
198 QTAILQ_ENTRY(AudioState) list;
fd5283fb 199} AudioState;
c0fe3827 200
00e07679 201extern const struct mixeng_volume nominal_volume;
c0fe3827 202
71830221
KZ
203extern const char *audio_prio_list[];
204
d3893a39
GH
205void audio_driver_register(audio_driver *drv);
206audio_driver *audio_driver_lookup(const char *name);
207
1ea879e5 208void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as);
1d14ffa9
FB
209void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len);
210
7520462b 211size_t audio_pcm_hw_get_live_in(HWVoiceIn *hw);
1d14ffa9 212
7520462b
KZ
213size_t audio_pcm_hw_clip_out(HWVoiceOut *hw, void *pcm_buf,
214 size_t live, size_t pending);
ddabec73 215
c0fe3827
FB
216int audio_bug (const char *funcname, int cond);
217void *audio_calloc (const char *funcname, int nmemb, size_t size);
218
18e2c177 219void audio_run(AudioState *s, const char *msg);
713a98f8 220
fb065187
FB
221#define VOICE_ENABLE 1
222#define VOICE_DISABLE 2
6c95ab94 223#define VOICE_VOLUME 3
fb065187 224
c01b2456
MAL
225#define VOICE_VOLUME_CAP (1 << VOICE_VOLUME)
226
7520462b 227static inline size_t audio_ring_dist(size_t dst, size_t src, size_t len)
1d14ffa9
FB
228{
229 return (dst >= src) ? (dst - src) : (len - src + dst);
230}
231
87e613ea 232#define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
1d14ffa9
FB
233
234#ifdef DEBUG
87e613ea 235#define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
1d14ffa9 236#else
87e613ea 237#define ldebug(fmt, ...) (void)0
1d14ffa9 238#endif
1d14ffa9
FB
239
240#define AUDIO_STRINGIFY_(n) #n
241#define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
242
71830221
KZ
243typedef struct AudiodevListEntry {
244 Audiodev *dev;
245 QSIMPLEQ_ENTRY(AudiodevListEntry) next;
246} AudiodevListEntry;
247
248typedef QSIMPLEQ_HEAD(, AudiodevListEntry) AudiodevListHead;
249AudiodevListHead audio_handle_legacy_opts(void);
250
251void audio_free_audiodev_list(AudiodevListHead *head);
252
253void audio_create_pdos(Audiodev *dev);
254AudiodevPerDirectionOptions *audio_get_pdo_in(Audiodev *dev);
255AudiodevPerDirectionOptions *audio_get_pdo_out(Audiodev *dev);
256
175de524 257#endif /* QEMU_AUDIO_INT_H */