]> git.proxmox.com Git - mirror_qemu.git/blame - audio/audio.c
linux-user: Add emulation for MADV_WIPEONFORK and MADV_KEEPONFORK in madvise()
[mirror_qemu.git] / audio / audio.c
CommitLineData
85571bc7
FB
1/*
2 * QEMU Audio subsystem
1d14ffa9
FB
3 *
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
5 *
85571bc7
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 */
0b8fa32f 24
6086a565 25#include "qemu/osdep.h"
87ecb68b 26#include "audio.h"
d6454270 27#include "migration/vmstate.h"
83c9089e 28#include "monitor/monitor.h"
1de7afc9 29#include "qemu/timer.h"
71830221
KZ
30#include "qapi/error.h"
31#include "qapi/qobject-input-visitor.h"
32#include "qapi/qapi-visit-audio.h"
f348b6d1 33#include "qemu/cutils.h"
0b8fa32f 34#include "qemu/module.h"
5e03b6da 35#include "qemu/help_option.h"
89fc45d5 36#include "sysemu/sysemu.h"
3d4d16f4 37#include "sysemu/replay.h"
54d31236 38#include "sysemu/runstate.h"
f0c4555e 39#include "ui/qemu-spice.h"
1a961e78 40#include "trace.h"
85571bc7 41
1d14ffa9
FB
42#define AUDIO_CAP "audio"
43#include "audio_int.h"
85571bc7 44
1d14ffa9
FB
45/* #define DEBUG_LIVE */
46/* #define DEBUG_OUT */
8ead62cf 47/* #define DEBUG_CAPTURE */
713a98f8 48/* #define DEBUG_POLL */
85571bc7 49
c0fe3827
FB
50#define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown"
51
2358a494
JQ
52
53/* Order of CONFIG_AUDIO_DRIVERS is import.
54 The 1st one is the one used by default, that is the reason
55 that we generate the list.
56*/
71830221 57const char *audio_prio_list[] = {
d3893a39 58 "spice",
2358a494 59 CONFIG_AUDIO_DRIVERS
d3893a39
GH
60 "none",
61 "wav",
71830221 62 NULL
1d14ffa9 63};
85571bc7 64
d3893a39 65static QLIST_HEAD(, audio_driver) audio_drivers;
71830221 66static AudiodevListHead audiodevs = QSIMPLEQ_HEAD_INITIALIZER(audiodevs);
d3893a39
GH
67
68void audio_driver_register(audio_driver *drv)
69{
70 QLIST_INSERT_HEAD(&audio_drivers, drv, next);
71}
72
73audio_driver *audio_driver_lookup(const char *name)
74{
75 struct audio_driver *d;
c551fb0b
CF
76 Error *local_err = NULL;
77 int rv;
d3893a39
GH
78
79 QLIST_FOREACH(d, &audio_drivers, next) {
80 if (strcmp(name, d->name) == 0) {
81 return d;
82 }
83 }
c551fb0b
CF
84 rv = audio_module_load(name, &local_err);
85 if (rv > 0) {
86 QLIST_FOREACH(d, &audio_drivers, next) {
87 if (strcmp(name, d->name) == 0) {
88 return d;
89 }
65ba8696 90 }
c551fb0b
CF
91 } else if (rv < 0) {
92 error_report_err(local_err);
65ba8696 93 }
d3893a39
GH
94 return NULL;
95}
96
ecd97e95
KZ
97static QTAILQ_HEAD(AudioStateHead, AudioState) audio_states =
98 QTAILQ_HEAD_INITIALIZER(audio_states);
c0fe3827 99
00e07679 100const struct mixeng_volume nominal_volume = {
14658cd1 101 .mute = 0,
1d14ffa9 102#ifdef FLOAT_MIXENG
14658cd1
JQ
103 .r = 1.0,
104 .l = 1.0,
1d14ffa9 105#else
14658cd1
JQ
106 .r = 1ULL << 32,
107 .l = 1ULL << 32,
1d14ffa9 108#endif
85571bc7
FB
109};
110
af2041ed
KZ
111static bool legacy_config = true;
112
1d14ffa9 113int audio_bug (const char *funcname, int cond)
85571bc7 114{
1d14ffa9
FB
115 if (cond) {
116 static int shown;
117
8ead62cf 118 AUD_log (NULL, "A bug was just triggered in %s\n", funcname);
1d14ffa9
FB
119 if (!shown) {
120 shown = 1;
121 AUD_log (NULL, "Save all your work and restart without audio\n");
1d14ffa9
FB
122 AUD_log (NULL, "I am sorry\n");
123 }
124 AUD_log (NULL, "Context:\n");
85571bc7
FB
125 }
126
1d14ffa9 127 return cond;
85571bc7
FB
128}
129
f941aa25
TS
130static inline int audio_bits_to_index (int bits)
131{
132 switch (bits) {
133 case 8:
134 return 0;
135
136 case 16:
137 return 1;
138
139 case 32:
140 return 2;
141
142 default:
143 audio_bug ("bits_to_index", 1);
144 AUD_log (NULL, "invalid bits %d\n", bits);
12f4abf6 145 return 0;
f941aa25
TS
146 }
147}
148
c0fe3827
FB
149void *audio_calloc (const char *funcname, int nmemb, size_t size)
150{
151 int cond;
152 size_t len;
153
154 len = nmemb * size;
155 cond = !nmemb || !size;
156 cond |= nmemb < 0;
157 cond |= len < size;
158
159 if (audio_bug ("audio_calloc", cond)) {
160 AUD_log (NULL, "%s passed invalid arguments to audio_calloc\n",
161 funcname);
541e0844 162 AUD_log (NULL, "nmemb=%d size=%zu (len=%zu)\n", nmemb, size, len);
12f4abf6 163 return NULL;
c0fe3827
FB
164 }
165
7267c094 166 return g_malloc0 (len);
c0fe3827
FB
167}
168
541e0844 169void AUD_vlog (const char *cap, const char *fmt, va_list ap)
85571bc7 170{
06ac27f6
KZ
171 if (cap) {
172 fprintf(stderr, "%s: ", cap);
541e0844 173 }
541e0844 174
06ac27f6 175 vfprintf(stderr, fmt, ap);
85571bc7
FB
176}
177
541e0844 178void AUD_log (const char *cap, const char *fmt, ...)
85571bc7 179{
541e0844
FB
180 va_list ap;
181
182 va_start (ap, fmt);
183 AUD_vlog (cap, fmt, ap);
184 va_end (ap);
85571bc7
FB
185}
186
1ea879e5 187static void audio_print_settings (struct audsettings *as)
c0fe3827
FB
188{
189 dolog ("frequency=%d nchannels=%d fmt=", as->freq, as->nchannels);
190
191 switch (as->fmt) {
85bc5852 192 case AUDIO_FORMAT_S8:
c0fe3827
FB
193 AUD_log (NULL, "S8");
194 break;
85bc5852 195 case AUDIO_FORMAT_U8:
c0fe3827
FB
196 AUD_log (NULL, "U8");
197 break;
85bc5852 198 case AUDIO_FORMAT_S16:
c0fe3827
FB
199 AUD_log (NULL, "S16");
200 break;
85bc5852 201 case AUDIO_FORMAT_U16:
c0fe3827
FB
202 AUD_log (NULL, "U16");
203 break;
85bc5852 204 case AUDIO_FORMAT_S32:
d50997f9 205 AUD_log (NULL, "S32");
206 break;
85bc5852 207 case AUDIO_FORMAT_U32:
d50997f9 208 AUD_log (NULL, "U32");
209 break;
ed2a4a79
KZ
210 case AUDIO_FORMAT_F32:
211 AUD_log (NULL, "F32");
212 break;
c0fe3827
FB
213 default:
214 AUD_log (NULL, "invalid(%d)", as->fmt);
215 break;
216 }
ec36b695
FB
217
218 AUD_log (NULL, " endianness=");
d929eba5
FB
219 switch (as->endianness) {
220 case 0:
221 AUD_log (NULL, "little");
222 break;
223 case 1:
224 AUD_log (NULL, "big");
225 break;
226 default:
227 AUD_log (NULL, "invalid");
228 break;
229 }
c0fe3827
FB
230 AUD_log (NULL, "\n");
231}
232
1ea879e5 233static int audio_validate_settings (struct audsettings *as)
c0fe3827
FB
234{
235 int invalid;
236
b5c7db3e 237 invalid = as->nchannels < 1;
d929eba5 238 invalid |= as->endianness != 0 && as->endianness != 1;
c0fe3827
FB
239
240 switch (as->fmt) {
85bc5852
KZ
241 case AUDIO_FORMAT_S8:
242 case AUDIO_FORMAT_U8:
243 case AUDIO_FORMAT_S16:
244 case AUDIO_FORMAT_U16:
245 case AUDIO_FORMAT_S32:
246 case AUDIO_FORMAT_U32:
ed2a4a79 247 case AUDIO_FORMAT_F32:
c0fe3827
FB
248 break;
249 default:
250 invalid = 1;
251 break;
252 }
253
254 invalid |= as->freq <= 0;
d929eba5 255 return invalid ? -1 : 0;
c0fe3827
FB
256}
257
1ea879e5 258static int audio_pcm_info_eq (struct audio_pcm_info *info, struct audsettings *as)
85571bc7 259{
ed2a4a79
KZ
260 int bits = 8;
261 bool is_signed = false, is_float = false;
85571bc7 262
c0fe3827 263 switch (as->fmt) {
85bc5852 264 case AUDIO_FORMAT_S8:
ed2a4a79 265 is_signed = true;
b4bd0b16 266 /* fall through */
85bc5852 267 case AUDIO_FORMAT_U8:
1d14ffa9
FB
268 break;
269
85bc5852 270 case AUDIO_FORMAT_S16:
ed2a4a79 271 is_signed = true;
b4bd0b16 272 /* fall through */
85bc5852 273 case AUDIO_FORMAT_U16:
1d14ffa9
FB
274 bits = 16;
275 break;
f941aa25 276
ed2a4a79
KZ
277 case AUDIO_FORMAT_F32:
278 is_float = true;
279 /* fall through */
85bc5852 280 case AUDIO_FORMAT_S32:
ed2a4a79 281 is_signed = true;
b4bd0b16 282 /* fall through */
85bc5852 283 case AUDIO_FORMAT_U32:
f941aa25
TS
284 bits = 32;
285 break;
85bc5852
KZ
286
287 default:
288 abort();
85571bc7 289 }
c0fe3827
FB
290 return info->freq == as->freq
291 && info->nchannels == as->nchannels
ed2a4a79
KZ
292 && info->is_signed == is_signed
293 && info->is_float == is_float
d929eba5
FB
294 && info->bits == bits
295 && info->swap_endianness == (as->endianness != AUDIO_HOST_ENDIANNESS);
1d14ffa9 296}
85571bc7 297
1ea879e5 298void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as)
1d14ffa9 299{
ed2a4a79
KZ
300 int bits = 8, mul;
301 bool is_signed = false, is_float = false;
1d14ffa9 302
c0fe3827 303 switch (as->fmt) {
85bc5852 304 case AUDIO_FORMAT_S8:
ed2a4a79 305 is_signed = true;
f7621fd1 306 /* fall through */
85bc5852 307 case AUDIO_FORMAT_U8:
2b9cce8c 308 mul = 1;
85571bc7
FB
309 break;
310
85bc5852 311 case AUDIO_FORMAT_S16:
ed2a4a79 312 is_signed = true;
e4634941 313 /* fall through */
85bc5852 314 case AUDIO_FORMAT_U16:
85571bc7 315 bits = 16;
2b9cce8c 316 mul = 2;
f941aa25
TS
317 break;
318
ed2a4a79
KZ
319 case AUDIO_FORMAT_F32:
320 is_float = true;
321 /* fall through */
85bc5852 322 case AUDIO_FORMAT_S32:
ed2a4a79 323 is_signed = true;
e4634941 324 /* fall through */
85bc5852 325 case AUDIO_FORMAT_U32:
f941aa25 326 bits = 32;
2b9cce8c 327 mul = 4;
85571bc7 328 break;
85bc5852
KZ
329
330 default:
331 abort();
85571bc7
FB
332 }
333
c0fe3827 334 info->freq = as->freq;
1d14ffa9 335 info->bits = bits;
ed2a4a79
KZ
336 info->is_signed = is_signed;
337 info->is_float = is_float;
c0fe3827 338 info->nchannels = as->nchannels;
2b9cce8c
KZ
339 info->bytes_per_frame = as->nchannels * mul;
340 info->bytes_per_second = info->freq * info->bytes_per_frame;
d929eba5 341 info->swap_endianness = (as->endianness != AUDIO_HOST_ENDIANNESS);
85571bc7
FB
342}
343
1d14ffa9 344void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len)
85571bc7 345{
1d14ffa9
FB
346 if (!len) {
347 return;
348 }
349
ed2a4a79 350 if (info->is_signed || info->is_float) {
2b9cce8c 351 memset(buf, 0x00, len * info->bytes_per_frame);
6c6886bd 352 } else {
f941aa25
TS
353 switch (info->bits) {
354 case 8:
2b9cce8c 355 memset(buf, 0x80, len * info->bytes_per_frame);
f941aa25 356 break;
1d14ffa9 357
f941aa25
TS
358 case 16:
359 {
360 int i;
361 uint16_t *p = buf;
f941aa25
TS
362 short s = INT16_MAX;
363
364 if (info->swap_endianness) {
365 s = bswap16 (s);
366 }
367
2b9cce8c 368 for (i = 0; i < len * info->nchannels; i++) {
f941aa25
TS
369 p[i] = s;
370 }
1d14ffa9 371 }
f941aa25
TS
372 break;
373
374 case 32:
375 {
376 int i;
377 uint32_t *p = buf;
f941aa25
TS
378 int32_t s = INT32_MAX;
379
380 if (info->swap_endianness) {
381 s = bswap32 (s);
382 }
1d14ffa9 383
2b9cce8c 384 for (i = 0; i < len * info->nchannels; i++) {
f941aa25
TS
385 p[i] = s;
386 }
1d14ffa9 387 }
f941aa25
TS
388 break;
389
390 default:
391 AUD_log (NULL, "audio_pcm_info_clear_buf: invalid bits %d\n",
392 info->bits);
393 break;
1d14ffa9 394 }
85571bc7
FB
395 }
396}
397
8ead62cf
FB
398/*
399 * Capture
400 */
00e07679 401static void noop_conv (struct st_sample *dst, const void *src, int samples)
8ead62cf
FB
402{
403 (void) src;
404 (void) dst;
405 (void) samples;
8ead62cf
FB
406}
407
526fb058
KZ
408static CaptureVoiceOut *audio_pcm_capture_find_specific(AudioState *s,
409 struct audsettings *as)
8ead62cf
FB
410{
411 CaptureVoiceOut *cap;
8ead62cf
FB
412
413 for (cap = s->cap_head.lh_first; cap; cap = cap->entries.le_next) {
d929eba5 414 if (audio_pcm_info_eq (&cap->hw.info, as)) {
8ead62cf
FB
415 return cap;
416 }
417 }
418 return NULL;
419}
420
ec36b695 421static void audio_notify_capture (CaptureVoiceOut *cap, audcnotification_e cmd)
8ead62cf 422{
ec36b695
FB
423 struct capture_callback *cb;
424
425#ifdef DEBUG_CAPTURE
426 dolog ("notification %d sent\n", cmd);
427#endif
428 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) {
429 cb->ops.notify (cb->opaque, cmd);
430 }
431}
8ead62cf 432
ec36b695
FB
433static void audio_capture_maybe_changed (CaptureVoiceOut *cap, int enabled)
434{
435 if (cap->hw.enabled != enabled) {
436 audcnotification_e cmd;
8ead62cf 437 cap->hw.enabled = enabled;
ec36b695
FB
438 cmd = enabled ? AUD_CNOTIFY_ENABLE : AUD_CNOTIFY_DISABLE;
439 audio_notify_capture (cap, cmd);
8ead62cf
FB
440 }
441}
442
443static void audio_recalc_and_notify_capture (CaptureVoiceOut *cap)
444{
445 HWVoiceOut *hw = &cap->hw;
446 SWVoiceOut *sw;
447 int enabled = 0;
448
ec36b695 449 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
8ead62cf
FB
450 if (sw->active) {
451 enabled = 1;
452 break;
453 }
454 }
ec36b695 455 audio_capture_maybe_changed (cap, enabled);
8ead62cf
FB
456}
457
458static void audio_detach_capture (HWVoiceOut *hw)
459{
ec36b695
FB
460 SWVoiceCap *sc = hw->cap_head.lh_first;
461
462 while (sc) {
463 SWVoiceCap *sc1 = sc->entries.le_next;
464 SWVoiceOut *sw = &sc->sw;
465 CaptureVoiceOut *cap = sc->cap;
466 int was_active = sw->active;
8ead62cf 467
8ead62cf
FB
468 if (sw->rate) {
469 st_rate_stop (sw->rate);
470 sw->rate = NULL;
471 }
472
72cf2d4f
BS
473 QLIST_REMOVE (sw, entries);
474 QLIST_REMOVE (sc, entries);
7267c094 475 g_free (sc);
ec36b695
FB
476 if (was_active) {
477 /* We have removed soft voice from the capture:
478 this might have changed the overall status of the capture
479 since this might have been the only active voice */
480 audio_recalc_and_notify_capture (cap);
481 }
482 sc = sc1;
8ead62cf
FB
483 }
484}
485
1a7dafce 486static int audio_attach_capture (HWVoiceOut *hw)
8ead62cf 487{
526fb058 488 AudioState *s = hw->s;
8ead62cf
FB
489 CaptureVoiceOut *cap;
490
491 audio_detach_capture (hw);
492 for (cap = s->cap_head.lh_first; cap; cap = cap->entries.le_next) {
ec36b695 493 SWVoiceCap *sc;
8ead62cf 494 SWVoiceOut *sw;
ec36b695 495 HWVoiceOut *hw_cap = &cap->hw;
8ead62cf 496
e8d85444 497 sc = g_malloc0(sizeof(*sc));
8ead62cf 498
ec36b695
FB
499 sc->cap = cap;
500 sw = &sc->sw;
8ead62cf 501 sw->hw = hw_cap;
ec36b695 502 sw->info = hw->info;
8ead62cf
FB
503 sw->empty = 1;
504 sw->active = hw->enabled;
505 sw->conv = noop_conv;
506 sw->ratio = ((int64_t) hw_cap->info.freq << 32) / sw->info.freq;
83617103 507 sw->vol = nominal_volume;
8ead62cf
FB
508 sw->rate = st_rate_start (sw->info.freq, hw_cap->info.freq);
509 if (!sw->rate) {
510 dolog ("Could not start rate conversion for `%s'\n", SW_NAME (sw));
7267c094 511 g_free (sw);
8ead62cf
FB
512 return -1;
513 }
72cf2d4f
BS
514 QLIST_INSERT_HEAD (&hw_cap->sw_head, sw, entries);
515 QLIST_INSERT_HEAD (&hw->cap_head, sc, entries);
ec36b695 516#ifdef DEBUG_CAPTURE
457b6543
SW
517 sw->name = g_strdup_printf ("for %p %d,%d,%d",
518 hw, sw->info.freq, sw->info.bits,
519 sw->info.nchannels);
ec36b695
FB
520 dolog ("Added %s active = %d\n", sw->name, sw->active);
521#endif
8ead62cf 522 if (sw->active) {
ec36b695 523 audio_capture_maybe_changed (cap, 1);
8ead62cf
FB
524 }
525 }
526 return 0;
527}
528
1d14ffa9
FB
529/*
530 * Hard voice (capture)
531 */
7520462b 532static size_t audio_pcm_hw_find_min_in (HWVoiceIn *hw)
85571bc7 533{
1d14ffa9 534 SWVoiceIn *sw;
7520462b 535 size_t m = hw->total_samples_captured;
1d14ffa9
FB
536
537 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
538 if (sw->active) {
58935915 539 m = MIN (m, sw->total_hw_samples_acquired);
1d14ffa9 540 }
85571bc7 541 }
1d14ffa9 542 return m;
85571bc7
FB
543}
544
3f5bbfc2 545static size_t audio_pcm_hw_get_live_in(HWVoiceIn *hw)
85571bc7 546{
7520462b 547 size_t live = hw->total_samples_captured - audio_pcm_hw_find_min_in (hw);
dc88e38f
KZ
548 if (audio_bug(__func__, live > hw->conv_buf->size)) {
549 dolog("live=%zu hw->conv_buf->size=%zu\n", live, hw->conv_buf->size);
12f4abf6 550 return 0;
85571bc7 551 }
1d14ffa9 552 return live;
85571bc7
FB
553}
554
251f1549
VR
555static size_t audio_pcm_hw_conv_in(HWVoiceIn *hw, void *pcm_buf, size_t samples)
556{
557 size_t conv = 0;
558 STSampleBuffer *conv_buf = hw->conv_buf;
559
560 while (samples) {
561 uint8_t *src = advance(pcm_buf, conv * hw->info.bytes_per_frame);
562 size_t proc = MIN(samples, conv_buf->size - conv_buf->pos);
563
564 hw->conv(conv_buf->samples + conv_buf->pos, src, proc);
565 conv_buf->pos = (conv_buf->pos + proc) % conv_buf->size;
566 samples -= proc;
567 conv += proc;
568 }
569
570 return conv;
571}
572
1d14ffa9
FB
573/*
574 * Soft voice (capture)
575 */
7520462b 576static size_t audio_pcm_sw_read(SWVoiceIn *sw, void *buf, size_t size)
85571bc7 577{
1d14ffa9 578 HWVoiceIn *hw = sw->hw;
7520462b 579 size_t samples, live, ret = 0, swlim, isamp, osamp, rpos, total = 0;
1ea879e5 580 struct st_sample *src, *dst = sw->buf;
1d14ffa9 581
1d14ffa9 582 live = hw->total_samples_captured - sw->total_hw_samples_acquired;
0ceb26af
VR
583 if (!live) {
584 return 0;
585 }
dc88e38f
KZ
586 if (audio_bug(__func__, live > hw->conv_buf->size)) {
587 dolog("live_in=%zu hw->conv_buf->size=%zu\n", live, hw->conv_buf->size);
12f4abf6 588 return 0;
1d14ffa9
FB
589 }
590
0ceb26af
VR
591 rpos = audio_ring_posb(hw->conv_buf->pos, live, hw->conv_buf->size);
592
2b9cce8c 593 samples = size / sw->info.bytes_per_frame;
85571bc7 594
1d14ffa9 595 swlim = (live * sw->ratio) >> 32;
58935915 596 swlim = MIN (swlim, samples);
85571bc7 597
1d14ffa9 598 while (swlim) {
dc88e38f
KZ
599 src = hw->conv_buf->samples + rpos;
600 if (hw->conv_buf->pos > rpos) {
601 isamp = hw->conv_buf->pos - rpos;
7520462b 602 } else {
dc88e38f 603 isamp = hw->conv_buf->size - rpos;
1d14ffa9 604 }
85571bc7 605
1d14ffa9
FB
606 if (!isamp) {
607 break;
608 }
609 osamp = swlim;
85571bc7 610
1d14ffa9
FB
611 st_rate_flow (sw->rate, src, dst, &isamp, &osamp);
612 swlim -= osamp;
dc88e38f 613 rpos = (rpos + isamp) % hw->conv_buf->size;
1d14ffa9
FB
614 dst += osamp;
615 ret += osamp;
616 total += isamp;
617 }
85571bc7 618
669b9522 619 if (!hw->pcm_ops->volume_in) {
c01b2456
MAL
620 mixeng_volume (sw->buf, ret, &sw->vol);
621 }
00e07679 622
571ec3d6 623 sw->clip (buf, sw->buf, ret);
1d14ffa9 624 sw->total_hw_samples_acquired += total;
2b9cce8c 625 return ret * sw->info.bytes_per_frame;
85571bc7
FB
626}
627
1d14ffa9
FB
628/*
629 * Hard voice (playback)
630 */
7520462b 631static size_t audio_pcm_hw_find_min_out (HWVoiceOut *hw, int *nb_livep)
1d14ffa9 632{
c0fe3827 633 SWVoiceOut *sw;
7520462b 634 size_t m = SIZE_MAX;
c0fe3827 635 int nb_live = 0;
85571bc7 636
c0fe3827
FB
637 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
638 if (sw->active || !sw->empty) {
58935915 639 m = MIN (m, sw->total_hw_samples_mixed);
c0fe3827
FB
640 nb_live += 1;
641 }
85571bc7 642 }
c0fe3827
FB
643
644 *nb_livep = nb_live;
645 return m;
1d14ffa9 646}
85571bc7 647
7520462b 648static size_t audio_pcm_hw_get_live_out (HWVoiceOut *hw, int *nb_live)
1d14ffa9 649{
7520462b 650 size_t smin;
bdff253c 651 int nb_live1;
85571bc7 652
bdff253c 653 smin = audio_pcm_hw_find_min_out (hw, &nb_live1);
654 if (nb_live) {
655 *nb_live = nb_live1;
85571bc7 656 }
bdff253c 657
658 if (nb_live1) {
7520462b 659 size_t live = smin;
1d14ffa9 660
dc88e38f
KZ
661 if (audio_bug(__func__, live > hw->mix_buf->size)) {
662 dolog("live=%zu hw->mix_buf->size=%zu\n", live, hw->mix_buf->size);
12f4abf6 663 return 0;
85571bc7 664 }
1d14ffa9 665 return live;
85571bc7 666 }
bdff253c 667 return 0;
85571bc7
FB
668}
669
9833438e
VR
670static size_t audio_pcm_hw_get_free(HWVoiceOut *hw)
671{
672 return (hw->pcm_ops->buffer_get_free ? hw->pcm_ops->buffer_get_free(hw) :
673 INT_MAX) / hw->info.bytes_per_frame;
674}
675
8e56a172
VR
676static void audio_pcm_hw_clip_out(HWVoiceOut *hw, void *pcm_buf, size_t len)
677{
678 size_t clipped = 0;
679 size_t pos = hw->mix_buf->pos;
680
681 while (len) {
682 st_sample *src = hw->mix_buf->samples + pos;
683 uint8_t *dst = advance(pcm_buf, clipped * hw->info.bytes_per_frame);
684 size_t samples_till_end_of_buf = hw->mix_buf->size - pos;
685 size_t samples_to_clip = MIN(len, samples_till_end_of_buf);
686
687 hw->clip(dst, src, samples_to_clip);
688
689 pos = (pos + samples_to_clip) % hw->mix_buf->size;
690 len -= samples_to_clip;
691 clipped += samples_to_clip;
692 }
693}
694
1d14ffa9
FB
695/*
696 * Soft voice (playback)
697 */
7520462b 698static size_t audio_pcm_sw_write(SWVoiceOut *sw, void *buf, size_t size)
85571bc7 699{
9833438e
VR
700 size_t hwsamples, samples, isamp, osamp, wpos, live, dead, left, blck;
701 size_t hw_free;
7520462b 702 size_t ret = 0, pos = 0, total = 0;
85571bc7 703
1d14ffa9
FB
704 if (!sw) {
705 return size;
706 }
85571bc7 707
dc88e38f 708 hwsamples = sw->hw->mix_buf->size;
85571bc7 709
1d14ffa9 710 live = sw->total_hw_samples_mixed;
7520462b 711 if (audio_bug(__func__, live > hwsamples)) {
dc88e38f 712 dolog("live=%zu hw->mix_buf->size=%zu\n", live, hwsamples);
12f4abf6 713 return 0;
1d14ffa9 714 }
85571bc7 715
1d14ffa9 716 if (live == hwsamples) {
ec36b695 717#ifdef DEBUG_OUT
0c29b786 718 dolog ("%s is full %zu\n", sw->name, live);
ec36b695 719#endif
1d14ffa9
FB
720 return 0;
721 }
85571bc7 722
dc88e38f 723 wpos = (sw->hw->mix_buf->pos + live) % hwsamples;
85571bc7 724
1d14ffa9 725 dead = hwsamples - live;
9833438e
VR
726 hw_free = audio_pcm_hw_get_free(sw->hw);
727 hw_free = hw_free > live ? hw_free - live : 0;
728 samples = ((int64_t)MIN(dead, hw_free) << 32) / sw->ratio;
729 samples = MIN(samples, size / sw->info.bytes_per_frame);
730 if (samples) {
731 sw->conv(sw->buf, buf, samples);
c01b2456 732
669b9522 733 if (!sw->hw->pcm_ops->volume_out) {
9833438e 734 mixeng_volume(sw->buf, samples, &sw->vol);
c01b2456 735 }
1d14ffa9
FB
736 }
737
9833438e 738 while (samples) {
1d14ffa9
FB
739 dead = hwsamples - live;
740 left = hwsamples - wpos;
58935915 741 blck = MIN (dead, left);
1d14ffa9
FB
742 if (!blck) {
743 break;
744 }
9833438e 745 isamp = samples;
1d14ffa9
FB
746 osamp = blck;
747 st_rate_flow_mix (
748 sw->rate,
749 sw->buf + pos,
dc88e38f 750 sw->hw->mix_buf->samples + wpos,
1d14ffa9
FB
751 &isamp,
752 &osamp
753 );
754 ret += isamp;
9833438e 755 samples -= isamp;
1d14ffa9
FB
756 pos += isamp;
757 live += osamp;
758 wpos = (wpos + osamp) % hwsamples;
759 total += osamp;
760 }
761
762 sw->total_hw_samples_mixed += total;
763 sw->empty = sw->total_hw_samples_mixed == 0;
764
765#ifdef DEBUG_OUT
766 dolog (
7520462b 767 "%s: write size %zu ret %zu total sw %zu\n",
c0fe3827 768 SW_NAME (sw),
2b9cce8c 769 size / sw->info.bytes_per_frame,
1d14ffa9 770 ret,
c0fe3827 771 sw->total_hw_samples_mixed
1d14ffa9
FB
772 );
773#endif
774
2b9cce8c 775 return ret * sw->info.bytes_per_frame;
85571bc7
FB
776}
777
1d14ffa9
FB
778#ifdef DEBUG_AUDIO
779static void audio_pcm_print_info (const char *cap, struct audio_pcm_info *info)
85571bc7 780{
ed2a4a79
KZ
781 dolog("%s: bits %d, sign %d, float %d, freq %d, nchan %d\n",
782 cap, info->bits, info->is_signed, info->is_float, info->freq,
783 info->nchannels);
85571bc7 784}
1d14ffa9 785#endif
85571bc7 786
1d14ffa9
FB
787#define DAC
788#include "audio_template.h"
789#undef DAC
790#include "audio_template.h"
791
713a98f8 792/*
793 * Timer
794 */
526fb058 795static int audio_is_timer_needed(AudioState *s)
713a98f8 796{
797 HWVoiceIn *hwi = NULL;
798 HWVoiceOut *hwo = NULL;
799
526fb058 800 while ((hwo = audio_pcm_hw_find_any_enabled_out(s, hwo))) {
6c6886bd
ZH
801 if (!hwo->poll_mode) {
802 return 1;
803 }
713a98f8 804 }
526fb058 805 while ((hwi = audio_pcm_hw_find_any_enabled_in(s, hwi))) {
6c6886bd
ZH
806 if (!hwi->poll_mode) {
807 return 1;
808 }
713a98f8 809 }
810 return 0;
811}
812
39deb1e4 813static void audio_reset_timer (AudioState *s)
713a98f8 814{
526fb058 815 if (audio_is_timer_needed(s)) {
1ffc2665 816 timer_mod_anticipate_ns(s->ts,
71830221 817 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + s->period_ticks);
526fb058
KZ
818 if (!s->timer_running) {
819 s->timer_running = true;
820 s->timer_last = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
71830221 821 trace_audio_timer_start(s->period_ticks / SCALE_MS);
1a961e78
GH
822 }
823 } else {
824 timer_del(s->ts);
526fb058
KZ
825 if (s->timer_running) {
826 s->timer_running = false;
1a961e78
GH
827 trace_audio_timer_stop();
828 }
713a98f8 829 }
830}
831
39deb1e4 832static void audio_timer (void *opaque)
833{
1a961e78 834 int64_t now, diff;
71830221 835 AudioState *s = opaque;
1a961e78
GH
836
837 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
526fb058 838 diff = now - s->timer_last;
71830221 839 if (diff > s->period_ticks * 3 / 2) {
1a961e78
GH
840 trace_audio_timer_delayed(diff / SCALE_MS);
841 }
526fb058 842 s->timer_last = now;
1a961e78 843
18e2c177 844 audio_run(s, "timer");
71830221 845 audio_reset_timer(s);
39deb1e4 846}
847
713a98f8 848/*
849 * Public API
850 */
7520462b 851size_t AUD_write(SWVoiceOut *sw, void *buf, size_t size)
85571bc7 852{
1930616b
KZ
853 HWVoiceOut *hw;
854
1d14ffa9
FB
855 if (!sw) {
856 /* XXX: Consider options */
857 return size;
858 }
1930616b 859 hw = sw->hw;
85571bc7 860
1930616b 861 if (!hw->enabled) {
c0fe3827 862 dolog ("Writing to disabled voice %s\n", SW_NAME (sw));
85571bc7
FB
863 return 0;
864 }
865
1930616b
KZ
866 if (audio_get_pdo_out(hw->s->dev)->mixing_engine) {
867 return audio_pcm_sw_write(sw, buf, size);
868 } else {
869 return hw->pcm_ops->write(hw, buf, size);
870 }
1d14ffa9
FB
871}
872
7520462b 873size_t AUD_read(SWVoiceIn *sw, void *buf, size_t size)
1d14ffa9 874{
1930616b
KZ
875 HWVoiceIn *hw;
876
1d14ffa9
FB
877 if (!sw) {
878 /* XXX: Consider options */
879 return size;
85571bc7 880 }
1930616b 881 hw = sw->hw;
1d14ffa9 882
1930616b 883 if (!hw->enabled) {
c0fe3827 884 dolog ("Reading from disabled voice %s\n", SW_NAME (sw));
1d14ffa9 885 return 0;
85571bc7 886 }
1d14ffa9 887
1930616b
KZ
888 if (audio_get_pdo_in(hw->s->dev)->mixing_engine) {
889 return audio_pcm_sw_read(sw, buf, size);
890 } else {
891 return hw->pcm_ops->read(hw, buf, size);
892 }
85571bc7
FB
893}
894
69ac0786 895int AUD_get_buffer_size_out(SWVoiceOut *sw)
85571bc7 896{
69ac0786 897 return sw->hw->samples * sw->hw->info.bytes_per_frame;
1d14ffa9
FB
898}
899
900void AUD_set_active_out (SWVoiceOut *sw, int on)
901{
902 HWVoiceOut *hw;
85571bc7 903
1d14ffa9 904 if (!sw) {
85571bc7 905 return;
1d14ffa9 906 }
85571bc7
FB
907
908 hw = sw->hw;
1d14ffa9 909 if (sw->active != on) {
526fb058 910 AudioState *s = sw->s;
1d14ffa9 911 SWVoiceOut *temp_sw;
ec36b695 912 SWVoiceCap *sc;
1d14ffa9
FB
913
914 if (on) {
1d14ffa9
FB
915 hw->pending_disable = 0;
916 if (!hw->enabled) {
917 hw->enabled = 1;
978dd635 918 if (s->vm_running) {
571a8c52
KZ
919 if (hw->pcm_ops->enable_out) {
920 hw->pcm_ops->enable_out(hw, true);
921 }
39deb1e4 922 audio_reset_timer (s);
978dd635 923 }
1d14ffa9 924 }
6c6886bd 925 } else {
1d14ffa9
FB
926 if (hw->enabled) {
927 int nb_active = 0;
928
929 for (temp_sw = hw->sw_head.lh_first; temp_sw;
930 temp_sw = temp_sw->entries.le_next) {
931 nb_active += temp_sw->active != 0;
932 }
933
934 hw->pending_disable = nb_active == 1;
935 }
85571bc7 936 }
ec36b695
FB
937
938 for (sc = hw->cap_head.lh_first; sc; sc = sc->entries.le_next) {
939 sc->sw.active = hw->enabled;
8ead62cf 940 if (hw->enabled) {
ec36b695 941 audio_capture_maybe_changed (sc->cap, 1);
8ead62cf
FB
942 }
943 }
1d14ffa9
FB
944 sw->active = on;
945 }
946}
947
948void AUD_set_active_in (SWVoiceIn *sw, int on)
949{
950 HWVoiceIn *hw;
951
952 if (!sw) {
953 return;
85571bc7
FB
954 }
955
1d14ffa9 956 hw = sw->hw;
85571bc7 957 if (sw->active != on) {
526fb058 958 AudioState *s = sw->s;
1d14ffa9
FB
959 SWVoiceIn *temp_sw;
960
85571bc7 961 if (on) {
85571bc7
FB
962 if (!hw->enabled) {
963 hw->enabled = 1;
978dd635 964 if (s->vm_running) {
571a8c52
KZ
965 if (hw->pcm_ops->enable_in) {
966 hw->pcm_ops->enable_in(hw, true);
967 }
39deb1e4 968 audio_reset_timer (s);
978dd635 969 }
85571bc7 970 }
1d14ffa9 971 sw->total_hw_samples_acquired = hw->total_samples_captured;
6c6886bd 972 } else {
1d14ffa9 973 if (hw->enabled) {
85571bc7 974 int nb_active = 0;
1d14ffa9
FB
975
976 for (temp_sw = hw->sw_head.lh_first; temp_sw;
977 temp_sw = temp_sw->entries.le_next) {
978 nb_active += temp_sw->active != 0;
85571bc7
FB
979 }
980
981 if (nb_active == 1) {
1d14ffa9 982 hw->enabled = 0;
571a8c52
KZ
983 if (hw->pcm_ops->enable_in) {
984 hw->pcm_ops->enable_in(hw, false);
985 }
85571bc7
FB
986 }
987 }
988 }
989 sw->active = on;
990 }
991}
992
0724c579
VR
993/**
994 * audio_frontend_frames_in() - returns the number of frames the resampling
995 * code generates from frames_in frames
996 *
997 * @sw: audio recording frontend
998 * @frames_in: number of frames
999 */
1000static size_t audio_frontend_frames_in(SWVoiceIn *sw, size_t frames_in)
1001{
b73ef11f 1002 return (int64_t)frames_in * sw->ratio >> 32;
0724c579
VR
1003}
1004
7520462b 1005static size_t audio_get_avail (SWVoiceIn *sw)
1d14ffa9 1006{
7520462b 1007 size_t live;
1d14ffa9
FB
1008
1009 if (!sw) {
1010 return 0;
1011 }
1012
1013 live = sw->hw->total_samples_captured - sw->total_hw_samples_acquired;
dc88e38f
KZ
1014 if (audio_bug(__func__, live > sw->hw->conv_buf->size)) {
1015 dolog("live=%zu sw->hw->conv_buf->size=%zu\n", live,
1016 sw->hw->conv_buf->size);
12f4abf6 1017 return 0;
1d14ffa9
FB
1018 }
1019
1020 ldebug (
0724c579 1021 "%s: get_avail live %zu frontend frames %zu\n",
c0fe3827 1022 SW_NAME (sw),
0724c579 1023 live, audio_frontend_frames_in(sw, live)
1d14ffa9
FB
1024 );
1025
0724c579 1026 return live;
1d14ffa9
FB
1027}
1028
c4e59264
VR
1029/**
1030 * audio_frontend_frames_out() - returns the number of frames needed to
1031 * get frames_out frames after resampling
1032 *
1033 * @sw: audio playback frontend
1034 * @frames_out: number of frames
1035 */
1036static size_t audio_frontend_frames_out(SWVoiceOut *sw, size_t frames_out)
9833438e 1037{
c4e59264 1038 return ((int64_t)frames_out << 32) / sw->ratio;
9833438e
VR
1039}
1040
7520462b 1041static size_t audio_get_free(SWVoiceOut *sw)
1d14ffa9 1042{
7520462b 1043 size_t live, dead;
1d14ffa9
FB
1044
1045 if (!sw) {
1046 return 0;
1047 }
1048
1049 live = sw->total_hw_samples_mixed;
1050
dc88e38f
KZ
1051 if (audio_bug(__func__, live > sw->hw->mix_buf->size)) {
1052 dolog("live=%zu sw->hw->mix_buf->size=%zu\n", live,
1053 sw->hw->mix_buf->size);
12f4abf6 1054 return 0;
1d14ffa9
FB
1055 }
1056
dc88e38f 1057 dead = sw->hw->mix_buf->size - live;
1d14ffa9
FB
1058
1059#ifdef DEBUG_OUT
c4e59264
VR
1060 dolog("%s: get_free live %zu dead %zu frontend frames %zu\n",
1061 SW_NAME(sw), live, dead, audio_frontend_frames_out(sw, dead));
85571bc7 1062#endif
1d14ffa9 1063
9833438e 1064 return dead;
1d14ffa9
FB
1065}
1066
7520462b
KZ
1067static void audio_capture_mix_and_clear(HWVoiceOut *hw, size_t rpos,
1068 size_t samples)
8ead62cf 1069{
7520462b 1070 size_t n;
8ead62cf
FB
1071
1072 if (hw->enabled) {
ec36b695 1073 SWVoiceCap *sc;
8ead62cf 1074
ec36b695
FB
1075 for (sc = hw->cap_head.lh_first; sc; sc = sc->entries.le_next) {
1076 SWVoiceOut *sw = &sc->sw;
8ead62cf
FB
1077 int rpos2 = rpos;
1078
1079 n = samples;
1080 while (n) {
dc88e38f 1081 size_t till_end_of_hw = hw->mix_buf->size - rpos2;
7520462b 1082 size_t to_write = MIN(till_end_of_hw, n);
2b9cce8c 1083 size_t bytes = to_write * hw->info.bytes_per_frame;
7520462b 1084 size_t written;
8ead62cf 1085
dc88e38f 1086 sw->buf = hw->mix_buf->samples + rpos2;
8ead62cf
FB
1087 written = audio_pcm_sw_write (sw, NULL, bytes);
1088 if (written - bytes) {
7520462b
KZ
1089 dolog("Could not mix %zu bytes into a capture "
1090 "buffer, mixed %zu\n",
1091 bytes, written);
8ead62cf
FB
1092 break;
1093 }
1094 n -= to_write;
dc88e38f 1095 rpos2 = (rpos2 + to_write) % hw->mix_buf->size;
8ead62cf
FB
1096 }
1097 }
1098 }
1099
dc88e38f
KZ
1100 n = MIN(samples, hw->mix_buf->size - rpos);
1101 mixeng_clear(hw->mix_buf->samples + rpos, n);
1102 mixeng_clear(hw->mix_buf->samples, samples - n);
8ead62cf
FB
1103}
1104
ff095e52
KZ
1105static size_t audio_pcm_hw_run_out(HWVoiceOut *hw, size_t live)
1106{
1107 size_t clipped = 0;
1108
1109 while (live) {
aec6d0dc
VR
1110 size_t size = live * hw->info.bytes_per_frame;
1111 size_t decr, proc;
ff095e52 1112 void *buf = hw->pcm_ops->get_buffer_out(hw, &size);
4c3356f9
VR
1113
1114 if (size == 0) {
fb35c2ce 1115 break;
ff095e52
KZ
1116 }
1117
2b9cce8c 1118 decr = MIN(size / hw->info.bytes_per_frame, live);
4c3356f9
VR
1119 if (buf) {
1120 audio_pcm_hw_clip_out(hw, buf, decr);
1121 }
2b9cce8c
KZ
1122 proc = hw->pcm_ops->put_buffer_out(hw, buf,
1123 decr * hw->info.bytes_per_frame) /
1124 hw->info.bytes_per_frame;
ff095e52
KZ
1125
1126 live -= proc;
1127 clipped += proc;
dc88e38f 1128 hw->mix_buf->pos = (hw->mix_buf->pos + proc) % hw->mix_buf->size;
ff095e52
KZ
1129
1130 if (proc == 0 || proc < decr) {
1131 break;
1132 }
1133 }
1134
fdc8c5f4
VR
1135 if (hw->pcm_ops->run_buffer_out) {
1136 hw->pcm_ops->run_buffer_out(hw);
1137 }
1138
ff095e52
KZ
1139 return clipped;
1140}
1141
c0fe3827 1142static void audio_run_out (AudioState *s)
1d14ffa9
FB
1143{
1144 HWVoiceOut *hw = NULL;
1145 SWVoiceOut *sw;
1146
4d31ff32
VR
1147 while ((hw = audio_pcm_hw_find_any_enabled_out(s, hw))) {
1148 size_t played, live, prev_rpos;
1149 size_t hw_free = audio_pcm_hw_get_free(hw);
1150 int nb_live;
1151
1152 if (!audio_get_pdo_out(s->dev)->mixing_engine) {
1930616b
KZ
1153 /* there is exactly 1 sw for each hw with no mixeng */
1154 sw = hw->sw_head.lh_first;
1155
1156 if (hw->pending_disable) {
1157 hw->enabled = 0;
1158 hw->pending_disable = 0;
1159 if (hw->pcm_ops->enable_out) {
1160 hw->pcm_ops->enable_out(hw, false);
1161 }
1162 }
1163
1164 if (sw->active) {
7099a6a2
VR
1165 sw->callback.fn(sw->callback.opaque,
1166 hw_free * sw->info.bytes_per_frame);
1930616b 1167 }
1930616b 1168
dd052dbf
VR
1169 if (hw->pcm_ops->run_buffer_out) {
1170 hw->pcm_ops->run_buffer_out(hw);
1171 }
1172
4d31ff32
VR
1173 continue;
1174 }
1d14ffa9 1175
a806f959
VR
1176 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
1177 if (sw->active) {
9833438e
VR
1178 size_t sw_free = audio_get_free(sw);
1179 size_t free;
1180
1181 if (hw_free > sw->total_hw_samples_mixed) {
c4e59264 1182 free = audio_frontend_frames_out(sw,
9833438e
VR
1183 MIN(sw_free, hw_free - sw->total_hw_samples_mixed));
1184 } else {
1185 free = 0;
1186 }
a806f959 1187 if (free > 0) {
c4e59264
VR
1188 sw->callback.fn(sw->callback.opaque,
1189 free * sw->info.bytes_per_frame);
a806f959
VR
1190 }
1191 }
1192 }
1193
bdff253c 1194 live = audio_pcm_hw_get_live_out (hw, &nb_live);
1d14ffa9
FB
1195 if (!nb_live) {
1196 live = 0;
1197 }
c0fe3827 1198
dc88e38f
KZ
1199 if (audio_bug(__func__, live > hw->mix_buf->size)) {
1200 dolog("live=%zu hw->mix_buf->size=%zu\n", live, hw->mix_buf->size);
12f4abf6 1201 continue;
1d14ffa9
FB
1202 }
1203
1204 if (hw->pending_disable && !nb_live) {
ec36b695 1205 SWVoiceCap *sc;
1d14ffa9
FB
1206#ifdef DEBUG_OUT
1207 dolog ("Disabling voice\n");
85571bc7 1208#endif
1d14ffa9
FB
1209 hw->enabled = 0;
1210 hw->pending_disable = 0;
571a8c52
KZ
1211 if (hw->pcm_ops->enable_out) {
1212 hw->pcm_ops->enable_out(hw, false);
1213 }
ec36b695
FB
1214 for (sc = hw->cap_head.lh_first; sc; sc = sc->entries.le_next) {
1215 sc->sw.active = 0;
1216 audio_recalc_and_notify_capture (sc->cap);
8ead62cf 1217 }
1d14ffa9
FB
1218 continue;
1219 }
1220
1221 if (!live) {
a8a98cfd
VR
1222 if (hw->pcm_ops->run_buffer_out) {
1223 hw->pcm_ops->run_buffer_out(hw);
1224 }
1d14ffa9
FB
1225 continue;
1226 }
1227
dc88e38f 1228 prev_rpos = hw->mix_buf->pos;
3f5bbfc2 1229 played = audio_pcm_hw_run_out(hw, live);
3d4d16f4 1230 replay_audio_out(&played);
dc88e38f
KZ
1231 if (audio_bug(__func__, hw->mix_buf->pos >= hw->mix_buf->size)) {
1232 dolog("hw->mix_buf->pos=%zu hw->mix_buf->size=%zu played=%zu\n",
1233 hw->mix_buf->pos, hw->mix_buf->size, played);
12f4abf6 1234 hw->mix_buf->pos = 0;
1d14ffa9
FB
1235 }
1236
1237#ifdef DEBUG_OUT
7520462b 1238 dolog("played=%zu\n", played);
85571bc7 1239#endif
1d14ffa9
FB
1240
1241 if (played) {
1242 hw->ts_helper += played;
8ead62cf 1243 audio_capture_mix_and_clear (hw, prev_rpos, played);
1d14ffa9
FB
1244 }
1245
1246 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
1d14ffa9
FB
1247 if (!sw->active && sw->empty) {
1248 continue;
1249 }
1250
470bcabd 1251 if (audio_bug(__func__, played > sw->total_hw_samples_mixed)) {
7520462b
KZ
1252 dolog("played=%zu sw->total_hw_samples_mixed=%zu\n",
1253 played, sw->total_hw_samples_mixed);
12f4abf6 1254 played = sw->total_hw_samples_mixed;
1d14ffa9
FB
1255 }
1256
1257 sw->total_hw_samples_mixed -= played;
1258
1259 if (!sw->total_hw_samples_mixed) {
1260 sw->empty = 1;
1d14ffa9 1261 }
1d14ffa9
FB
1262 }
1263 }
1264}
1265
ff095e52
KZ
1266static size_t audio_pcm_hw_run_in(HWVoiceIn *hw, size_t samples)
1267{
1268 size_t conv = 0;
1269
a2893c83
VR
1270 if (hw->pcm_ops->run_buffer_in) {
1271 hw->pcm_ops->run_buffer_in(hw);
1272 }
1273
ff095e52
KZ
1274 while (samples) {
1275 size_t proc;
2b9cce8c 1276 size_t size = samples * hw->info.bytes_per_frame;
ff095e52
KZ
1277 void *buf = hw->pcm_ops->get_buffer_in(hw, &size);
1278
2b9cce8c 1279 assert(size % hw->info.bytes_per_frame == 0);
ff095e52 1280 if (size == 0) {
ff095e52
KZ
1281 break;
1282 }
1283
251f1549 1284 proc = audio_pcm_hw_conv_in(hw, buf, size / hw->info.bytes_per_frame);
ff095e52
KZ
1285
1286 samples -= proc;
1287 conv += proc;
2b9cce8c 1288 hw->pcm_ops->put_buffer_in(hw, buf, proc * hw->info.bytes_per_frame);
ff095e52
KZ
1289 }
1290
1291 return conv;
1292}
1293
c0fe3827 1294static void audio_run_in (AudioState *s)
1d14ffa9
FB
1295{
1296 HWVoiceIn *hw = NULL;
1297
1930616b
KZ
1298 if (!audio_get_pdo_in(s->dev)->mixing_engine) {
1299 while ((hw = audio_pcm_hw_find_any_enabled_in(s, hw))) {
1300 /* there is exactly 1 sw for each hw with no mixeng */
1301 SWVoiceIn *sw = hw->sw_head.lh_first;
1302 if (sw->active) {
1303 sw->callback.fn(sw->callback.opaque, INT_MAX);
1304 }
1305 }
1306 return;
1307 }
1308
526fb058 1309 while ((hw = audio_pcm_hw_find_any_enabled_in(s, hw))) {
1d14ffa9 1310 SWVoiceIn *sw;
7520462b 1311 size_t captured = 0, min;
1d14ffa9 1312
3d4d16f4 1313 if (replay_mode != REPLAY_MODE_PLAY) {
3f5bbfc2 1314 captured = audio_pcm_hw_run_in(
dc88e38f 1315 hw, hw->conv_buf->size - audio_pcm_hw_get_live_in(hw));
3d4d16f4 1316 }
dc88e38f
KZ
1317 replay_audio_in(&captured, hw->conv_buf->samples, &hw->conv_buf->pos,
1318 hw->conv_buf->size);
1d14ffa9
FB
1319
1320 min = audio_pcm_hw_find_min_in (hw);
1321 hw->total_samples_captured += captured - min;
1322 hw->ts_helper += captured;
1323
1324 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
1325 sw->total_hw_samples_acquired -= min;
1326
1327 if (sw->active) {
0724c579 1328 size_t sw_avail = audio_get_avail(sw);
7520462b 1329 size_t avail;
1d14ffa9 1330
0724c579 1331 avail = audio_frontend_frames_in(sw, sw_avail);
1d14ffa9 1332 if (avail > 0) {
0724c579
VR
1333 sw->callback.fn(sw->callback.opaque,
1334 avail * sw->info.bytes_per_frame);
1d14ffa9
FB
1335 }
1336 }
1337 }
1338 }
1339}
1340
8ead62cf
FB
1341static void audio_run_capture (AudioState *s)
1342{
1343 CaptureVoiceOut *cap;
1344
1345 for (cap = s->cap_head.lh_first; cap; cap = cap->entries.le_next) {
7520462b 1346 size_t live, rpos, captured;
8ead62cf
FB
1347 HWVoiceOut *hw = &cap->hw;
1348 SWVoiceOut *sw;
1349
bdff253c 1350 captured = live = audio_pcm_hw_get_live_out (hw, NULL);
dc88e38f 1351 rpos = hw->mix_buf->pos;
8ead62cf 1352 while (live) {
dc88e38f 1353 size_t left = hw->mix_buf->size - rpos;
7520462b 1354 size_t to_capture = MIN(live, left);
1ea879e5 1355 struct st_sample *src;
8ead62cf
FB
1356 struct capture_callback *cb;
1357
dc88e38f 1358 src = hw->mix_buf->samples + rpos;
8ead62cf
FB
1359 hw->clip (cap->buf, src, to_capture);
1360 mixeng_clear (src, to_capture);
1361
1362 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) {
1363 cb->ops.capture (cb->opaque, cap->buf,
2b9cce8c 1364 to_capture * hw->info.bytes_per_frame);
8ead62cf 1365 }
dc88e38f 1366 rpos = (rpos + to_capture) % hw->mix_buf->size;
8ead62cf
FB
1367 live -= to_capture;
1368 }
dc88e38f 1369 hw->mix_buf->pos = rpos;
8ead62cf
FB
1370
1371 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
1372 if (!sw->active && sw->empty) {
1373 continue;
1374 }
1375
470bcabd 1376 if (audio_bug(__func__, captured > sw->total_hw_samples_mixed)) {
7520462b
KZ
1377 dolog("captured=%zu sw->total_hw_samples_mixed=%zu\n",
1378 captured, sw->total_hw_samples_mixed);
12f4abf6 1379 captured = sw->total_hw_samples_mixed;
8ead62cf
FB
1380 }
1381
1382 sw->total_hw_samples_mixed -= captured;
1383 sw->empty = sw->total_hw_samples_mixed == 0;
1384 }
1385 }
1386}
1387
18e2c177 1388void audio_run(AudioState *s, const char *msg)
571ec3d6 1389{
18e2c177
KZ
1390 audio_run_out(s);
1391 audio_run_in(s);
1392 audio_run_capture(s);
571ec3d6 1393
713a98f8 1394#ifdef DEBUG_POLL
1395 {
1396 static double prevtime;
1397 double currtime;
1398 struct timeval tv;
571ec3d6 1399
713a98f8 1400 if (gettimeofday (&tv, NULL)) {
1401 perror ("audio_run: gettimeofday");
1402 return;
1403 }
1404
1405 currtime = tv.tv_sec + tv.tv_usec * 1e-6;
1406 dolog ("Elapsed since last %s: %f\n", msg, currtime - prevtime);
1407 prevtime = currtime;
1408 }
1409#endif
571ec3d6
FB
1410}
1411
a2893c83 1412void audio_generic_run_buffer_in(HWVoiceIn *hw)
ff095e52 1413{
ff095e52 1414 if (unlikely(!hw->buf_emul)) {
1d8549ad
VR
1415 hw->size_emul = hw->samples * hw->info.bytes_per_frame;
1416 hw->buf_emul = g_malloc(hw->size_emul);
ff095e52
KZ
1417 hw->pos_emul = hw->pending_emul = 0;
1418 }
1419
1420 while (hw->pending_emul < hw->size_emul) {
1421 size_t read_len = MIN(hw->size_emul - hw->pos_emul,
1422 hw->size_emul - hw->pending_emul);
1423 size_t read = hw->pcm_ops->read(hw, hw->buf_emul + hw->pos_emul,
1424 read_len);
1425 hw->pending_emul += read;
7ffc90f3 1426 hw->pos_emul = (hw->pos_emul + read) % hw->size_emul;
ff095e52
KZ
1427 if (read < read_len) {
1428 break;
1429 }
1430 }
a2893c83
VR
1431}
1432
1433void *audio_generic_get_buffer_in(HWVoiceIn *hw, size_t *size)
1434{
18404ff1 1435 size_t start;
ff095e52 1436
18404ff1
VR
1437 start = audio_ring_posb(hw->pos_emul, hw->pending_emul, hw->size_emul);
1438 assert(start < hw->size_emul);
ff095e52 1439
599eac4e
VR
1440 *size = MIN(*size, hw->pending_emul);
1441 *size = MIN(*size, hw->size_emul - start);
ff095e52
KZ
1442 return hw->buf_emul + start;
1443}
1444
1445void audio_generic_put_buffer_in(HWVoiceIn *hw, void *buf, size_t size)
1446{
1447 assert(size <= hw->pending_emul);
1448 hw->pending_emul -= size;
1449}
1450
9833438e
VR
1451size_t audio_generic_buffer_get_free(HWVoiceOut *hw)
1452{
1453 if (hw->buf_emul) {
1454 return hw->size_emul - hw->pending_emul;
1455 } else {
1456 return hw->samples * hw->info.bytes_per_frame;
1457 }
1458}
1459
fdc8c5f4
VR
1460void audio_generic_run_buffer_out(HWVoiceOut *hw)
1461{
1462 while (hw->pending_emul) {
18404ff1 1463 size_t write_len, written, start;
fdc8c5f4 1464
18404ff1
VR
1465 start = audio_ring_posb(hw->pos_emul, hw->pending_emul, hw->size_emul);
1466 assert(start < hw->size_emul);
fdc8c5f4
VR
1467
1468 write_len = MIN(hw->pending_emul, hw->size_emul - start);
1469
1470 written = hw->pcm_ops->write(hw, hw->buf_emul + start, write_len);
1471 hw->pending_emul -= written;
1472
1473 if (written < write_len) {
1474 break;
1475 }
1476 }
1477}
1478
ff095e52
KZ
1479void *audio_generic_get_buffer_out(HWVoiceOut *hw, size_t *size)
1480{
1481 if (unlikely(!hw->buf_emul)) {
1d8549ad
VR
1482 hw->size_emul = hw->samples * hw->info.bytes_per_frame;
1483 hw->buf_emul = g_malloc(hw->size_emul);
ff095e52
KZ
1484 hw->pos_emul = hw->pending_emul = 0;
1485 }
1486
1487 *size = MIN(hw->size_emul - hw->pending_emul,
1488 hw->size_emul - hw->pos_emul);
1489 return hw->buf_emul + hw->pos_emul;
1490}
1491
fdc8c5f4 1492size_t audio_generic_put_buffer_out(HWVoiceOut *hw, void *buf, size_t size)
ff095e52
KZ
1493{
1494 assert(buf == hw->buf_emul + hw->pos_emul &&
1495 size + hw->pending_emul <= hw->size_emul);
1496
1497 hw->pending_emul += size;
1498 hw->pos_emul = (hw->pos_emul + size) % hw->size_emul;
1499
1500 return size;
1501}
1502
ff095e52
KZ
1503size_t audio_generic_write(HWVoiceOut *hw, void *buf, size_t size)
1504{
2d882307
VR
1505 size_t total = 0;
1506
9833438e
VR
1507 if (hw->pcm_ops->buffer_get_free) {
1508 size_t free = hw->pcm_ops->buffer_get_free(hw);
1509
1510 size = MIN(size, free);
1511 }
1512
2d882307
VR
1513 while (total < size) {
1514 size_t dst_size = size - total;
1515 size_t copy_size, proc;
1516 void *dst = hw->pcm_ops->get_buffer_out(hw, &dst_size);
ff095e52 1517
2d882307
VR
1518 if (dst_size == 0) {
1519 break;
1520 }
1521
1522 copy_size = MIN(size - total, dst_size);
1523 if (dst) {
1524 memcpy(dst, (char *)buf + total, copy_size);
1525 }
1526 proc = hw->pcm_ops->put_buffer_out(hw, dst, copy_size);
1527 total += proc;
1528
1529 if (proc == 0 || proc < copy_size) {
1530 break;
1531 }
1532 }
1533
2d882307 1534 return total;
ff095e52
KZ
1535}
1536
1537size_t audio_generic_read(HWVoiceIn *hw, void *buf, size_t size)
1538{
b9896dc5 1539 size_t total = 0;
ff095e52 1540
a2893c83
VR
1541 if (hw->pcm_ops->run_buffer_in) {
1542 hw->pcm_ops->run_buffer_in(hw);
1543 }
1544
b9896dc5
VR
1545 while (total < size) {
1546 size_t src_size = size - total;
1547 void *src = hw->pcm_ops->get_buffer_in(hw, &src_size);
ff095e52 1548
b9896dc5 1549 if (src_size == 0) {
b9896dc5
VR
1550 break;
1551 }
1552
1553 memcpy((char *)buf + total, src, src_size);
1554 hw->pcm_ops->put_buffer_in(hw, src, src_size);
1555 total += src_size;
1556 }
1557
1558 return total;
8d1439b6 1559}
ff095e52 1560
71830221
KZ
1561static int audio_driver_init(AudioState *s, struct audio_driver *drv,
1562 bool msg, Audiodev *dev)
85571bc7 1563{
71830221 1564 s->drv_opaque = drv->init(dev);
1d14ffa9 1565
c0fe3827 1566 if (s->drv_opaque) {
ff095e52
KZ
1567 if (!drv->pcm_ops->get_buffer_in) {
1568 drv->pcm_ops->get_buffer_in = audio_generic_get_buffer_in;
1569 drv->pcm_ops->put_buffer_in = audio_generic_put_buffer_in;
1570 }
1571 if (!drv->pcm_ops->get_buffer_out) {
1572 drv->pcm_ops->get_buffer_out = audio_generic_get_buffer_out;
1573 drv->pcm_ops->put_buffer_out = audio_generic_put_buffer_out;
1574 }
1575
526fb058
KZ
1576 audio_init_nb_voices_out(s, drv);
1577 audio_init_nb_voices_in(s, drv);
c0fe3827 1578 s->drv = drv;
1d14ffa9 1579 return 0;
6c6886bd 1580 } else {
fb37ce92
GH
1581 if (msg) {
1582 dolog("Could not init `%s' audio driver\n", drv->name);
1583 }
1d14ffa9 1584 return -1;
85571bc7
FB
1585 }
1586}
1587
538f0497 1588static void audio_vm_change_state_handler (void *opaque, bool running,
1dfb4dd9 1589 RunState state)
85571bc7 1590{
c0fe3827 1591 AudioState *s = opaque;
1d14ffa9
FB
1592 HWVoiceOut *hwo = NULL;
1593 HWVoiceIn *hwi = NULL;
1d14ffa9 1594
978dd635 1595 s->vm_running = running;
526fb058 1596 while ((hwo = audio_pcm_hw_find_any_enabled_out(s, hwo))) {
571a8c52
KZ
1597 if (hwo->pcm_ops->enable_out) {
1598 hwo->pcm_ops->enable_out(hwo, running);
1599 }
1d14ffa9 1600 }
85571bc7 1601
526fb058 1602 while ((hwi = audio_pcm_hw_find_any_enabled_in(s, hwi))) {
571a8c52
KZ
1603 if (hwi->pcm_ops->enable_in) {
1604 hwi->pcm_ops->enable_in(hwi, running);
1605 }
85571bc7 1606 }
39deb1e4 1607 audio_reset_timer (s);
85571bc7
FB
1608}
1609
ecd97e95 1610static void free_audio_state(AudioState *s)
85571bc7 1611{
a384c205
MAL
1612 HWVoiceOut *hwo, *hwon;
1613 HWVoiceIn *hwi, *hwin;
1d14ffa9 1614
526fb058 1615 QLIST_FOREACH_SAFE(hwo, &s->hw_head_out, entries, hwon) {
ec36b695 1616 SWVoiceCap *sc;
8ead62cf 1617
571a8c52
KZ
1618 if (hwo->enabled && hwo->pcm_ops->enable_out) {
1619 hwo->pcm_ops->enable_out(hwo, false);
aeb29b64 1620 }
1d14ffa9 1621 hwo->pcm_ops->fini_out (hwo);
8ead62cf 1622
ec36b695
FB
1623 for (sc = hwo->cap_head.lh_first; sc; sc = sc->entries.le_next) {
1624 CaptureVoiceOut *cap = sc->cap;
1625 struct capture_callback *cb;
1626
1627 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) {
1628 cb->ops.destroy (cb->opaque);
1629 }
8ead62cf 1630 }
a384c205 1631 QLIST_REMOVE(hwo, entries);
1d14ffa9 1632 }
85571bc7 1633
526fb058 1634 QLIST_FOREACH_SAFE(hwi, &s->hw_head_in, entries, hwin) {
571a8c52
KZ
1635 if (hwi->enabled && hwi->pcm_ops->enable_in) {
1636 hwi->pcm_ops->enable_in(hwi, false);
aeb29b64 1637 }
1d14ffa9 1638 hwi->pcm_ops->fini_in (hwi);
a384c205 1639 QLIST_REMOVE(hwi, entries);
85571bc7 1640 }
c0fe3827
FB
1641
1642 if (s->drv) {
1643 s->drv->fini (s->drv_opaque);
a384c205 1644 s->drv = NULL;
c0fe3827 1645 }
71830221
KZ
1646
1647 if (s->dev) {
1648 qapi_free_Audiodev(s->dev);
1649 s->dev = NULL;
1650 }
e76ba19a
KZ
1651
1652 if (s->ts) {
1653 timer_free(s->ts);
1654 s->ts = NULL;
1655 }
1656
ecd97e95
KZ
1657 g_free(s);
1658}
1659
1660void audio_cleanup(void)
1661{
ecd97e95
KZ
1662 while (!QTAILQ_EMPTY(&audio_states)) {
1663 AudioState *s = QTAILQ_FIRST(&audio_states);
1664 QTAILQ_REMOVE(&audio_states, s, list);
1665 free_audio_state(s);
1666 }
85571bc7
FB
1667}
1668
da77adba
DDAG
1669static bool vmstate_audio_needed(void *opaque)
1670{
1671 /*
1672 * Never needed, this vmstate only exists in case
1673 * an old qemu sends it to us.
1674 */
1675 return false;
1676}
1677
d959fce9
JQ
1678static const VMStateDescription vmstate_audio = {
1679 .name = "audio",
1680 .version_id = 1,
1681 .minimum_version_id = 1,
da77adba 1682 .needed = vmstate_audio_needed,
35d08458 1683 .fields = (VMStateField[]) {
d959fce9 1684 VMSTATE_END_OF_LIST()
1d14ffa9 1685 }
d959fce9 1686};
85571bc7 1687
71830221
KZ
1688static void audio_validate_opts(Audiodev *dev, Error **errp);
1689
1690static AudiodevListEntry *audiodev_find(
1691 AudiodevListHead *head, const char *drvname)
1692{
1693 AudiodevListEntry *e;
1694 QSIMPLEQ_FOREACH(e, head, next) {
1695 if (strcmp(AudiodevDriver_str(e->dev->driver), drvname) == 0) {
1696 return e;
1697 }
1698 }
1699
1700 return NULL;
1701}
1702
ecd97e95
KZ
1703/*
1704 * if we have dev, this function was called because of an -audiodev argument =>
1705 * initialize a new state with it
1706 * if dev == NULL => legacy implicit initialization, return the already created
1707 * state or create a new one
1708 */
af2041ed 1709static AudioState *audio_init(Audiodev *dev, const char *name)
85571bc7 1710{
ecd97e95 1711 static bool atexit_registered;
1d14ffa9 1712 size_t i;
85571bc7 1713 int done = 0;
71830221 1714 const char *drvname = NULL;
713a98f8 1715 VMChangeStateEntry *e;
ecd97e95 1716 AudioState *s;
d3893a39 1717 struct audio_driver *driver;
71830221
KZ
1718 /* silence gcc warning about uninitialized variable */
1719 AudiodevListHead head = QSIMPLEQ_HEAD_INITIALIZER(head);
1d14ffa9 1720
f0c4555e
GH
1721 if (using_spice) {
1722 /*
1723 * When using spice allow the spice audio driver being picked
1724 * as default.
1725 *
1726 * Temporary hack. Using audio devices without explicit
1727 * audiodev= property is already deprecated. Same goes for
1728 * the -soundhw switch. Once this support gets finally
1729 * removed we can also drop the concept of a default audio
1730 * backend and this can go away.
1731 */
1732 driver = audio_driver_lookup("spice");
06c8c375
GH
1733 if (driver) {
1734 driver->can_be_default = 1;
1735 }
f0c4555e
GH
1736 }
1737
71830221
KZ
1738 if (dev) {
1739 /* -audiodev option */
af2041ed 1740 legacy_config = false;
71830221 1741 drvname = AudiodevDriver_str(dev->driver);
ecd97e95 1742 } else if (!QTAILQ_EMPTY(&audio_states)) {
af2041ed 1743 if (!legacy_config) {
4b3b7793
KZ
1744 dolog("Device %s: audiodev default parameter is deprecated, please "
1745 "specify audiodev=%s\n", name,
1746 QTAILQ_FIRST(&audio_states)->dev->id);
af2041ed 1747 }
ecd97e95 1748 return QTAILQ_FIRST(&audio_states);
71830221
KZ
1749 } else {
1750 /* legacy implicit initialization */
1751 head = audio_handle_legacy_opts();
1752 /*
1753 * In case of legacy initialization, all Audiodevs in the list will have
e3a6e0da 1754 * the same configuration (except the driver), so it doesn't matter which
71830221
KZ
1755 * one we chose. We need an Audiodev to set up AudioState before we can
1756 * init a driver. Also note that dev at this point is still in the
1757 * list.
1758 */
1759 dev = QSIMPLEQ_FIRST(&head)->dev;
1760 audio_validate_opts(dev, &error_abort);
1761 }
ecd97e95 1762
b21e2380 1763 s = g_new0(AudioState, 1);
71830221
KZ
1764 s->dev = dev;
1765
72cf2d4f
BS
1766 QLIST_INIT (&s->hw_head_out);
1767 QLIST_INIT (&s->hw_head_in);
1768 QLIST_INIT (&s->cap_head);
ecd97e95
KZ
1769 if (!atexit_registered) {
1770 atexit(audio_cleanup);
1771 atexit_registered = true;
1772 }
571ec3d6 1773
bc72ad67 1774 s->ts = timer_new_ns(QEMU_CLOCK_VIRTUAL, audio_timer, s);
571ec3d6 1775
71830221
KZ
1776 s->nb_hw_voices_out = audio_get_pdo_out(dev)->voices;
1777 s->nb_hw_voices_in = audio_get_pdo_in(dev)->voices;
c0fe3827 1778
61ddafbc 1779 if (s->nb_hw_voices_out < 1) {
571ec3d6 1780 dolog ("Bogus number of playback voices %d, setting to 1\n",
1d14ffa9
FB
1781 s->nb_hw_voices_out);
1782 s->nb_hw_voices_out = 1;
1783 }
1784
a7b7802b 1785 if (s->nb_hw_voices_in < 0) {
571ec3d6 1786 dolog ("Bogus number of capture voices %d, setting to 0\n",
1d14ffa9 1787 s->nb_hw_voices_in);
571ec3d6 1788 s->nb_hw_voices_in = 0;
1d14ffa9 1789 }
85571bc7 1790
85571bc7 1791 if (drvname) {
d3893a39
GH
1792 driver = audio_driver_lookup(drvname);
1793 if (driver) {
71830221 1794 done = !audio_driver_init(s, driver, true, dev);
d3893a39 1795 } else {
85571bc7
FB
1796 dolog ("Unknown audio driver `%s'\n", drvname);
1797 }
0f957c53
MAL
1798 if (!done) {
1799 free_audio_state(s);
1800 return NULL;
1801 }
71830221
KZ
1802 } else {
1803 for (i = 0; audio_prio_list[i]; i++) {
1804 AudiodevListEntry *e = audiodev_find(&head, audio_prio_list[i]);
d3893a39 1805 driver = audio_driver_lookup(audio_prio_list[i]);
71830221
KZ
1806
1807 if (e && driver) {
1808 s->dev = dev = e->dev;
1809 audio_validate_opts(dev, &error_abort);
1810 done = !audio_driver_init(s, driver, false, dev);
1811 if (done) {
1812 e->dev = NULL;
1813 break;
1814 }
1d14ffa9 1815 }
85571bc7
FB
1816 }
1817 }
71830221 1818 audio_free_audiodev_list(&head);
85571bc7 1819
85571bc7 1820 if (!done) {
d3893a39 1821 driver = audio_driver_lookup("none");
71830221 1822 done = !audio_driver_init(s, driver, false, dev);
7e274652
MA
1823 assert(done);
1824 dolog("warning: Using timer based audio emulation\n");
85571bc7 1825 }
1d14ffa9 1826
71830221
KZ
1827 if (dev->timer_period <= 0) {
1828 s->period_ticks = 1;
0d9acba8 1829 } else {
40ad46d3 1830 s->period_ticks = dev->timer_period * (int64_t)SCALE_US;
1d14ffa9 1831 }
0d9acba8
PB
1832
1833 e = qemu_add_vm_change_state_handler (audio_vm_change_state_handler, s);
1834 if (!e) {
1835 dolog ("warning: Could not register change state handler\n"
1836 "(Audio can continue looping even after stopping the VM)\n");
1d14ffa9
FB
1837 }
1838
0f957c53 1839 QTAILQ_INSERT_TAIL(&audio_states, s, list);
72cf2d4f 1840 QLIST_INIT (&s->card_head);
0be71e32 1841 vmstate_register (NULL, 0, &vmstate_audio, s);
ecd97e95 1842 return s;
71830221
KZ
1843}
1844
1845void audio_free_audiodev_list(AudiodevListHead *head)
1846{
1847 AudiodevListEntry *e;
1848 while ((e = QSIMPLEQ_FIRST(head))) {
1849 QSIMPLEQ_REMOVE_HEAD(head, next);
1850 qapi_free_Audiodev(e->dev);
1851 g_free(e);
1852 }
85571bc7 1853}
8ead62cf 1854
1a7dafce 1855void AUD_register_card (const char *name, QEMUSoundCard *card)
1856{
ecd97e95 1857 if (!card->state) {
af2041ed 1858 card->state = audio_init(NULL, name);
ecd97e95
KZ
1859 }
1860
7267c094 1861 card->name = g_strdup (name);
1a7dafce 1862 memset (&card->entries, 0, sizeof (card->entries));
ecd97e95 1863 QLIST_INSERT_HEAD(&card->state->card_head, card, entries);
1a7dafce 1864}
1865
1866void AUD_remove_card (QEMUSoundCard *card)
1867{
72cf2d4f 1868 QLIST_REMOVE (card, entries);
7267c094 1869 g_free (card->name);
1a7dafce 1870}
1871
33940dd3 1872static struct audio_pcm_ops capture_pcm_ops;
1a7dafce 1873
ecd97e95
KZ
1874CaptureVoiceOut *AUD_add_capture(
1875 AudioState *s,
1ea879e5 1876 struct audsettings *as,
8ead62cf
FB
1877 struct audio_capture_ops *ops,
1878 void *cb_opaque
1879 )
1880{
1881 CaptureVoiceOut *cap;
1882 struct capture_callback *cb;
1883
ecd97e95 1884 if (!s) {
af2041ed 1885 if (!legacy_config) {
4b3b7793 1886 dolog("Capturing without setting an audiodev is deprecated\n");
af2041ed
KZ
1887 }
1888 s = audio_init(NULL, NULL);
ecd97e95
KZ
1889 }
1890
1930616b
KZ
1891 if (!audio_get_pdo_out(s->dev)->mixing_engine) {
1892 dolog("Can't capture with mixeng disabled\n");
1893 return NULL;
1894 }
1895
ec36b695 1896 if (audio_validate_settings (as)) {
8ead62cf
FB
1897 dolog ("Invalid settings were passed when trying to add capture\n");
1898 audio_print_settings (as);
e8d85444 1899 return NULL;
8ead62cf
FB
1900 }
1901
e8d85444 1902 cb = g_malloc0(sizeof(*cb));
8ead62cf
FB
1903 cb->ops = *ops;
1904 cb->opaque = cb_opaque;
1905
526fb058 1906 cap = audio_pcm_capture_find_specific(s, as);
8ead62cf 1907 if (cap) {
72cf2d4f 1908 QLIST_INSERT_HEAD (&cap->cb_head, cb, entries);
ec36b695 1909 return cap;
6c6886bd 1910 } else {
8ead62cf
FB
1911 HWVoiceOut *hw;
1912 CaptureVoiceOut *cap;
1913
e8d85444 1914 cap = g_malloc0(sizeof(*cap));
8ead62cf
FB
1915
1916 hw = &cap->hw;
526fb058 1917 hw->s = s;
33940dd3 1918 hw->pcm_ops = &capture_pcm_ops;
72cf2d4f
BS
1919 QLIST_INIT (&hw->sw_head);
1920 QLIST_INIT (&cap->cb_head);
8ead62cf
FB
1921
1922 /* XXX find a more elegant way */
1923 hw->samples = 4096 * 4;
dc88e38f 1924 audio_pcm_hw_alloc_resources_out(hw);
8ead62cf 1925
d929eba5 1926 audio_pcm_init_info (&hw->info, as);
8ead62cf 1927
2b9cce8c 1928 cap->buf = g_malloc0_n(hw->mix_buf->size, hw->info.bytes_per_frame);
8ead62cf 1929
ed2a4a79
KZ
1930 if (hw->info.is_float) {
1931 hw->clip = mixeng_clip_float[hw->info.nchannels == 2];
1932 } else {
1933 hw->clip = mixeng_clip
1934 [hw->info.nchannels == 2]
1935 [hw->info.is_signed]
1936 [hw->info.swap_endianness]
1937 [audio_bits_to_index(hw->info.bits)];
1938 }
8ead62cf 1939
72cf2d4f
BS
1940 QLIST_INSERT_HEAD (&s->cap_head, cap, entries);
1941 QLIST_INSERT_HEAD (&cap->cb_head, cb, entries);
8ead62cf 1942
526fb058 1943 QLIST_FOREACH(hw, &s->hw_head_out, entries) {
1a7dafce 1944 audio_attach_capture (hw);
8ead62cf 1945 }
ec36b695 1946 return cap;
ec36b695
FB
1947 }
1948}
1949
1950void AUD_del_capture (CaptureVoiceOut *cap, void *cb_opaque)
1951{
1952 struct capture_callback *cb;
1953
1954 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) {
1955 if (cb->opaque == cb_opaque) {
1956 cb->ops.destroy (cb_opaque);
72cf2d4f 1957 QLIST_REMOVE (cb, entries);
7267c094 1958 g_free (cb);
ec36b695
FB
1959
1960 if (!cap->cb_head.lh_first) {
1961 SWVoiceOut *sw = cap->hw.sw_head.lh_first, *sw1;
a3c25997 1962
ec36b695 1963 while (sw) {
a3c25997 1964 SWVoiceCap *sc = (SWVoiceCap *) sw;
ec36b695
FB
1965#ifdef DEBUG_CAPTURE
1966 dolog ("freeing %s\n", sw->name);
1967#endif
a3c25997 1968
ec36b695
FB
1969 sw1 = sw->entries.le_next;
1970 if (sw->rate) {
1971 st_rate_stop (sw->rate);
1972 sw->rate = NULL;
1973 }
72cf2d4f
BS
1974 QLIST_REMOVE (sw, entries);
1975 QLIST_REMOVE (sc, entries);
7267c094 1976 g_free (sc);
ec36b695
FB
1977 sw = sw1;
1978 }
72cf2d4f 1979 QLIST_REMOVE (cap, entries);
3268a845
GH
1980 g_free (cap->hw.mix_buf);
1981 g_free (cap->buf);
7267c094 1982 g_free (cap);
ec36b695
FB
1983 }
1984 return;
1985 }
8ead62cf
FB
1986 }
1987}
683efdcb
AZ
1988
1989void AUD_set_volume_out (SWVoiceOut *sw, int mute, uint8_t lvol, uint8_t rvol)
cecc1e79
KZ
1990{
1991 Volume vol = { .mute = mute, .channels = 2, .vol = { lvol, rvol } };
1992 audio_set_volume_out(sw, &vol);
1993}
1994
1995void audio_set_volume_out(SWVoiceOut *sw, Volume *vol)
683efdcb
AZ
1996{
1997 if (sw) {
6c95ab94
MAL
1998 HWVoiceOut *hw = sw->hw;
1999
cecc1e79
KZ
2000 sw->vol.mute = vol->mute;
2001 sw->vol.l = nominal_volume.l * vol->vol[0] / 255;
2002 sw->vol.r = nominal_volume.l * vol->vol[vol->channels > 1 ? 1 : 0] /
2003 255;
6c95ab94 2004
571a8c52 2005 if (hw->pcm_ops->volume_out) {
cecc1e79 2006 hw->pcm_ops->volume_out(hw, vol);
6c95ab94 2007 }
683efdcb
AZ
2008 }
2009}
2010
2011void AUD_set_volume_in (SWVoiceIn *sw, int mute, uint8_t lvol, uint8_t rvol)
cecc1e79
KZ
2012{
2013 Volume vol = { .mute = mute, .channels = 2, .vol = { lvol, rvol } };
2014 audio_set_volume_in(sw, &vol);
2015}
2016
2017void audio_set_volume_in(SWVoiceIn *sw, Volume *vol)
683efdcb
AZ
2018{
2019 if (sw) {
6c95ab94
MAL
2020 HWVoiceIn *hw = sw->hw;
2021
cecc1e79
KZ
2022 sw->vol.mute = vol->mute;
2023 sw->vol.l = nominal_volume.l * vol->vol[0] / 255;
2024 sw->vol.r = nominal_volume.r * vol->vol[vol->channels > 1 ? 1 : 0] /
2025 255;
6c95ab94 2026
571a8c52 2027 if (hw->pcm_ops->volume_in) {
cecc1e79 2028 hw->pcm_ops->volume_in(hw, vol);
6c95ab94 2029 }
683efdcb
AZ
2030 }
2031}
71830221
KZ
2032
2033void audio_create_pdos(Audiodev *dev)
2034{
2035 switch (dev->driver) {
2036#define CASE(DRIVER, driver, pdo_name) \
2037 case AUDIODEV_DRIVER_##DRIVER: \
ceb19c8f 2038 if (!dev->u.driver.in) { \
71830221
KZ
2039 dev->u.driver.in = g_malloc0( \
2040 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
71830221 2041 } \
ceb19c8f 2042 if (!dev->u.driver.out) { \
71830221 2043 dev->u.driver.out = g_malloc0( \
725662d6 2044 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
71830221
KZ
2045 } \
2046 break
2047
2048 CASE(NONE, none, );
2049 CASE(ALSA, alsa, Alsa);
2050 CASE(COREAUDIO, coreaudio, Coreaudio);
739362d4 2051 CASE(DBUS, dbus, );
71830221 2052 CASE(DSOUND, dsound, );
2e445703 2053 CASE(JACK, jack, Jack);
71830221
KZ
2054 CASE(OSS, oss, Oss);
2055 CASE(PA, pa, Pa);
5a0926c2 2056 CASE(SDL, sdl, Sdl);
663df1cc 2057 CASE(SNDIO, sndio, );
71830221
KZ
2058 CASE(SPICE, spice, );
2059 CASE(WAV, wav, );
2060
2061 case AUDIODEV_DRIVER__MAX:
2062 abort();
2063 };
2064}
2065
2066static void audio_validate_per_direction_opts(
2067 AudiodevPerDirectionOptions *pdo, Error **errp)
2068{
1930616b
KZ
2069 if (!pdo->has_mixing_engine) {
2070 pdo->has_mixing_engine = true;
2071 pdo->mixing_engine = true;
2072 }
71830221
KZ
2073 if (!pdo->has_fixed_settings) {
2074 pdo->has_fixed_settings = true;
1930616b 2075 pdo->fixed_settings = pdo->mixing_engine;
71830221
KZ
2076 }
2077 if (!pdo->fixed_settings &&
2078 (pdo->has_frequency || pdo->has_channels || pdo->has_format)) {
2079 error_setg(errp,
2080 "You can't use frequency, channels or format with fixed-settings=off");
2081 return;
2082 }
1930616b
KZ
2083 if (!pdo->mixing_engine && pdo->fixed_settings) {
2084 error_setg(errp, "You can't use fixed-settings without mixeng");
2085 return;
2086 }
71830221
KZ
2087
2088 if (!pdo->has_frequency) {
2089 pdo->has_frequency = true;
2090 pdo->frequency = 44100;
2091 }
2092 if (!pdo->has_channels) {
2093 pdo->has_channels = true;
2094 pdo->channels = 2;
2095 }
2096 if (!pdo->has_voices) {
2097 pdo->has_voices = true;
1930616b 2098 pdo->voices = pdo->mixing_engine ? 1 : INT_MAX;
71830221
KZ
2099 }
2100 if (!pdo->has_format) {
2101 pdo->has_format = true;
2102 pdo->format = AUDIO_FORMAT_S16;
2103 }
2104}
2105
2106static void audio_validate_opts(Audiodev *dev, Error **errp)
2107{
2108 Error *err = NULL;
2109
2110 audio_create_pdos(dev);
2111
2112 audio_validate_per_direction_opts(audio_get_pdo_in(dev), &err);
2113 if (err) {
2114 error_propagate(errp, err);
2115 return;
2116 }
2117
2118 audio_validate_per_direction_opts(audio_get_pdo_out(dev), &err);
2119 if (err) {
2120 error_propagate(errp, err);
2121 return;
2122 }
2123
2124 if (!dev->has_timer_period) {
2125 dev->has_timer_period = true;
2126 dev->timer_period = 10000; /* 100Hz -> 10ms */
2127 }
2128}
2129
5e03b6da
CF
2130void audio_help(void)
2131{
2132 int i;
2133
2134 printf("Available audio drivers:\n");
2135
2136 for (i = 0; i < AUDIODEV_DRIVER__MAX; i++) {
2137 audio_driver *driver = audio_driver_lookup(AudiodevDriver_str(i));
2138 if (driver) {
2139 printf("%s\n", driver->name);
2140 }
2141 }
2142}
2143
71830221
KZ
2144void audio_parse_option(const char *opt)
2145{
71830221
KZ
2146 Audiodev *dev = NULL;
2147
5e03b6da
CF
2148 if (is_help_option(opt)) {
2149 audio_help();
2150 exit(EXIT_SUCCESS);
2151 }
71830221
KZ
2152 Visitor *v = qobject_input_visitor_new_str(opt, "driver", &error_fatal);
2153 visit_type_Audiodev(v, NULL, &dev, &error_fatal);
2154 visit_free(v);
2155
039a6837
PB
2156 audio_define(dev);
2157}
2158
2159void audio_define(Audiodev *dev)
2160{
2161 AudiodevListEntry *e;
2162
71830221
KZ
2163 audio_validate_opts(dev, &error_fatal);
2164
b21e2380 2165 e = g_new0(AudiodevListEntry, 1);
71830221
KZ
2166 e->dev = dev;
2167 QSIMPLEQ_INSERT_TAIL(&audiodevs, e, next);
2168}
2169
0f957c53 2170bool audio_init_audiodevs(void)
71830221
KZ
2171{
2172 AudiodevListEntry *e;
2173
2174 QSIMPLEQ_FOREACH(e, &audiodevs, next) {
0f957c53
MAL
2175 if (!audio_init(e->dev, NULL)) {
2176 return false;
2177 }
71830221 2178 }
0f957c53
MAL
2179
2180 return true;
71830221
KZ
2181}
2182
2183audsettings audiodev_to_audsettings(AudiodevPerDirectionOptions *pdo)
2184{
2185 return (audsettings) {
2186 .freq = pdo->frequency,
2187 .nchannels = pdo->channels,
2188 .fmt = pdo->format,
2189 .endianness = AUDIO_HOST_ENDIANNESS,
2190 };
2191}
2192
2193int audioformat_bytes_per_sample(AudioFormat fmt)
2194{
2195 switch (fmt) {
2196 case AUDIO_FORMAT_U8:
2197 case AUDIO_FORMAT_S8:
2198 return 1;
2199
2200 case AUDIO_FORMAT_U16:
2201 case AUDIO_FORMAT_S16:
2202 return 2;
2203
2204 case AUDIO_FORMAT_U32:
2205 case AUDIO_FORMAT_S32:
ed2a4a79 2206 case AUDIO_FORMAT_F32:
71830221
KZ
2207 return 4;
2208
2209 case AUDIO_FORMAT__MAX:
2210 ;
2211 }
2212 abort();
2213}
2214
2215
2216/* frames = freq * usec / 1e6 */
2217int audio_buffer_frames(AudiodevPerDirectionOptions *pdo,
2218 audsettings *as, int def_usecs)
2219{
2220 uint64_t usecs = pdo->has_buffer_length ? pdo->buffer_length : def_usecs;
2221 return (as->freq * usecs + 500000) / 1000000;
2222}
2223
2224/* samples = channels * frames = channels * freq * usec / 1e6 */
2225int audio_buffer_samples(AudiodevPerDirectionOptions *pdo,
2226 audsettings *as, int def_usecs)
2227{
2228 return as->nchannels * audio_buffer_frames(pdo, as, def_usecs);
2229}
2230
2231/*
2232 * bytes = bytes_per_sample * samples =
2233 * bytes_per_sample * channels * freq * usec / 1e6
2234 */
2235int audio_buffer_bytes(AudiodevPerDirectionOptions *pdo,
2236 audsettings *as, int def_usecs)
2237{
2238 return audio_buffer_samples(pdo, as, def_usecs) *
2239 audioformat_bytes_per_sample(as->fmt);
2240}
ecd97e95
KZ
2241
2242AudioState *audio_state_by_name(const char *name)
2243{
2244 AudioState *s;
2245 QTAILQ_FOREACH(s, &audio_states, list) {
2246 assert(s->dev);
2247 if (strcmp(name, s->dev->id) == 0) {
2248 return s;
2249 }
2250 }
2251 return NULL;
2252}
2253
2254const char *audio_get_id(QEMUSoundCard *card)
2255{
2256 if (card->state) {
2257 assert(card->state->dev);
2258 return card->state->dev->id;
2259 } else {
2260 return "";
2261 }
2262}
857271a2 2263
37a54d05
VR
2264const char *audio_application_name(void)
2265{
2266 const char *vm_name;
2267
2268 vm_name = qemu_get_vm_name();
2269 return vm_name ? vm_name : "qemu";
2270}
2271
857271a2
KZ
2272void audio_rate_start(RateCtl *rate)
2273{
2274 memset(rate, 0, sizeof(RateCtl));
2275 rate->start_ticks = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
2276}
2277
02732641 2278size_t audio_rate_peek_bytes(RateCtl *rate, struct audio_pcm_info *info)
857271a2
KZ
2279{
2280 int64_t now;
2281 int64_t ticks;
2282 int64_t bytes;
02732641 2283 int64_t frames;
857271a2
KZ
2284
2285 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
2286 ticks = now - rate->start_ticks;
2287 bytes = muldiv64(ticks, info->bytes_per_second, NANOSECONDS_PER_SECOND);
02732641
VR
2288 frames = (bytes - rate->bytes_sent) / info->bytes_per_frame;
2289 if (frames < 0 || frames > 65536) {
2290 AUD_log(NULL, "Resetting rate control (%" PRId64 " frames)\n", frames);
857271a2 2291 audio_rate_start(rate);
02732641 2292 frames = 0;
857271a2
KZ
2293 }
2294
02732641
VR
2295 return frames * info->bytes_per_frame;
2296}
2297
2298void audio_rate_add_bytes(RateCtl *rate, size_t bytes_used)
2299{
2300 rate->bytes_sent += bytes_used;
2301}
2302
613fe02b 2303size_t audio_rate_get_bytes(RateCtl *rate, struct audio_pcm_info *info,
02732641
VR
2304 size_t bytes_avail)
2305{
2306 size_t bytes;
2307
2308 bytes = audio_rate_peek_bytes(rate, info);
2309 bytes = MIN(bytes, bytes_avail);
2310 audio_rate_add_bytes(rate, bytes);
2311
2312 return bytes;
857271a2 2313}