]> Git Repo - qemu.git/blame - audio/audio_int.h
modules: add audio module annotations
[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 174 size_t (*read) (HWVoiceIn *hw, void *buf, size_t size);
a2893c83 175 void (*run_buffer_in)(HWVoiceIn *hw);
ff095e52
KZ
176 void *(*get_buffer_in)(HWVoiceIn *hw, size_t *size);
177 void (*put_buffer_in)(HWVoiceIn *hw, void *buf, size_t size);
571a8c52 178 void (*enable_in)(HWVoiceIn *hw, bool enable);
cecc1e79 179 void (*volume_in)(HWVoiceIn *hw, Volume *vol);
fb065187
FB
180};
181
a2893c83 182void audio_generic_run_buffer_in(HWVoiceIn *hw);
ff095e52
KZ
183void *audio_generic_get_buffer_in(HWVoiceIn *hw, size_t *size);
184void audio_generic_put_buffer_in(HWVoiceIn *hw, void *buf, size_t size);
fdc8c5f4 185void audio_generic_run_buffer_out(HWVoiceOut *hw);
ff095e52
KZ
186void *audio_generic_get_buffer_out(HWVoiceOut *hw, size_t *size);
187size_t audio_generic_put_buffer_out(HWVoiceOut *hw, void *buf, size_t size);
ff095e52
KZ
188size_t audio_generic_write(HWVoiceOut *hw, void *buf, size_t size);
189size_t audio_generic_read(HWVoiceIn *hw, void *buf, size_t size);
190
8ead62cf
FB
191struct capture_callback {
192 struct audio_capture_ops ops;
193 void *opaque;
72cf2d4f 194 QLIST_ENTRY (capture_callback) entries;
8ead62cf
FB
195};
196
ec36b695 197struct CaptureVoiceOut {
8ead62cf
FB
198 HWVoiceOut hw;
199 void *buf;
72cf2d4f
BS
200 QLIST_HEAD (cb_listhead, capture_callback) cb_head;
201 QLIST_ENTRY (CaptureVoiceOut) entries;
ec36b695
FB
202};
203
204struct SWVoiceCap {
205 SWVoiceOut sw;
206 CaptureVoiceOut *cap;
72cf2d4f 207 QLIST_ENTRY (SWVoiceCap) entries;
ec36b695 208};
8ead62cf 209
fd5283fb 210typedef struct AudioState {
c0fe3827 211 struct audio_driver *drv;
71830221 212 Audiodev *dev;
c0fe3827
FB
213 void *drv_opaque;
214
215 QEMUTimer *ts;
72cf2d4f
BS
216 QLIST_HEAD (card_listhead, QEMUSoundCard) card_head;
217 QLIST_HEAD (hw_in_listhead, HWVoiceIn) hw_head_in;
218 QLIST_HEAD (hw_out_listhead, HWVoiceOut) hw_head_out;
219 QLIST_HEAD (cap_listhead, CaptureVoiceOut) cap_head;
c0fe3827
FB
220 int nb_hw_voices_out;
221 int nb_hw_voices_in;
978dd635 222 int vm_running;
71830221 223 int64_t period_ticks;
526fb058
KZ
224
225 bool timer_running;
226 uint64_t timer_last;
ecd97e95
KZ
227
228 QTAILQ_ENTRY(AudioState) list;
fd5283fb 229} AudioState;
c0fe3827 230
00e07679 231extern const struct mixeng_volume nominal_volume;
c0fe3827 232
71830221
KZ
233extern const char *audio_prio_list[];
234
d3893a39
GH
235void audio_driver_register(audio_driver *drv);
236audio_driver *audio_driver_lookup(const char *name);
237
1ea879e5 238void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as);
1d14ffa9
FB
239void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len);
240
c0fe3827
FB
241int audio_bug (const char *funcname, int cond);
242void *audio_calloc (const char *funcname, int nmemb, size_t size);
243
18e2c177 244void audio_run(AudioState *s, const char *msg);
713a98f8 245
37a54d05
VR
246const char *audio_application_name(void);
247
857271a2
KZ
248typedef struct RateCtl {
249 int64_t start_ticks;
250 int64_t bytes_sent;
251} RateCtl;
252
253void audio_rate_start(RateCtl *rate);
254size_t audio_rate_get_bytes(struct audio_pcm_info *info, RateCtl *rate,
255 size_t bytes_avail);
256
7520462b 257static inline size_t audio_ring_dist(size_t dst, size_t src, size_t len)
1d14ffa9
FB
258{
259 return (dst >= src) ? (dst - src) : (len - src + dst);
260}
261
87e613ea 262#define dolog(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
1d14ffa9
FB
263
264#ifdef DEBUG
87e613ea 265#define ldebug(fmt, ...) AUD_log(AUDIO_CAP, fmt, ## __VA_ARGS__)
1d14ffa9 266#else
87e613ea 267#define ldebug(fmt, ...) (void)0
1d14ffa9 268#endif
1d14ffa9
FB
269
270#define AUDIO_STRINGIFY_(n) #n
271#define AUDIO_STRINGIFY(n) AUDIO_STRINGIFY_(n)
272
71830221
KZ
273typedef struct AudiodevListEntry {
274 Audiodev *dev;
275 QSIMPLEQ_ENTRY(AudiodevListEntry) next;
276} AudiodevListEntry;
277
278typedef QSIMPLEQ_HEAD(, AudiodevListEntry) AudiodevListHead;
279AudiodevListHead audio_handle_legacy_opts(void);
280
281void audio_free_audiodev_list(AudiodevListHead *head);
282
283void audio_create_pdos(Audiodev *dev);
284AudiodevPerDirectionOptions *audio_get_pdo_in(Audiodev *dev);
285AudiodevPerDirectionOptions *audio_get_pdo_out(Audiodev *dev);
286
175de524 287#endif /* QEMU_AUDIO_INT_H */
This page took 0.710459 seconds and 4 git commands to generate.