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