audio: rename variables in audio_pcm_sw_read()
[qemu/ar7.git] / audio / audio.c
blob22c36d66604a071ecb433b35adcfe08069fa6351
1 /*
2 * QEMU Audio subsystem
4 * Copyright (c) 2003-2005 Vassili Karpov (malc)
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
25 #include "qemu/osdep.h"
26 #include "audio.h"
27 #include "migration/vmstate.h"
28 #include "monitor/monitor.h"
29 #include "qemu/timer.h"
30 #include "qapi/error.h"
31 #include "qapi/clone-visitor.h"
32 #include "qapi/qobject-input-visitor.h"
33 #include "qapi/qapi-visit-audio.h"
34 #include "qapi/qapi-commands-audio.h"
35 #include "qemu/cutils.h"
36 #include "qemu/log.h"
37 #include "qemu/module.h"
38 #include "qemu/help_option.h"
39 #include "sysemu/sysemu.h"
40 #include "sysemu/replay.h"
41 #include "sysemu/runstate.h"
42 #include "ui/qemu-spice.h"
43 #include "trace.h"
45 #define AUDIO_CAP "audio"
46 #include "audio_int.h"
48 /* #define DEBUG_LIVE */
49 /* #define DEBUG_OUT */
50 /* #define DEBUG_CAPTURE */
51 /* #define DEBUG_POLL */
53 #define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown"
56 /* Order of CONFIG_AUDIO_DRIVERS is import.
57 The 1st one is the one used by default, that is the reason
58 that we generate the list.
60 const char *audio_prio_list[] = {
61 "spice",
62 CONFIG_AUDIO_DRIVERS
63 "none",
64 "wav",
65 NULL
68 static QLIST_HEAD(, audio_driver) audio_drivers;
69 static AudiodevListHead audiodevs = QSIMPLEQ_HEAD_INITIALIZER(audiodevs);
71 void audio_driver_register(audio_driver *drv)
73 QLIST_INSERT_HEAD(&audio_drivers, drv, next);
76 audio_driver *audio_driver_lookup(const char *name)
78 struct audio_driver *d;
79 Error *local_err = NULL;
80 int rv;
82 QLIST_FOREACH(d, &audio_drivers, next) {
83 if (strcmp(name, d->name) == 0) {
84 return d;
87 rv = audio_module_load(name, &local_err);
88 if (rv > 0) {
89 QLIST_FOREACH(d, &audio_drivers, next) {
90 if (strcmp(name, d->name) == 0) {
91 return d;
94 } else if (rv < 0) {
95 error_report_err(local_err);
97 return NULL;
100 static QTAILQ_HEAD(AudioStateHead, AudioState) audio_states =
101 QTAILQ_HEAD_INITIALIZER(audio_states);
103 const struct mixeng_volume nominal_volume = {
104 .mute = 0,
105 #ifdef FLOAT_MIXENG
106 .r = 1.0,
107 .l = 1.0,
108 #else
109 .r = 1ULL << 32,
110 .l = 1ULL << 32,
111 #endif
114 static bool legacy_config = true;
116 int audio_bug (const char *funcname, int cond)
118 if (cond) {
119 static int shown;
121 AUD_log (NULL, "A bug was just triggered in %s\n", funcname);
122 if (!shown) {
123 shown = 1;
124 AUD_log (NULL, "Save all your work and restart without audio\n");
125 AUD_log (NULL, "I am sorry\n");
127 AUD_log (NULL, "Context:\n");
130 return cond;
133 static inline int audio_bits_to_index (int bits)
135 switch (bits) {
136 case 8:
137 return 0;
139 case 16:
140 return 1;
142 case 32:
143 return 2;
145 default:
146 audio_bug ("bits_to_index", 1);
147 AUD_log (NULL, "invalid bits %d\n", bits);
148 return 0;
152 void AUD_vlog (const char *cap, const char *fmt, va_list ap)
154 if (cap) {
155 fprintf(stderr, "%s: ", cap);
158 vfprintf(stderr, fmt, ap);
161 void AUD_log (const char *cap, const char *fmt, ...)
163 va_list ap;
165 va_start (ap, fmt);
166 AUD_vlog (cap, fmt, ap);
167 va_end (ap);
170 static void audio_print_settings (struct audsettings *as)
172 dolog ("frequency=%d nchannels=%d fmt=", as->freq, as->nchannels);
174 switch (as->fmt) {
175 case AUDIO_FORMAT_S8:
176 AUD_log (NULL, "S8");
177 break;
178 case AUDIO_FORMAT_U8:
179 AUD_log (NULL, "U8");
180 break;
181 case AUDIO_FORMAT_S16:
182 AUD_log (NULL, "S16");
183 break;
184 case AUDIO_FORMAT_U16:
185 AUD_log (NULL, "U16");
186 break;
187 case AUDIO_FORMAT_S32:
188 AUD_log (NULL, "S32");
189 break;
190 case AUDIO_FORMAT_U32:
191 AUD_log (NULL, "U32");
192 break;
193 case AUDIO_FORMAT_F32:
194 AUD_log (NULL, "F32");
195 break;
196 default:
197 AUD_log (NULL, "invalid(%d)", as->fmt);
198 break;
201 AUD_log (NULL, " endianness=");
202 switch (as->endianness) {
203 case 0:
204 AUD_log (NULL, "little");
205 break;
206 case 1:
207 AUD_log (NULL, "big");
208 break;
209 default:
210 AUD_log (NULL, "invalid");
211 break;
213 AUD_log (NULL, "\n");
216 static int audio_validate_settings (struct audsettings *as)
218 int invalid;
220 invalid = as->nchannels < 1;
221 invalid |= as->endianness != 0 && as->endianness != 1;
223 switch (as->fmt) {
224 case AUDIO_FORMAT_S8:
225 case AUDIO_FORMAT_U8:
226 case AUDIO_FORMAT_S16:
227 case AUDIO_FORMAT_U16:
228 case AUDIO_FORMAT_S32:
229 case AUDIO_FORMAT_U32:
230 case AUDIO_FORMAT_F32:
231 break;
232 default:
233 invalid = 1;
234 break;
237 invalid |= as->freq <= 0;
238 return invalid ? -1 : 0;
241 static int audio_pcm_info_eq (struct audio_pcm_info *info, struct audsettings *as)
243 int bits = 8;
244 bool is_signed = false, is_float = false;
246 switch (as->fmt) {
247 case AUDIO_FORMAT_S8:
248 is_signed = true;
249 /* fall through */
250 case AUDIO_FORMAT_U8:
251 break;
253 case AUDIO_FORMAT_S16:
254 is_signed = true;
255 /* fall through */
256 case AUDIO_FORMAT_U16:
257 bits = 16;
258 break;
260 case AUDIO_FORMAT_F32:
261 is_float = true;
262 /* fall through */
263 case AUDIO_FORMAT_S32:
264 is_signed = true;
265 /* fall through */
266 case AUDIO_FORMAT_U32:
267 bits = 32;
268 break;
270 default:
271 abort();
273 return info->freq == as->freq
274 && info->nchannels == as->nchannels
275 && info->is_signed == is_signed
276 && info->is_float == is_float
277 && info->bits == bits
278 && info->swap_endianness == (as->endianness != AUDIO_HOST_ENDIANNESS);
281 void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as)
283 int bits = 8, mul;
284 bool is_signed = false, is_float = false;
286 switch (as->fmt) {
287 case AUDIO_FORMAT_S8:
288 is_signed = true;
289 /* fall through */
290 case AUDIO_FORMAT_U8:
291 mul = 1;
292 break;
294 case AUDIO_FORMAT_S16:
295 is_signed = true;
296 /* fall through */
297 case AUDIO_FORMAT_U16:
298 bits = 16;
299 mul = 2;
300 break;
302 case AUDIO_FORMAT_F32:
303 is_float = true;
304 /* fall through */
305 case AUDIO_FORMAT_S32:
306 is_signed = true;
307 /* fall through */
308 case AUDIO_FORMAT_U32:
309 bits = 32;
310 mul = 4;
311 break;
313 default:
314 abort();
317 info->freq = as->freq;
318 info->bits = bits;
319 info->is_signed = is_signed;
320 info->is_float = is_float;
321 info->nchannels = as->nchannels;
322 info->bytes_per_frame = as->nchannels * mul;
323 info->bytes_per_second = info->freq * info->bytes_per_frame;
324 info->swap_endianness = (as->endianness != AUDIO_HOST_ENDIANNESS);
327 void audio_pcm_info_clear_buf (struct audio_pcm_info *info, void *buf, int len)
329 if (!len) {
330 return;
333 if (info->is_signed || info->is_float) {
334 memset(buf, 0x00, len * info->bytes_per_frame);
335 } else {
336 switch (info->bits) {
337 case 8:
338 memset(buf, 0x80, len * info->bytes_per_frame);
339 break;
341 case 16:
343 int i;
344 uint16_t *p = buf;
345 short s = INT16_MAX;
347 if (info->swap_endianness) {
348 s = bswap16 (s);
351 for (i = 0; i < len * info->nchannels; i++) {
352 p[i] = s;
355 break;
357 case 32:
359 int i;
360 uint32_t *p = buf;
361 int32_t s = INT32_MAX;
363 if (info->swap_endianness) {
364 s = bswap32 (s);
367 for (i = 0; i < len * info->nchannels; i++) {
368 p[i] = s;
371 break;
373 default:
374 AUD_log (NULL, "audio_pcm_info_clear_buf: invalid bits %d\n",
375 info->bits);
376 break;
382 * Capture
384 static CaptureVoiceOut *audio_pcm_capture_find_specific(AudioState *s,
385 struct audsettings *as)
387 CaptureVoiceOut *cap;
389 for (cap = s->cap_head.lh_first; cap; cap = cap->entries.le_next) {
390 if (audio_pcm_info_eq (&cap->hw.info, as)) {
391 return cap;
394 return NULL;
397 static void audio_notify_capture (CaptureVoiceOut *cap, audcnotification_e cmd)
399 struct capture_callback *cb;
401 #ifdef DEBUG_CAPTURE
402 dolog ("notification %d sent\n", cmd);
403 #endif
404 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) {
405 cb->ops.notify (cb->opaque, cmd);
409 static void audio_capture_maybe_changed (CaptureVoiceOut *cap, int enabled)
411 if (cap->hw.enabled != enabled) {
412 audcnotification_e cmd;
413 cap->hw.enabled = enabled;
414 cmd = enabled ? AUD_CNOTIFY_ENABLE : AUD_CNOTIFY_DISABLE;
415 audio_notify_capture (cap, cmd);
419 static void audio_recalc_and_notify_capture (CaptureVoiceOut *cap)
421 HWVoiceOut *hw = &cap->hw;
422 SWVoiceOut *sw;
423 int enabled = 0;
425 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
426 if (sw->active) {
427 enabled = 1;
428 break;
431 audio_capture_maybe_changed (cap, enabled);
434 static void audio_detach_capture (HWVoiceOut *hw)
436 SWVoiceCap *sc = hw->cap_head.lh_first;
438 while (sc) {
439 SWVoiceCap *sc1 = sc->entries.le_next;
440 SWVoiceOut *sw = &sc->sw;
441 CaptureVoiceOut *cap = sc->cap;
442 int was_active = sw->active;
444 if (sw->rate) {
445 st_rate_stop (sw->rate);
446 sw->rate = NULL;
449 QLIST_REMOVE (sw, entries);
450 QLIST_REMOVE (sc, entries);
451 g_free (sc);
452 if (was_active) {
453 /* We have removed soft voice from the capture:
454 this might have changed the overall status of the capture
455 since this might have been the only active voice */
456 audio_recalc_and_notify_capture (cap);
458 sc = sc1;
462 static int audio_attach_capture (HWVoiceOut *hw)
464 AudioState *s = hw->s;
465 CaptureVoiceOut *cap;
467 audio_detach_capture (hw);
468 for (cap = s->cap_head.lh_first; cap; cap = cap->entries.le_next) {
469 SWVoiceCap *sc;
470 SWVoiceOut *sw;
471 HWVoiceOut *hw_cap = &cap->hw;
473 sc = g_malloc0(sizeof(*sc));
475 sc->cap = cap;
476 sw = &sc->sw;
477 sw->hw = hw_cap;
478 sw->info = hw->info;
479 sw->empty = 1;
480 sw->active = hw->enabled;
481 sw->ratio = ((int64_t) hw_cap->info.freq << 32) / sw->info.freq;
482 sw->vol = nominal_volume;
483 sw->rate = st_rate_start (sw->info.freq, hw_cap->info.freq);
484 QLIST_INSERT_HEAD (&hw_cap->sw_head, sw, entries);
485 QLIST_INSERT_HEAD (&hw->cap_head, sc, entries);
486 #ifdef DEBUG_CAPTURE
487 sw->name = g_strdup_printf ("for %p %d,%d,%d",
488 hw, sw->info.freq, sw->info.bits,
489 sw->info.nchannels);
490 dolog ("Added %s active = %d\n", sw->name, sw->active);
491 #endif
492 if (sw->active) {
493 audio_capture_maybe_changed (cap, 1);
496 return 0;
500 * Hard voice (capture)
502 static size_t audio_pcm_hw_find_min_in (HWVoiceIn *hw)
504 SWVoiceIn *sw;
505 size_t m = hw->total_samples_captured;
507 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
508 if (sw->active) {
509 m = MIN (m, sw->total_hw_samples_acquired);
512 return m;
515 static size_t audio_pcm_hw_get_live_in(HWVoiceIn *hw)
517 size_t live = hw->total_samples_captured - audio_pcm_hw_find_min_in (hw);
518 if (audio_bug(__func__, live > hw->conv_buf.size)) {
519 dolog("live=%zu hw->conv_buf.size=%zu\n", live, hw->conv_buf.size);
520 return 0;
522 return live;
525 static size_t audio_pcm_hw_conv_in(HWVoiceIn *hw, void *pcm_buf, size_t samples)
527 size_t conv = 0;
528 STSampleBuffer *conv_buf = &hw->conv_buf;
530 while (samples) {
531 uint8_t *src = advance(pcm_buf, conv * hw->info.bytes_per_frame);
532 size_t proc = MIN(samples, conv_buf->size - conv_buf->pos);
534 hw->conv(conv_buf->buffer + conv_buf->pos, src, proc);
535 conv_buf->pos = (conv_buf->pos + proc) % conv_buf->size;
536 samples -= proc;
537 conv += proc;
540 return conv;
544 * Soft voice (capture)
546 static void audio_pcm_sw_resample_in(SWVoiceIn *sw,
547 size_t frames_in_max, size_t frames_out_max,
548 size_t *total_in, size_t *total_out)
550 HWVoiceIn *hw = sw->hw;
551 struct st_sample *src, *dst;
552 size_t live, rpos, frames_in, frames_out;
554 live = hw->total_samples_captured - sw->total_hw_samples_acquired;
555 rpos = audio_ring_posb(hw->conv_buf.pos, live, hw->conv_buf.size);
557 /* resample conv_buf from rpos to end of buffer */
558 src = hw->conv_buf.buffer + rpos;
559 frames_in = MIN(frames_in_max, hw->conv_buf.size - rpos);
560 dst = sw->resample_buf.buffer;
561 frames_out = frames_out_max;
562 st_rate_flow(sw->rate, src, dst, &frames_in, &frames_out);
563 rpos += frames_in;
564 *total_in = frames_in;
565 *total_out = frames_out;
567 /* resample conv_buf from start of buffer if there are input frames left */
568 if (frames_in_max - frames_in && rpos == hw->conv_buf.size) {
569 src = hw->conv_buf.buffer;
570 frames_in = frames_in_max - frames_in;
571 dst += frames_out;
572 frames_out = frames_out_max - frames_out;
573 st_rate_flow(sw->rate, src, dst, &frames_in, &frames_out);
574 *total_in += frames_in;
575 *total_out += frames_out;
579 static size_t audio_pcm_sw_read(SWVoiceIn *sw, void *buf, size_t buf_len)
581 HWVoiceIn *hw = sw->hw;
582 size_t live, frames_out_max, swlim, total_in, total_out;
584 live = hw->total_samples_captured - sw->total_hw_samples_acquired;
585 if (!live) {
586 return 0;
588 if (audio_bug(__func__, live > hw->conv_buf.size)) {
589 dolog("live_in=%zu hw->conv_buf.size=%zu\n", live, hw->conv_buf.size);
590 return 0;
593 frames_out_max = buf_len / sw->info.bytes_per_frame;
595 swlim = (live * sw->ratio) >> 32;
596 swlim = MIN(swlim, frames_out_max);
598 audio_pcm_sw_resample_in(sw, live, swlim, &total_in, &total_out);
600 if (!hw->pcm_ops->volume_in) {
601 mixeng_volume(sw->resample_buf.buffer, total_out, &sw->vol);
603 sw->clip(buf, sw->resample_buf.buffer, total_out);
605 sw->total_hw_samples_acquired += total_in;
606 return total_out * sw->info.bytes_per_frame;
610 * Hard voice (playback)
612 static size_t audio_pcm_hw_find_min_out (HWVoiceOut *hw, int *nb_livep)
614 SWVoiceOut *sw;
615 size_t m = SIZE_MAX;
616 int nb_live = 0;
618 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
619 if (sw->active || !sw->empty) {
620 m = MIN (m, sw->total_hw_samples_mixed);
621 nb_live += 1;
625 *nb_livep = nb_live;
626 return m;
629 static size_t audio_pcm_hw_get_live_out (HWVoiceOut *hw, int *nb_live)
631 size_t smin;
632 int nb_live1;
634 smin = audio_pcm_hw_find_min_out (hw, &nb_live1);
635 if (nb_live) {
636 *nb_live = nb_live1;
639 if (nb_live1) {
640 size_t live = smin;
642 if (audio_bug(__func__, live > hw->mix_buf.size)) {
643 dolog("live=%zu hw->mix_buf.size=%zu\n", live, hw->mix_buf.size);
644 return 0;
646 return live;
648 return 0;
651 static size_t audio_pcm_hw_get_free(HWVoiceOut *hw)
653 return (hw->pcm_ops->buffer_get_free ? hw->pcm_ops->buffer_get_free(hw) :
654 INT_MAX) / hw->info.bytes_per_frame;
657 static void audio_pcm_hw_clip_out(HWVoiceOut *hw, void *pcm_buf, size_t len)
659 size_t clipped = 0;
660 size_t pos = hw->mix_buf.pos;
662 while (len) {
663 st_sample *src = hw->mix_buf.buffer + pos;
664 uint8_t *dst = advance(pcm_buf, clipped * hw->info.bytes_per_frame);
665 size_t samples_till_end_of_buf = hw->mix_buf.size - pos;
666 size_t samples_to_clip = MIN(len, samples_till_end_of_buf);
668 hw->clip(dst, src, samples_to_clip);
670 pos = (pos + samples_to_clip) % hw->mix_buf.size;
671 len -= samples_to_clip;
672 clipped += samples_to_clip;
677 * Soft voice (playback)
679 static void audio_pcm_sw_resample_out(SWVoiceOut *sw,
680 size_t frames_in_max, size_t frames_out_max,
681 size_t *total_in, size_t *total_out)
683 HWVoiceOut *hw = sw->hw;
684 struct st_sample *src, *dst;
685 size_t live, wpos, frames_in, frames_out;
687 live = sw->total_hw_samples_mixed;
688 wpos = (hw->mix_buf.pos + live) % hw->mix_buf.size;
690 /* write to mix_buf from wpos to end of buffer */
691 src = sw->resample_buf.buffer;
692 frames_in = frames_in_max;
693 dst = hw->mix_buf.buffer + wpos;
694 frames_out = MIN(frames_out_max, hw->mix_buf.size - wpos);
695 st_rate_flow_mix(sw->rate, src, dst, &frames_in, &frames_out);
696 wpos += frames_out;
697 *total_in = frames_in;
698 *total_out = frames_out;
700 /* write to mix_buf from start of buffer if there are input frames left */
701 if (frames_in_max - frames_in > 0 && wpos == hw->mix_buf.size) {
702 src += frames_in;
703 frames_in = frames_in_max - frames_in;
704 dst = hw->mix_buf.buffer;
705 frames_out = frames_out_max - frames_out;
706 st_rate_flow_mix(sw->rate, src, dst, &frames_in, &frames_out);
707 *total_in += frames_in;
708 *total_out += frames_out;
712 static size_t audio_pcm_sw_write(SWVoiceOut *sw, void *buf, size_t buf_len)
714 HWVoiceOut *hw = sw->hw;
715 size_t live, dead, hw_free, sw_max, fe_max;
716 size_t frames_in_max, frames_out_max, total_in, total_out;
718 live = sw->total_hw_samples_mixed;
719 if (audio_bug(__func__, live > hw->mix_buf.size)) {
720 dolog("live=%zu hw->mix_buf.size=%zu\n", live, hw->mix_buf.size);
721 return 0;
724 if (live == hw->mix_buf.size) {
725 #ifdef DEBUG_OUT
726 dolog ("%s is full %zu\n", sw->name, live);
727 #endif
728 return 0;
731 dead = hw->mix_buf.size - live;
732 hw_free = audio_pcm_hw_get_free(hw);
733 hw_free = hw_free > live ? hw_free - live : 0;
734 frames_out_max = MIN(dead, hw_free);
735 sw_max = st_rate_frames_in(sw->rate, frames_out_max);
736 fe_max = MIN(buf_len / sw->info.bytes_per_frame, sw->resample_buf.size);
737 frames_in_max = MIN(sw_max, fe_max);
739 if (!frames_in_max) {
740 return 0;
743 sw->conv(sw->resample_buf.buffer, buf, frames_in_max);
744 if (!sw->hw->pcm_ops->volume_out) {
745 mixeng_volume(sw->resample_buf.buffer, frames_in_max, &sw->vol);
748 audio_pcm_sw_resample_out(sw, frames_in_max, frames_out_max,
749 &total_in, &total_out);
751 sw->total_hw_samples_mixed += total_out;
752 sw->empty = sw->total_hw_samples_mixed == 0;
754 #ifdef DEBUG_OUT
755 dolog (
756 "%s: write size %zu written %zu total mixed %zu\n",
757 SW_NAME(sw),
758 buf_len / sw->info.bytes_per_frame,
759 total_in,
760 sw->total_hw_samples_mixed
762 #endif
764 return total_in * sw->info.bytes_per_frame;
767 #ifdef DEBUG_AUDIO
768 static void audio_pcm_print_info (const char *cap, struct audio_pcm_info *info)
770 dolog("%s: bits %d, sign %d, float %d, freq %d, nchan %d\n",
771 cap, info->bits, info->is_signed, info->is_float, info->freq,
772 info->nchannels);
774 #endif
776 #define DAC
777 #include "audio_template.h"
778 #undef DAC
779 #include "audio_template.h"
782 * Timer
784 static int audio_is_timer_needed(AudioState *s)
786 HWVoiceIn *hwi = NULL;
787 HWVoiceOut *hwo = NULL;
789 while ((hwo = audio_pcm_hw_find_any_enabled_out(s, hwo))) {
790 if (!hwo->poll_mode) {
791 return 1;
794 while ((hwi = audio_pcm_hw_find_any_enabled_in(s, hwi))) {
795 if (!hwi->poll_mode) {
796 return 1;
799 return 0;
802 static void audio_reset_timer (AudioState *s)
804 if (audio_is_timer_needed(s)) {
805 timer_mod_anticipate_ns(s->ts,
806 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + s->period_ticks);
807 if (!s->timer_running) {
808 s->timer_running = true;
809 s->timer_last = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
810 trace_audio_timer_start(s->period_ticks / SCALE_MS);
812 } else {
813 timer_del(s->ts);
814 if (s->timer_running) {
815 s->timer_running = false;
816 trace_audio_timer_stop();
821 static void audio_timer (void *opaque)
823 int64_t now, diff;
824 AudioState *s = opaque;
826 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
827 diff = now - s->timer_last;
828 if (diff > s->period_ticks * 3 / 2) {
829 trace_audio_timer_delayed(diff / SCALE_MS);
831 s->timer_last = now;
833 audio_run(s, "timer");
834 audio_reset_timer(s);
838 * Public API
840 size_t AUD_write(SWVoiceOut *sw, void *buf, size_t size)
842 HWVoiceOut *hw;
844 if (!sw) {
845 /* XXX: Consider options */
846 return size;
848 hw = sw->hw;
850 if (!hw->enabled) {
851 dolog ("Writing to disabled voice %s\n", SW_NAME (sw));
852 return 0;
855 if (audio_get_pdo_out(hw->s->dev)->mixing_engine) {
856 return audio_pcm_sw_write(sw, buf, size);
857 } else {
858 return hw->pcm_ops->write(hw, buf, size);
862 size_t AUD_read(SWVoiceIn *sw, void *buf, size_t size)
864 HWVoiceIn *hw;
866 if (!sw) {
867 /* XXX: Consider options */
868 return size;
870 hw = sw->hw;
872 if (!hw->enabled) {
873 dolog ("Reading from disabled voice %s\n", SW_NAME (sw));
874 return 0;
877 if (audio_get_pdo_in(hw->s->dev)->mixing_engine) {
878 return audio_pcm_sw_read(sw, buf, size);
879 } else {
880 return hw->pcm_ops->read(hw, buf, size);
884 int AUD_get_buffer_size_out(SWVoiceOut *sw)
886 return sw->hw->samples * sw->hw->info.bytes_per_frame;
889 void AUD_set_active_out (SWVoiceOut *sw, int on)
891 HWVoiceOut *hw;
893 if (!sw) {
894 return;
897 hw = sw->hw;
898 if (sw->active != on) {
899 AudioState *s = sw->s;
900 SWVoiceOut *temp_sw;
901 SWVoiceCap *sc;
903 if (on) {
904 hw->pending_disable = 0;
905 if (!hw->enabled) {
906 hw->enabled = 1;
907 if (s->vm_running) {
908 if (hw->pcm_ops->enable_out) {
909 hw->pcm_ops->enable_out(hw, true);
911 audio_reset_timer (s);
914 } else {
915 if (hw->enabled) {
916 int nb_active = 0;
918 for (temp_sw = hw->sw_head.lh_first; temp_sw;
919 temp_sw = temp_sw->entries.le_next) {
920 nb_active += temp_sw->active != 0;
923 hw->pending_disable = nb_active == 1;
927 for (sc = hw->cap_head.lh_first; sc; sc = sc->entries.le_next) {
928 sc->sw.active = hw->enabled;
929 if (hw->enabled) {
930 audio_capture_maybe_changed (sc->cap, 1);
933 sw->active = on;
937 void AUD_set_active_in (SWVoiceIn *sw, int on)
939 HWVoiceIn *hw;
941 if (!sw) {
942 return;
945 hw = sw->hw;
946 if (sw->active != on) {
947 AudioState *s = sw->s;
948 SWVoiceIn *temp_sw;
950 if (on) {
951 if (!hw->enabled) {
952 hw->enabled = 1;
953 if (s->vm_running) {
954 if (hw->pcm_ops->enable_in) {
955 hw->pcm_ops->enable_in(hw, true);
957 audio_reset_timer (s);
960 sw->total_hw_samples_acquired = hw->total_samples_captured;
961 } else {
962 if (hw->enabled) {
963 int nb_active = 0;
965 for (temp_sw = hw->sw_head.lh_first; temp_sw;
966 temp_sw = temp_sw->entries.le_next) {
967 nb_active += temp_sw->active != 0;
970 if (nb_active == 1) {
971 hw->enabled = 0;
972 if (hw->pcm_ops->enable_in) {
973 hw->pcm_ops->enable_in(hw, false);
978 sw->active = on;
983 * audio_frontend_frames_in() - returns the number of frames the resampling
984 * code generates from frames_in frames
986 * @sw: audio recording frontend
987 * @frames_in: number of frames
989 static size_t audio_frontend_frames_in(SWVoiceIn *sw, size_t frames_in)
991 return (int64_t)frames_in * sw->ratio >> 32;
994 static size_t audio_get_avail (SWVoiceIn *sw)
996 size_t live;
998 if (!sw) {
999 return 0;
1002 live = sw->hw->total_samples_captured - sw->total_hw_samples_acquired;
1003 if (audio_bug(__func__, live > sw->hw->conv_buf.size)) {
1004 dolog("live=%zu sw->hw->conv_buf.size=%zu\n", live,
1005 sw->hw->conv_buf.size);
1006 return 0;
1009 ldebug (
1010 "%s: get_avail live %zu frontend frames %zu\n",
1011 SW_NAME (sw),
1012 live, audio_frontend_frames_in(sw, live)
1015 return live;
1018 static size_t audio_get_free(SWVoiceOut *sw)
1020 size_t live, dead;
1022 if (!sw) {
1023 return 0;
1026 live = sw->total_hw_samples_mixed;
1028 if (audio_bug(__func__, live > sw->hw->mix_buf.size)) {
1029 dolog("live=%zu sw->hw->mix_buf.size=%zu\n", live,
1030 sw->hw->mix_buf.size);
1031 return 0;
1034 dead = sw->hw->mix_buf.size - live;
1036 #ifdef DEBUG_OUT
1037 dolog("%s: get_free live %zu dead %zu frontend frames %u\n",
1038 SW_NAME(sw), live, dead, st_rate_frames_in(sw->rate, dead));
1039 #endif
1041 return dead;
1044 static void audio_capture_mix_and_clear(HWVoiceOut *hw, size_t rpos,
1045 size_t samples)
1047 size_t n;
1049 if (hw->enabled) {
1050 SWVoiceCap *sc;
1052 for (sc = hw->cap_head.lh_first; sc; sc = sc->entries.le_next) {
1053 SWVoiceOut *sw = &sc->sw;
1054 size_t rpos2 = rpos;
1056 n = samples;
1057 while (n) {
1058 size_t till_end_of_hw = hw->mix_buf.size - rpos2;
1059 size_t to_read = MIN(till_end_of_hw, n);
1060 size_t live, frames_in, frames_out;
1062 sw->resample_buf.buffer = hw->mix_buf.buffer + rpos2;
1063 sw->resample_buf.size = to_read;
1064 live = sw->total_hw_samples_mixed;
1066 audio_pcm_sw_resample_out(sw,
1067 to_read, sw->hw->mix_buf.size - live,
1068 &frames_in, &frames_out);
1070 sw->total_hw_samples_mixed += frames_out;
1071 sw->empty = sw->total_hw_samples_mixed == 0;
1073 if (to_read - frames_in) {
1074 dolog("Could not mix %zu frames into a capture "
1075 "buffer, mixed %zu\n",
1076 to_read, frames_in);
1077 break;
1079 n -= to_read;
1080 rpos2 = (rpos2 + to_read) % hw->mix_buf.size;
1085 n = MIN(samples, hw->mix_buf.size - rpos);
1086 mixeng_clear(hw->mix_buf.buffer + rpos, n);
1087 mixeng_clear(hw->mix_buf.buffer, samples - n);
1090 static size_t audio_pcm_hw_run_out(HWVoiceOut *hw, size_t live)
1092 size_t clipped = 0;
1094 while (live) {
1095 size_t size = live * hw->info.bytes_per_frame;
1096 size_t decr, proc;
1097 void *buf = hw->pcm_ops->get_buffer_out(hw, &size);
1099 if (size == 0) {
1100 break;
1103 decr = MIN(size / hw->info.bytes_per_frame, live);
1104 if (buf) {
1105 audio_pcm_hw_clip_out(hw, buf, decr);
1107 proc = hw->pcm_ops->put_buffer_out(hw, buf,
1108 decr * hw->info.bytes_per_frame) /
1109 hw->info.bytes_per_frame;
1111 live -= proc;
1112 clipped += proc;
1113 hw->mix_buf.pos = (hw->mix_buf.pos + proc) % hw->mix_buf.size;
1115 if (proc == 0 || proc < decr) {
1116 break;
1120 if (hw->pcm_ops->run_buffer_out) {
1121 hw->pcm_ops->run_buffer_out(hw);
1124 return clipped;
1127 static void audio_run_out (AudioState *s)
1129 HWVoiceOut *hw = NULL;
1130 SWVoiceOut *sw;
1132 while ((hw = audio_pcm_hw_find_any_enabled_out(s, hw))) {
1133 size_t played, live, prev_rpos;
1134 size_t hw_free = audio_pcm_hw_get_free(hw);
1135 int nb_live;
1137 if (!audio_get_pdo_out(s->dev)->mixing_engine) {
1138 /* there is exactly 1 sw for each hw with no mixeng */
1139 sw = hw->sw_head.lh_first;
1141 if (hw->pending_disable) {
1142 hw->enabled = 0;
1143 hw->pending_disable = 0;
1144 if (hw->pcm_ops->enable_out) {
1145 hw->pcm_ops->enable_out(hw, false);
1149 if (sw->active) {
1150 sw->callback.fn(sw->callback.opaque,
1151 hw_free * sw->info.bytes_per_frame);
1154 if (hw->pcm_ops->run_buffer_out) {
1155 hw->pcm_ops->run_buffer_out(hw);
1158 continue;
1161 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
1162 if (sw->active) {
1163 size_t sw_free = audio_get_free(sw);
1164 size_t free;
1166 if (hw_free > sw->total_hw_samples_mixed) {
1167 free = st_rate_frames_in(sw->rate,
1168 MIN(sw_free, hw_free - sw->total_hw_samples_mixed));
1169 } else {
1170 free = 0;
1172 if (free > 0) {
1173 free = MIN(free, sw->resample_buf.size);
1174 sw->callback.fn(sw->callback.opaque,
1175 free * sw->info.bytes_per_frame);
1180 live = audio_pcm_hw_get_live_out (hw, &nb_live);
1181 if (!nb_live) {
1182 live = 0;
1185 if (audio_bug(__func__, live > hw->mix_buf.size)) {
1186 dolog("live=%zu hw->mix_buf.size=%zu\n", live, hw->mix_buf.size);
1187 continue;
1190 if (hw->pending_disable && !nb_live) {
1191 SWVoiceCap *sc;
1192 #ifdef DEBUG_OUT
1193 dolog ("Disabling voice\n");
1194 #endif
1195 hw->enabled = 0;
1196 hw->pending_disable = 0;
1197 if (hw->pcm_ops->enable_out) {
1198 hw->pcm_ops->enable_out(hw, false);
1200 for (sc = hw->cap_head.lh_first; sc; sc = sc->entries.le_next) {
1201 sc->sw.active = 0;
1202 audio_recalc_and_notify_capture (sc->cap);
1204 continue;
1207 if (!live) {
1208 if (hw->pcm_ops->run_buffer_out) {
1209 hw->pcm_ops->run_buffer_out(hw);
1211 continue;
1214 prev_rpos = hw->mix_buf.pos;
1215 played = audio_pcm_hw_run_out(hw, live);
1216 replay_audio_out(&played);
1217 if (audio_bug(__func__, hw->mix_buf.pos >= hw->mix_buf.size)) {
1218 dolog("hw->mix_buf.pos=%zu hw->mix_buf.size=%zu played=%zu\n",
1219 hw->mix_buf.pos, hw->mix_buf.size, played);
1220 hw->mix_buf.pos = 0;
1223 #ifdef DEBUG_OUT
1224 dolog("played=%zu\n", played);
1225 #endif
1227 if (played) {
1228 hw->ts_helper += played;
1229 audio_capture_mix_and_clear (hw, prev_rpos, played);
1232 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
1233 if (!sw->active && sw->empty) {
1234 continue;
1237 if (audio_bug(__func__, played > sw->total_hw_samples_mixed)) {
1238 dolog("played=%zu sw->total_hw_samples_mixed=%zu\n",
1239 played, sw->total_hw_samples_mixed);
1240 played = sw->total_hw_samples_mixed;
1243 sw->total_hw_samples_mixed -= played;
1245 if (!sw->total_hw_samples_mixed) {
1246 sw->empty = 1;
1252 static size_t audio_pcm_hw_run_in(HWVoiceIn *hw, size_t samples)
1254 size_t conv = 0;
1256 if (hw->pcm_ops->run_buffer_in) {
1257 hw->pcm_ops->run_buffer_in(hw);
1260 while (samples) {
1261 size_t proc;
1262 size_t size = samples * hw->info.bytes_per_frame;
1263 void *buf = hw->pcm_ops->get_buffer_in(hw, &size);
1265 assert(size % hw->info.bytes_per_frame == 0);
1266 if (size == 0) {
1267 break;
1270 proc = audio_pcm_hw_conv_in(hw, buf, size / hw->info.bytes_per_frame);
1272 samples -= proc;
1273 conv += proc;
1274 hw->pcm_ops->put_buffer_in(hw, buf, proc * hw->info.bytes_per_frame);
1277 return conv;
1280 static void audio_run_in (AudioState *s)
1282 HWVoiceIn *hw = NULL;
1284 if (!audio_get_pdo_in(s->dev)->mixing_engine) {
1285 while ((hw = audio_pcm_hw_find_any_enabled_in(s, hw))) {
1286 /* there is exactly 1 sw for each hw with no mixeng */
1287 SWVoiceIn *sw = hw->sw_head.lh_first;
1288 if (sw->active) {
1289 sw->callback.fn(sw->callback.opaque, INT_MAX);
1292 return;
1295 while ((hw = audio_pcm_hw_find_any_enabled_in(s, hw))) {
1296 SWVoiceIn *sw;
1297 size_t captured = 0, min;
1299 if (replay_mode != REPLAY_MODE_PLAY) {
1300 captured = audio_pcm_hw_run_in(
1301 hw, hw->conv_buf.size - audio_pcm_hw_get_live_in(hw));
1303 replay_audio_in(&captured, hw->conv_buf.buffer, &hw->conv_buf.pos,
1304 hw->conv_buf.size);
1306 min = audio_pcm_hw_find_min_in (hw);
1307 hw->total_samples_captured += captured - min;
1308 hw->ts_helper += captured;
1310 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
1311 sw->total_hw_samples_acquired -= min;
1313 if (sw->active) {
1314 size_t sw_avail = audio_get_avail(sw);
1315 size_t avail;
1317 avail = audio_frontend_frames_in(sw, sw_avail);
1318 if (avail > 0) {
1319 sw->callback.fn(sw->callback.opaque,
1320 avail * sw->info.bytes_per_frame);
1327 static void audio_run_capture (AudioState *s)
1329 CaptureVoiceOut *cap;
1331 for (cap = s->cap_head.lh_first; cap; cap = cap->entries.le_next) {
1332 size_t live, rpos, captured;
1333 HWVoiceOut *hw = &cap->hw;
1334 SWVoiceOut *sw;
1336 captured = live = audio_pcm_hw_get_live_out (hw, NULL);
1337 rpos = hw->mix_buf.pos;
1338 while (live) {
1339 size_t left = hw->mix_buf.size - rpos;
1340 size_t to_capture = MIN(live, left);
1341 struct st_sample *src;
1342 struct capture_callback *cb;
1344 src = hw->mix_buf.buffer + rpos;
1345 hw->clip (cap->buf, src, to_capture);
1346 mixeng_clear (src, to_capture);
1348 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) {
1349 cb->ops.capture (cb->opaque, cap->buf,
1350 to_capture * hw->info.bytes_per_frame);
1352 rpos = (rpos + to_capture) % hw->mix_buf.size;
1353 live -= to_capture;
1355 hw->mix_buf.pos = rpos;
1357 for (sw = hw->sw_head.lh_first; sw; sw = sw->entries.le_next) {
1358 if (!sw->active && sw->empty) {
1359 continue;
1362 if (audio_bug(__func__, captured > sw->total_hw_samples_mixed)) {
1363 dolog("captured=%zu sw->total_hw_samples_mixed=%zu\n",
1364 captured, sw->total_hw_samples_mixed);
1365 captured = sw->total_hw_samples_mixed;
1368 sw->total_hw_samples_mixed -= captured;
1369 sw->empty = sw->total_hw_samples_mixed == 0;
1374 void audio_run(AudioState *s, const char *msg)
1376 audio_run_out(s);
1377 audio_run_in(s);
1378 audio_run_capture(s);
1380 #ifdef DEBUG_POLL
1382 static double prevtime;
1383 double currtime;
1384 struct timeval tv;
1386 if (gettimeofday (&tv, NULL)) {
1387 perror ("audio_run: gettimeofday");
1388 return;
1391 currtime = tv.tv_sec + tv.tv_usec * 1e-6;
1392 dolog ("Elapsed since last %s: %f\n", msg, currtime - prevtime);
1393 prevtime = currtime;
1395 #endif
1398 void audio_generic_run_buffer_in(HWVoiceIn *hw)
1400 if (unlikely(!hw->buf_emul)) {
1401 hw->size_emul = hw->samples * hw->info.bytes_per_frame;
1402 hw->buf_emul = g_malloc(hw->size_emul);
1403 hw->pos_emul = hw->pending_emul = 0;
1406 while (hw->pending_emul < hw->size_emul) {
1407 size_t read_len = MIN(hw->size_emul - hw->pos_emul,
1408 hw->size_emul - hw->pending_emul);
1409 size_t read = hw->pcm_ops->read(hw, hw->buf_emul + hw->pos_emul,
1410 read_len);
1411 hw->pending_emul += read;
1412 hw->pos_emul = (hw->pos_emul + read) % hw->size_emul;
1413 if (read < read_len) {
1414 break;
1419 void *audio_generic_get_buffer_in(HWVoiceIn *hw, size_t *size)
1421 size_t start;
1423 start = audio_ring_posb(hw->pos_emul, hw->pending_emul, hw->size_emul);
1424 assert(start < hw->size_emul);
1426 *size = MIN(*size, hw->pending_emul);
1427 *size = MIN(*size, hw->size_emul - start);
1428 return hw->buf_emul + start;
1431 void audio_generic_put_buffer_in(HWVoiceIn *hw, void *buf, size_t size)
1433 assert(size <= hw->pending_emul);
1434 hw->pending_emul -= size;
1437 size_t audio_generic_buffer_get_free(HWVoiceOut *hw)
1439 if (hw->buf_emul) {
1440 return hw->size_emul - hw->pending_emul;
1441 } else {
1442 return hw->samples * hw->info.bytes_per_frame;
1446 void audio_generic_run_buffer_out(HWVoiceOut *hw)
1448 while (hw->pending_emul) {
1449 size_t write_len, written, start;
1451 start = audio_ring_posb(hw->pos_emul, hw->pending_emul, hw->size_emul);
1452 assert(start < hw->size_emul);
1454 write_len = MIN(hw->pending_emul, hw->size_emul - start);
1456 written = hw->pcm_ops->write(hw, hw->buf_emul + start, write_len);
1457 hw->pending_emul -= written;
1459 if (written < write_len) {
1460 break;
1465 void *audio_generic_get_buffer_out(HWVoiceOut *hw, size_t *size)
1467 if (unlikely(!hw->buf_emul)) {
1468 hw->size_emul = hw->samples * hw->info.bytes_per_frame;
1469 hw->buf_emul = g_malloc(hw->size_emul);
1470 hw->pos_emul = hw->pending_emul = 0;
1473 *size = MIN(hw->size_emul - hw->pending_emul,
1474 hw->size_emul - hw->pos_emul);
1475 return hw->buf_emul + hw->pos_emul;
1478 size_t audio_generic_put_buffer_out(HWVoiceOut *hw, void *buf, size_t size)
1480 assert(buf == hw->buf_emul + hw->pos_emul &&
1481 size + hw->pending_emul <= hw->size_emul);
1483 hw->pending_emul += size;
1484 hw->pos_emul = (hw->pos_emul + size) % hw->size_emul;
1486 return size;
1489 size_t audio_generic_write(HWVoiceOut *hw, void *buf, size_t size)
1491 size_t total = 0;
1493 if (hw->pcm_ops->buffer_get_free) {
1494 size_t free = hw->pcm_ops->buffer_get_free(hw);
1496 size = MIN(size, free);
1499 while (total < size) {
1500 size_t dst_size = size - total;
1501 size_t copy_size, proc;
1502 void *dst = hw->pcm_ops->get_buffer_out(hw, &dst_size);
1504 if (dst_size == 0) {
1505 break;
1508 copy_size = MIN(size - total, dst_size);
1509 if (dst) {
1510 memcpy(dst, (char *)buf + total, copy_size);
1512 proc = hw->pcm_ops->put_buffer_out(hw, dst, copy_size);
1513 total += proc;
1515 if (proc == 0 || proc < copy_size) {
1516 break;
1520 return total;
1523 size_t audio_generic_read(HWVoiceIn *hw, void *buf, size_t size)
1525 size_t total = 0;
1527 if (hw->pcm_ops->run_buffer_in) {
1528 hw->pcm_ops->run_buffer_in(hw);
1531 while (total < size) {
1532 size_t src_size = size - total;
1533 void *src = hw->pcm_ops->get_buffer_in(hw, &src_size);
1535 if (src_size == 0) {
1536 break;
1539 memcpy((char *)buf + total, src, src_size);
1540 hw->pcm_ops->put_buffer_in(hw, src, src_size);
1541 total += src_size;
1544 return total;
1547 static int audio_driver_init(AudioState *s, struct audio_driver *drv,
1548 bool msg, Audiodev *dev)
1550 s->drv_opaque = drv->init(dev);
1552 if (s->drv_opaque) {
1553 if (!drv->pcm_ops->get_buffer_in) {
1554 drv->pcm_ops->get_buffer_in = audio_generic_get_buffer_in;
1555 drv->pcm_ops->put_buffer_in = audio_generic_put_buffer_in;
1557 if (!drv->pcm_ops->get_buffer_out) {
1558 drv->pcm_ops->get_buffer_out = audio_generic_get_buffer_out;
1559 drv->pcm_ops->put_buffer_out = audio_generic_put_buffer_out;
1562 audio_init_nb_voices_out(s, drv);
1563 audio_init_nb_voices_in(s, drv);
1564 s->drv = drv;
1565 return 0;
1566 } else {
1567 if (msg) {
1568 dolog("Could not init `%s' audio driver\n", drv->name);
1570 return -1;
1574 static void audio_vm_change_state_handler (void *opaque, bool running,
1575 RunState state)
1577 AudioState *s = opaque;
1578 HWVoiceOut *hwo = NULL;
1579 HWVoiceIn *hwi = NULL;
1581 s->vm_running = running;
1582 while ((hwo = audio_pcm_hw_find_any_enabled_out(s, hwo))) {
1583 if (hwo->pcm_ops->enable_out) {
1584 hwo->pcm_ops->enable_out(hwo, running);
1588 while ((hwi = audio_pcm_hw_find_any_enabled_in(s, hwi))) {
1589 if (hwi->pcm_ops->enable_in) {
1590 hwi->pcm_ops->enable_in(hwi, running);
1593 audio_reset_timer (s);
1596 static void free_audio_state(AudioState *s)
1598 HWVoiceOut *hwo, *hwon;
1599 HWVoiceIn *hwi, *hwin;
1601 QLIST_FOREACH_SAFE(hwo, &s->hw_head_out, entries, hwon) {
1602 SWVoiceCap *sc;
1604 if (hwo->enabled && hwo->pcm_ops->enable_out) {
1605 hwo->pcm_ops->enable_out(hwo, false);
1607 hwo->pcm_ops->fini_out (hwo);
1609 for (sc = hwo->cap_head.lh_first; sc; sc = sc->entries.le_next) {
1610 CaptureVoiceOut *cap = sc->cap;
1611 struct capture_callback *cb;
1613 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) {
1614 cb->ops.destroy (cb->opaque);
1617 QLIST_REMOVE(hwo, entries);
1620 QLIST_FOREACH_SAFE(hwi, &s->hw_head_in, entries, hwin) {
1621 if (hwi->enabled && hwi->pcm_ops->enable_in) {
1622 hwi->pcm_ops->enable_in(hwi, false);
1624 hwi->pcm_ops->fini_in (hwi);
1625 QLIST_REMOVE(hwi, entries);
1628 if (s->drv) {
1629 s->drv->fini (s->drv_opaque);
1630 s->drv = NULL;
1633 if (s->dev) {
1634 qapi_free_Audiodev(s->dev);
1635 s->dev = NULL;
1638 if (s->ts) {
1639 timer_free(s->ts);
1640 s->ts = NULL;
1643 g_free(s);
1646 void audio_cleanup(void)
1648 while (!QTAILQ_EMPTY(&audio_states)) {
1649 AudioState *s = QTAILQ_FIRST(&audio_states);
1650 QTAILQ_REMOVE(&audio_states, s, list);
1651 free_audio_state(s);
1655 static bool vmstate_audio_needed(void *opaque)
1658 * Never needed, this vmstate only exists in case
1659 * an old qemu sends it to us.
1661 return false;
1664 static const VMStateDescription vmstate_audio = {
1665 .name = "audio",
1666 .version_id = 1,
1667 .minimum_version_id = 1,
1668 .needed = vmstate_audio_needed,
1669 .fields = (VMStateField[]) {
1670 VMSTATE_END_OF_LIST()
1674 static void audio_validate_opts(Audiodev *dev, Error **errp);
1676 static AudiodevListEntry *audiodev_find(
1677 AudiodevListHead *head, const char *drvname)
1679 AudiodevListEntry *e;
1680 QSIMPLEQ_FOREACH(e, head, next) {
1681 if (strcmp(AudiodevDriver_str(e->dev->driver), drvname) == 0) {
1682 return e;
1686 return NULL;
1690 * if we have dev, this function was called because of an -audiodev argument =>
1691 * initialize a new state with it
1692 * if dev == NULL => legacy implicit initialization, return the already created
1693 * state or create a new one
1695 static AudioState *audio_init(Audiodev *dev, const char *name)
1697 static bool atexit_registered;
1698 size_t i;
1699 int done = 0;
1700 const char *drvname = NULL;
1701 VMChangeStateEntry *e;
1702 AudioState *s;
1703 struct audio_driver *driver;
1704 /* silence gcc warning about uninitialized variable */
1705 AudiodevListHead head = QSIMPLEQ_HEAD_INITIALIZER(head);
1707 if (using_spice) {
1709 * When using spice allow the spice audio driver being picked
1710 * as default.
1712 * Temporary hack. Using audio devices without explicit
1713 * audiodev= property is already deprecated. Same goes for
1714 * the -soundhw switch. Once this support gets finally
1715 * removed we can also drop the concept of a default audio
1716 * backend and this can go away.
1718 driver = audio_driver_lookup("spice");
1719 if (driver) {
1720 driver->can_be_default = 1;
1724 if (dev) {
1725 /* -audiodev option */
1726 legacy_config = false;
1727 drvname = AudiodevDriver_str(dev->driver);
1728 } else if (!QTAILQ_EMPTY(&audio_states)) {
1729 if (!legacy_config) {
1730 dolog("Device %s: audiodev default parameter is deprecated, please "
1731 "specify audiodev=%s\n", name,
1732 QTAILQ_FIRST(&audio_states)->dev->id);
1734 return QTAILQ_FIRST(&audio_states);
1735 } else {
1736 /* legacy implicit initialization */
1737 head = audio_handle_legacy_opts();
1739 * In case of legacy initialization, all Audiodevs in the list will have
1740 * the same configuration (except the driver), so it doesn't matter which
1741 * one we chose. We need an Audiodev to set up AudioState before we can
1742 * init a driver. Also note that dev at this point is still in the
1743 * list.
1745 dev = QSIMPLEQ_FIRST(&head)->dev;
1746 audio_validate_opts(dev, &error_abort);
1749 s = g_new0(AudioState, 1);
1750 s->dev = dev;
1752 QLIST_INIT (&s->hw_head_out);
1753 QLIST_INIT (&s->hw_head_in);
1754 QLIST_INIT (&s->cap_head);
1755 if (!atexit_registered) {
1756 atexit(audio_cleanup);
1757 atexit_registered = true;
1760 s->ts = timer_new_ns(QEMU_CLOCK_VIRTUAL, audio_timer, s);
1762 s->nb_hw_voices_out = audio_get_pdo_out(dev)->voices;
1763 s->nb_hw_voices_in = audio_get_pdo_in(dev)->voices;
1765 if (s->nb_hw_voices_out < 1) {
1766 dolog ("Bogus number of playback voices %d, setting to 1\n",
1767 s->nb_hw_voices_out);
1768 s->nb_hw_voices_out = 1;
1771 if (s->nb_hw_voices_in < 0) {
1772 dolog ("Bogus number of capture voices %d, setting to 0\n",
1773 s->nb_hw_voices_in);
1774 s->nb_hw_voices_in = 0;
1777 if (drvname) {
1778 driver = audio_driver_lookup(drvname);
1779 if (driver) {
1780 done = !audio_driver_init(s, driver, true, dev);
1781 } else {
1782 dolog ("Unknown audio driver `%s'\n", drvname);
1784 if (!done) {
1785 free_audio_state(s);
1786 return NULL;
1788 } else {
1789 for (i = 0; audio_prio_list[i]; i++) {
1790 AudiodevListEntry *e = audiodev_find(&head, audio_prio_list[i]);
1791 driver = audio_driver_lookup(audio_prio_list[i]);
1793 if (e && driver) {
1794 s->dev = dev = e->dev;
1795 audio_validate_opts(dev, &error_abort);
1796 done = !audio_driver_init(s, driver, false, dev);
1797 if (done) {
1798 e->dev = NULL;
1799 break;
1804 audio_free_audiodev_list(&head);
1806 if (!done) {
1807 driver = audio_driver_lookup("none");
1808 done = !audio_driver_init(s, driver, false, dev);
1809 assert(done);
1810 dolog("warning: Using timer based audio emulation\n");
1813 if (dev->timer_period <= 0) {
1814 s->period_ticks = 1;
1815 } else {
1816 s->period_ticks = dev->timer_period * (int64_t)SCALE_US;
1819 e = qemu_add_vm_change_state_handler (audio_vm_change_state_handler, s);
1820 if (!e) {
1821 dolog ("warning: Could not register change state handler\n"
1822 "(Audio can continue looping even after stopping the VM)\n");
1825 QTAILQ_INSERT_TAIL(&audio_states, s, list);
1826 QLIST_INIT (&s->card_head);
1827 vmstate_register (NULL, 0, &vmstate_audio, s);
1828 return s;
1831 void audio_free_audiodev_list(AudiodevListHead *head)
1833 AudiodevListEntry *e;
1834 while ((e = QSIMPLEQ_FIRST(head))) {
1835 QSIMPLEQ_REMOVE_HEAD(head, next);
1836 qapi_free_Audiodev(e->dev);
1837 g_free(e);
1841 void AUD_register_card (const char *name, QEMUSoundCard *card)
1843 if (!card->state) {
1844 card->state = audio_init(NULL, name);
1847 card->name = g_strdup (name);
1848 memset (&card->entries, 0, sizeof (card->entries));
1849 QLIST_INSERT_HEAD(&card->state->card_head, card, entries);
1852 void AUD_remove_card (QEMUSoundCard *card)
1854 QLIST_REMOVE (card, entries);
1855 g_free (card->name);
1858 static struct audio_pcm_ops capture_pcm_ops;
1860 CaptureVoiceOut *AUD_add_capture(
1861 AudioState *s,
1862 struct audsettings *as,
1863 struct audio_capture_ops *ops,
1864 void *cb_opaque
1867 CaptureVoiceOut *cap;
1868 struct capture_callback *cb;
1870 if (!s) {
1871 if (!legacy_config) {
1872 dolog("Capturing without setting an audiodev is deprecated\n");
1874 s = audio_init(NULL, NULL);
1877 if (!audio_get_pdo_out(s->dev)->mixing_engine) {
1878 dolog("Can't capture with mixeng disabled\n");
1879 return NULL;
1882 if (audio_validate_settings (as)) {
1883 dolog ("Invalid settings were passed when trying to add capture\n");
1884 audio_print_settings (as);
1885 return NULL;
1888 cb = g_malloc0(sizeof(*cb));
1889 cb->ops = *ops;
1890 cb->opaque = cb_opaque;
1892 cap = audio_pcm_capture_find_specific(s, as);
1893 if (cap) {
1894 QLIST_INSERT_HEAD (&cap->cb_head, cb, entries);
1895 return cap;
1896 } else {
1897 HWVoiceOut *hw;
1898 CaptureVoiceOut *cap;
1900 cap = g_malloc0(sizeof(*cap));
1902 hw = &cap->hw;
1903 hw->s = s;
1904 hw->pcm_ops = &capture_pcm_ops;
1905 QLIST_INIT (&hw->sw_head);
1906 QLIST_INIT (&cap->cb_head);
1908 /* XXX find a more elegant way */
1909 hw->samples = 4096 * 4;
1910 audio_pcm_hw_alloc_resources_out(hw);
1912 audio_pcm_init_info (&hw->info, as);
1914 cap->buf = g_malloc0_n(hw->mix_buf.size, hw->info.bytes_per_frame);
1916 if (hw->info.is_float) {
1917 hw->clip = mixeng_clip_float[hw->info.nchannels == 2];
1918 } else {
1919 hw->clip = mixeng_clip
1920 [hw->info.nchannels == 2]
1921 [hw->info.is_signed]
1922 [hw->info.swap_endianness]
1923 [audio_bits_to_index(hw->info.bits)];
1926 QLIST_INSERT_HEAD (&s->cap_head, cap, entries);
1927 QLIST_INSERT_HEAD (&cap->cb_head, cb, entries);
1929 QLIST_FOREACH(hw, &s->hw_head_out, entries) {
1930 audio_attach_capture (hw);
1932 return cap;
1936 void AUD_del_capture (CaptureVoiceOut *cap, void *cb_opaque)
1938 struct capture_callback *cb;
1940 for (cb = cap->cb_head.lh_first; cb; cb = cb->entries.le_next) {
1941 if (cb->opaque == cb_opaque) {
1942 cb->ops.destroy (cb_opaque);
1943 QLIST_REMOVE (cb, entries);
1944 g_free (cb);
1946 if (!cap->cb_head.lh_first) {
1947 SWVoiceOut *sw = cap->hw.sw_head.lh_first, *sw1;
1949 while (sw) {
1950 SWVoiceCap *sc = (SWVoiceCap *) sw;
1951 #ifdef DEBUG_CAPTURE
1952 dolog ("freeing %s\n", sw->name);
1953 #endif
1955 sw1 = sw->entries.le_next;
1956 if (sw->rate) {
1957 st_rate_stop (sw->rate);
1958 sw->rate = NULL;
1960 QLIST_REMOVE (sw, entries);
1961 QLIST_REMOVE (sc, entries);
1962 g_free (sc);
1963 sw = sw1;
1965 QLIST_REMOVE (cap, entries);
1966 g_free(cap->hw.mix_buf.buffer);
1967 g_free (cap->buf);
1968 g_free (cap);
1970 return;
1975 void AUD_set_volume_out (SWVoiceOut *sw, int mute, uint8_t lvol, uint8_t rvol)
1977 Volume vol = { .mute = mute, .channels = 2, .vol = { lvol, rvol } };
1978 audio_set_volume_out(sw, &vol);
1981 void audio_set_volume_out(SWVoiceOut *sw, Volume *vol)
1983 if (sw) {
1984 HWVoiceOut *hw = sw->hw;
1986 sw->vol.mute = vol->mute;
1987 sw->vol.l = nominal_volume.l * vol->vol[0] / 255;
1988 sw->vol.r = nominal_volume.l * vol->vol[vol->channels > 1 ? 1 : 0] /
1989 255;
1991 if (hw->pcm_ops->volume_out) {
1992 hw->pcm_ops->volume_out(hw, vol);
1997 void AUD_set_volume_in (SWVoiceIn *sw, int mute, uint8_t lvol, uint8_t rvol)
1999 Volume vol = { .mute = mute, .channels = 2, .vol = { lvol, rvol } };
2000 audio_set_volume_in(sw, &vol);
2003 void audio_set_volume_in(SWVoiceIn *sw, Volume *vol)
2005 if (sw) {
2006 HWVoiceIn *hw = sw->hw;
2008 sw->vol.mute = vol->mute;
2009 sw->vol.l = nominal_volume.l * vol->vol[0] / 255;
2010 sw->vol.r = nominal_volume.r * vol->vol[vol->channels > 1 ? 1 : 0] /
2011 255;
2013 if (hw->pcm_ops->volume_in) {
2014 hw->pcm_ops->volume_in(hw, vol);
2019 void audio_create_pdos(Audiodev *dev)
2021 switch (dev->driver) {
2022 #define CASE(DRIVER, driver, pdo_name) \
2023 case AUDIODEV_DRIVER_##DRIVER: \
2024 if (!dev->u.driver.in) { \
2025 dev->u.driver.in = g_malloc0( \
2026 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
2028 if (!dev->u.driver.out) { \
2029 dev->u.driver.out = g_malloc0( \
2030 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
2032 break
2034 CASE(NONE, none, );
2035 #ifdef CONFIG_AUDIO_ALSA
2036 CASE(ALSA, alsa, Alsa);
2037 #endif
2038 #ifdef CONFIG_AUDIO_COREAUDIO
2039 CASE(COREAUDIO, coreaudio, Coreaudio);
2040 #endif
2041 #ifdef CONFIG_DBUS_DISPLAY
2042 CASE(DBUS, dbus, );
2043 #endif
2044 #ifdef CONFIG_AUDIO_DSOUND
2045 CASE(DSOUND, dsound, );
2046 #endif
2047 #ifdef CONFIG_AUDIO_JACK
2048 CASE(JACK, jack, Jack);
2049 #endif
2050 #ifdef CONFIG_AUDIO_OSS
2051 CASE(OSS, oss, Oss);
2052 #endif
2053 #ifdef CONFIG_AUDIO_PA
2054 CASE(PA, pa, Pa);
2055 #endif
2056 #ifdef CONFIG_AUDIO_SDL
2057 CASE(SDL, sdl, Sdl);
2058 #endif
2059 #ifdef CONFIG_AUDIO_SNDIO
2060 CASE(SNDIO, sndio, );
2061 #endif
2062 #ifdef CONFIG_SPICE
2063 CASE(SPICE, spice, );
2064 #endif
2065 CASE(WAV, wav, );
2067 case AUDIODEV_DRIVER__MAX:
2068 abort();
2072 static void audio_validate_per_direction_opts(
2073 AudiodevPerDirectionOptions *pdo, Error **errp)
2075 if (!pdo->has_mixing_engine) {
2076 pdo->has_mixing_engine = true;
2077 pdo->mixing_engine = true;
2079 if (!pdo->has_fixed_settings) {
2080 pdo->has_fixed_settings = true;
2081 pdo->fixed_settings = pdo->mixing_engine;
2083 if (!pdo->fixed_settings &&
2084 (pdo->has_frequency || pdo->has_channels || pdo->has_format)) {
2085 error_setg(errp,
2086 "You can't use frequency, channels or format with fixed-settings=off");
2087 return;
2089 if (!pdo->mixing_engine && pdo->fixed_settings) {
2090 error_setg(errp, "You can't use fixed-settings without mixeng");
2091 return;
2094 if (!pdo->has_frequency) {
2095 pdo->has_frequency = true;
2096 pdo->frequency = 44100;
2098 if (!pdo->has_channels) {
2099 pdo->has_channels = true;
2100 pdo->channels = 2;
2102 if (!pdo->has_voices) {
2103 pdo->has_voices = true;
2104 pdo->voices = pdo->mixing_engine ? 1 : INT_MAX;
2106 if (!pdo->has_format) {
2107 pdo->has_format = true;
2108 pdo->format = AUDIO_FORMAT_S16;
2112 static void audio_validate_opts(Audiodev *dev, Error **errp)
2114 Error *err = NULL;
2116 audio_create_pdos(dev);
2118 audio_validate_per_direction_opts(audio_get_pdo_in(dev), &err);
2119 if (err) {
2120 error_propagate(errp, err);
2121 return;
2124 audio_validate_per_direction_opts(audio_get_pdo_out(dev), &err);
2125 if (err) {
2126 error_propagate(errp, err);
2127 return;
2130 if (!dev->has_timer_period) {
2131 dev->has_timer_period = true;
2132 dev->timer_period = 10000; /* 100Hz -> 10ms */
2136 void audio_help(void)
2138 int i;
2140 printf("Available audio drivers:\n");
2142 for (i = 0; i < AUDIODEV_DRIVER__MAX; i++) {
2143 audio_driver *driver = audio_driver_lookup(AudiodevDriver_str(i));
2144 if (driver) {
2145 printf("%s\n", driver->name);
2150 void audio_parse_option(const char *opt)
2152 Audiodev *dev = NULL;
2154 if (is_help_option(opt)) {
2155 audio_help();
2156 exit(EXIT_SUCCESS);
2158 Visitor *v = qobject_input_visitor_new_str(opt, "driver", &error_fatal);
2159 visit_type_Audiodev(v, NULL, &dev, &error_fatal);
2160 visit_free(v);
2162 audio_define(dev);
2165 void audio_define(Audiodev *dev)
2167 AudiodevListEntry *e;
2169 audio_validate_opts(dev, &error_fatal);
2171 e = g_new0(AudiodevListEntry, 1);
2172 e->dev = dev;
2173 QSIMPLEQ_INSERT_TAIL(&audiodevs, e, next);
2176 bool audio_init_audiodevs(void)
2178 AudiodevListEntry *e;
2180 QSIMPLEQ_FOREACH(e, &audiodevs, next) {
2181 if (!audio_init(e->dev, NULL)) {
2182 return false;
2186 return true;
2189 audsettings audiodev_to_audsettings(AudiodevPerDirectionOptions *pdo)
2191 return (audsettings) {
2192 .freq = pdo->frequency,
2193 .nchannels = pdo->channels,
2194 .fmt = pdo->format,
2195 .endianness = AUDIO_HOST_ENDIANNESS,
2199 int audioformat_bytes_per_sample(AudioFormat fmt)
2201 switch (fmt) {
2202 case AUDIO_FORMAT_U8:
2203 case AUDIO_FORMAT_S8:
2204 return 1;
2206 case AUDIO_FORMAT_U16:
2207 case AUDIO_FORMAT_S16:
2208 return 2;
2210 case AUDIO_FORMAT_U32:
2211 case AUDIO_FORMAT_S32:
2212 case AUDIO_FORMAT_F32:
2213 return 4;
2215 case AUDIO_FORMAT__MAX:
2218 abort();
2222 /* frames = freq * usec / 1e6 */
2223 int audio_buffer_frames(AudiodevPerDirectionOptions *pdo,
2224 audsettings *as, int def_usecs)
2226 uint64_t usecs = pdo->has_buffer_length ? pdo->buffer_length : def_usecs;
2227 return (as->freq * usecs + 500000) / 1000000;
2230 /* samples = channels * frames = channels * freq * usec / 1e6 */
2231 int audio_buffer_samples(AudiodevPerDirectionOptions *pdo,
2232 audsettings *as, int def_usecs)
2234 return as->nchannels * audio_buffer_frames(pdo, as, def_usecs);
2238 * bytes = bytes_per_sample * samples =
2239 * bytes_per_sample * channels * freq * usec / 1e6
2241 int audio_buffer_bytes(AudiodevPerDirectionOptions *pdo,
2242 audsettings *as, int def_usecs)
2244 return audio_buffer_samples(pdo, as, def_usecs) *
2245 audioformat_bytes_per_sample(as->fmt);
2248 AudioState *audio_state_by_name(const char *name)
2250 AudioState *s;
2251 QTAILQ_FOREACH(s, &audio_states, list) {
2252 assert(s->dev);
2253 if (strcmp(name, s->dev->id) == 0) {
2254 return s;
2257 return NULL;
2260 const char *audio_get_id(QEMUSoundCard *card)
2262 if (card->state) {
2263 assert(card->state->dev);
2264 return card->state->dev->id;
2265 } else {
2266 return "";
2270 const char *audio_application_name(void)
2272 const char *vm_name;
2274 vm_name = qemu_get_vm_name();
2275 return vm_name ? vm_name : "qemu";
2278 void audio_rate_start(RateCtl *rate)
2280 memset(rate, 0, sizeof(RateCtl));
2281 rate->start_ticks = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
2284 size_t audio_rate_peek_bytes(RateCtl *rate, struct audio_pcm_info *info)
2286 int64_t now;
2287 int64_t ticks;
2288 int64_t bytes;
2289 int64_t frames;
2291 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
2292 ticks = now - rate->start_ticks;
2293 bytes = muldiv64(ticks, info->bytes_per_second, NANOSECONDS_PER_SECOND);
2294 frames = (bytes - rate->bytes_sent) / info->bytes_per_frame;
2295 if (frames < 0 || frames > 65536) {
2296 AUD_log(NULL, "Resetting rate control (%" PRId64 " frames)\n", frames);
2297 audio_rate_start(rate);
2298 frames = 0;
2301 return frames * info->bytes_per_frame;
2304 void audio_rate_add_bytes(RateCtl *rate, size_t bytes_used)
2306 rate->bytes_sent += bytes_used;
2309 size_t audio_rate_get_bytes(RateCtl *rate, struct audio_pcm_info *info,
2310 size_t bytes_avail)
2312 size_t bytes;
2314 bytes = audio_rate_peek_bytes(rate, info);
2315 bytes = MIN(bytes, bytes_avail);
2316 audio_rate_add_bytes(rate, bytes);
2318 return bytes;
2321 AudiodevList *qmp_query_audiodevs(Error **errp)
2323 AudiodevList *ret = NULL;
2324 AudiodevListEntry *e;
2325 QSIMPLEQ_FOREACH(e, &audiodevs, next) {
2326 QAPI_LIST_PREPEND(ret, QAPI_CLONE(Audiodev, e->dev));
2328 return ret;