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
25 #include "qemu/osdep.h"
27 #include "migration/vmstate.h"
28 #include "monitor/monitor.h"
29 #include "qemu/timer.h"
30 #include "qapi/error.h"
31 #include "qapi/qobject-input-visitor.h"
32 #include "qapi/qapi-visit-audio.h"
33 #include "qemu/cutils.h"
34 #include "qemu/module.h"
35 #include "sysemu/sysemu.h"
36 #include "sysemu/replay.h"
37 #include "sysemu/runstate.h"
38 #include "ui/qemu-spice.h"
41 #define AUDIO_CAP "audio"
42 #include "audio_int.h"
44 /* #define DEBUG_LIVE */
45 /* #define DEBUG_OUT */
46 /* #define DEBUG_CAPTURE */
47 /* #define DEBUG_POLL */
49 #define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown"
52 /* Order of CONFIG_AUDIO_DRIVERS is import.
53 The 1st one is the one used by default, that is the reason
54 that we generate the list.
56 const char *audio_prio_list
[] = {
64 static QLIST_HEAD(, audio_driver
) audio_drivers
;
65 static AudiodevListHead audiodevs
= QSIMPLEQ_HEAD_INITIALIZER(audiodevs
);
67 void audio_driver_register(audio_driver
*drv
)
69 QLIST_INSERT_HEAD(&audio_drivers
, drv
, next
);
72 audio_driver
*audio_driver_lookup(const char *name
)
74 struct audio_driver
*d
;
76 QLIST_FOREACH(d
, &audio_drivers
, next
) {
77 if (strcmp(name
, d
->name
) == 0) {
82 audio_module_load_one(name
);
83 QLIST_FOREACH(d
, &audio_drivers
, next
) {
84 if (strcmp(name
, d
->name
) == 0) {
92 static QTAILQ_HEAD(AudioStateHead
, AudioState
) audio_states
=
93 QTAILQ_HEAD_INITIALIZER(audio_states
);
95 const struct mixeng_volume nominal_volume
= {
106 static bool legacy_config
= true;
108 int audio_bug (const char *funcname
, int cond
)
113 AUD_log (NULL
, "A bug was just triggered in %s\n", funcname
);
116 AUD_log (NULL
, "Save all your work and restart without audio\n");
117 AUD_log (NULL
, "I am sorry\n");
119 AUD_log (NULL
, "Context:\n");
125 static inline int audio_bits_to_index (int bits
)
138 audio_bug ("bits_to_index", 1);
139 AUD_log (NULL
, "invalid bits %d\n", bits
);
144 void *audio_calloc (const char *funcname
, int nmemb
, size_t size
)
150 cond
= !nmemb
|| !size
;
154 if (audio_bug ("audio_calloc", cond
)) {
155 AUD_log (NULL
, "%s passed invalid arguments to audio_calloc\n",
157 AUD_log (NULL
, "nmemb=%d size=%zu (len=%zu)\n", nmemb
, size
, len
);
161 return g_malloc0 (len
);
164 void AUD_vlog (const char *cap
, const char *fmt
, va_list ap
)
167 fprintf(stderr
, "%s: ", cap
);
170 vfprintf(stderr
, fmt
, ap
);
173 void AUD_log (const char *cap
, const char *fmt
, ...)
178 AUD_vlog (cap
, fmt
, ap
);
182 static void audio_print_settings (struct audsettings
*as
)
184 dolog ("frequency=%d nchannels=%d fmt=", as
->freq
, as
->nchannels
);
187 case AUDIO_FORMAT_S8
:
188 AUD_log (NULL
, "S8");
190 case AUDIO_FORMAT_U8
:
191 AUD_log (NULL
, "U8");
193 case AUDIO_FORMAT_S16
:
194 AUD_log (NULL
, "S16");
196 case AUDIO_FORMAT_U16
:
197 AUD_log (NULL
, "U16");
199 case AUDIO_FORMAT_S32
:
200 AUD_log (NULL
, "S32");
202 case AUDIO_FORMAT_U32
:
203 AUD_log (NULL
, "U32");
205 case AUDIO_FORMAT_F32
:
206 AUD_log (NULL
, "F32");
209 AUD_log (NULL
, "invalid(%d)", as
->fmt
);
213 AUD_log (NULL
, " endianness=");
214 switch (as
->endianness
) {
216 AUD_log (NULL
, "little");
219 AUD_log (NULL
, "big");
222 AUD_log (NULL
, "invalid");
225 AUD_log (NULL
, "\n");
228 static int audio_validate_settings (struct audsettings
*as
)
232 invalid
= as
->nchannels
< 1;
233 invalid
|= as
->endianness
!= 0 && as
->endianness
!= 1;
236 case AUDIO_FORMAT_S8
:
237 case AUDIO_FORMAT_U8
:
238 case AUDIO_FORMAT_S16
:
239 case AUDIO_FORMAT_U16
:
240 case AUDIO_FORMAT_S32
:
241 case AUDIO_FORMAT_U32
:
242 case AUDIO_FORMAT_F32
:
249 invalid
|= as
->freq
<= 0;
250 return invalid
? -1 : 0;
253 static int audio_pcm_info_eq (struct audio_pcm_info
*info
, struct audsettings
*as
)
256 bool is_signed
= false, is_float
= false;
259 case AUDIO_FORMAT_S8
:
262 case AUDIO_FORMAT_U8
:
265 case AUDIO_FORMAT_S16
:
268 case AUDIO_FORMAT_U16
:
272 case AUDIO_FORMAT_F32
:
275 case AUDIO_FORMAT_S32
:
278 case AUDIO_FORMAT_U32
:
285 return info
->freq
== as
->freq
286 && info
->nchannels
== as
->nchannels
287 && info
->is_signed
== is_signed
288 && info
->is_float
== is_float
289 && info
->bits
== bits
290 && info
->swap_endianness
== (as
->endianness
!= AUDIO_HOST_ENDIANNESS
);
293 void audio_pcm_init_info (struct audio_pcm_info
*info
, struct audsettings
*as
)
296 bool is_signed
= false, is_float
= false;
299 case AUDIO_FORMAT_S8
:
302 case AUDIO_FORMAT_U8
:
306 case AUDIO_FORMAT_S16
:
309 case AUDIO_FORMAT_U16
:
314 case AUDIO_FORMAT_F32
:
317 case AUDIO_FORMAT_S32
:
320 case AUDIO_FORMAT_U32
:
329 info
->freq
= as
->freq
;
331 info
->is_signed
= is_signed
;
332 info
->is_float
= is_float
;
333 info
->nchannels
= as
->nchannels
;
334 info
->bytes_per_frame
= as
->nchannels
* mul
;
335 info
->bytes_per_second
= info
->freq
* info
->bytes_per_frame
;
336 info
->swap_endianness
= (as
->endianness
!= AUDIO_HOST_ENDIANNESS
);
339 void audio_pcm_info_clear_buf (struct audio_pcm_info
*info
, void *buf
, int len
)
345 if (info
->is_signed
|| info
->is_float
) {
346 memset(buf
, 0x00, len
* info
->bytes_per_frame
);
348 switch (info
->bits
) {
350 memset(buf
, 0x80, len
* info
->bytes_per_frame
);
359 if (info
->swap_endianness
) {
363 for (i
= 0; i
< len
* info
->nchannels
; i
++) {
373 int32_t s
= INT32_MAX
;
375 if (info
->swap_endianness
) {
379 for (i
= 0; i
< len
* info
->nchannels
; i
++) {
386 AUD_log (NULL
, "audio_pcm_info_clear_buf: invalid bits %d\n",
396 static void noop_conv (struct st_sample
*dst
, const void *src
, int samples
)
403 static CaptureVoiceOut
*audio_pcm_capture_find_specific(AudioState
*s
,
404 struct audsettings
*as
)
406 CaptureVoiceOut
*cap
;
408 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
409 if (audio_pcm_info_eq (&cap
->hw
.info
, as
)) {
416 static void audio_notify_capture (CaptureVoiceOut
*cap
, audcnotification_e cmd
)
418 struct capture_callback
*cb
;
421 dolog ("notification %d sent\n", cmd
);
423 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
424 cb
->ops
.notify (cb
->opaque
, cmd
);
428 static void audio_capture_maybe_changed (CaptureVoiceOut
*cap
, int enabled
)
430 if (cap
->hw
.enabled
!= enabled
) {
431 audcnotification_e cmd
;
432 cap
->hw
.enabled
= enabled
;
433 cmd
= enabled
? AUD_CNOTIFY_ENABLE
: AUD_CNOTIFY_DISABLE
;
434 audio_notify_capture (cap
, cmd
);
438 static void audio_recalc_and_notify_capture (CaptureVoiceOut
*cap
)
440 HWVoiceOut
*hw
= &cap
->hw
;
444 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
450 audio_capture_maybe_changed (cap
, enabled
);
453 static void audio_detach_capture (HWVoiceOut
*hw
)
455 SWVoiceCap
*sc
= hw
->cap_head
.lh_first
;
458 SWVoiceCap
*sc1
= sc
->entries
.le_next
;
459 SWVoiceOut
*sw
= &sc
->sw
;
460 CaptureVoiceOut
*cap
= sc
->cap
;
461 int was_active
= sw
->active
;
464 st_rate_stop (sw
->rate
);
468 QLIST_REMOVE (sw
, entries
);
469 QLIST_REMOVE (sc
, entries
);
472 /* We have removed soft voice from the capture:
473 this might have changed the overall status of the capture
474 since this might have been the only active voice */
475 audio_recalc_and_notify_capture (cap
);
481 static int audio_attach_capture (HWVoiceOut
*hw
)
483 AudioState
*s
= hw
->s
;
484 CaptureVoiceOut
*cap
;
486 audio_detach_capture (hw
);
487 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
490 HWVoiceOut
*hw_cap
= &cap
->hw
;
492 sc
= g_malloc0(sizeof(*sc
));
499 sw
->active
= hw
->enabled
;
500 sw
->conv
= noop_conv
;
501 sw
->ratio
= ((int64_t) hw_cap
->info
.freq
<< 32) / sw
->info
.freq
;
502 sw
->vol
= nominal_volume
;
503 sw
->rate
= st_rate_start (sw
->info
.freq
, hw_cap
->info
.freq
);
505 dolog ("Could not start rate conversion for `%s'\n", SW_NAME (sw
));
509 QLIST_INSERT_HEAD (&hw_cap
->sw_head
, sw
, entries
);
510 QLIST_INSERT_HEAD (&hw
->cap_head
, sc
, entries
);
512 sw
->name
= g_strdup_printf ("for %p %d,%d,%d",
513 hw
, sw
->info
.freq
, sw
->info
.bits
,
515 dolog ("Added %s active = %d\n", sw
->name
, sw
->active
);
518 audio_capture_maybe_changed (cap
, 1);
525 * Hard voice (capture)
527 static size_t audio_pcm_hw_find_min_in (HWVoiceIn
*hw
)
530 size_t m
= hw
->total_samples_captured
;
532 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
534 m
= MIN (m
, sw
->total_hw_samples_acquired
);
540 static size_t audio_pcm_hw_get_live_in(HWVoiceIn
*hw
)
542 size_t live
= hw
->total_samples_captured
- audio_pcm_hw_find_min_in (hw
);
543 if (audio_bug(__func__
, live
> hw
->conv_buf
->size
)) {
544 dolog("live=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
550 static size_t audio_pcm_hw_conv_in(HWVoiceIn
*hw
, void *pcm_buf
, size_t samples
)
553 STSampleBuffer
*conv_buf
= hw
->conv_buf
;
556 uint8_t *src
= advance(pcm_buf
, conv
* hw
->info
.bytes_per_frame
);
557 size_t proc
= MIN(samples
, conv_buf
->size
- conv_buf
->pos
);
559 hw
->conv(conv_buf
->samples
+ conv_buf
->pos
, src
, proc
);
560 conv_buf
->pos
= (conv_buf
->pos
+ proc
) % conv_buf
->size
;
569 * Soft voice (capture)
571 static size_t audio_pcm_sw_read(SWVoiceIn
*sw
, void *buf
, size_t size
)
573 HWVoiceIn
*hw
= sw
->hw
;
574 size_t samples
, live
, ret
= 0, swlim
, isamp
, osamp
, rpos
, total
= 0;
575 struct st_sample
*src
, *dst
= sw
->buf
;
577 live
= hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
581 if (audio_bug(__func__
, live
> hw
->conv_buf
->size
)) {
582 dolog("live_in=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
586 rpos
= audio_ring_posb(hw
->conv_buf
->pos
, live
, hw
->conv_buf
->size
);
588 samples
= size
/ sw
->info
.bytes_per_frame
;
590 swlim
= (live
* sw
->ratio
) >> 32;
591 swlim
= MIN (swlim
, samples
);
594 src
= hw
->conv_buf
->samples
+ rpos
;
595 if (hw
->conv_buf
->pos
> rpos
) {
596 isamp
= hw
->conv_buf
->pos
- rpos
;
598 isamp
= hw
->conv_buf
->size
- rpos
;
606 st_rate_flow (sw
->rate
, src
, dst
, &isamp
, &osamp
);
608 rpos
= (rpos
+ isamp
) % hw
->conv_buf
->size
;
614 if (!hw
->pcm_ops
->volume_in
) {
615 mixeng_volume (sw
->buf
, ret
, &sw
->vol
);
618 sw
->clip (buf
, sw
->buf
, ret
);
619 sw
->total_hw_samples_acquired
+= total
;
620 return ret
* sw
->info
.bytes_per_frame
;
624 * Hard voice (playback)
626 static size_t audio_pcm_hw_find_min_out (HWVoiceOut
*hw
, int *nb_livep
)
632 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
633 if (sw
->active
|| !sw
->empty
) {
634 m
= MIN (m
, sw
->total_hw_samples_mixed
);
643 static size_t audio_pcm_hw_get_live_out (HWVoiceOut
*hw
, int *nb_live
)
648 smin
= audio_pcm_hw_find_min_out (hw
, &nb_live1
);
656 if (audio_bug(__func__
, live
> hw
->mix_buf
->size
)) {
657 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hw
->mix_buf
->size
);
665 static size_t audio_pcm_hw_get_free(HWVoiceOut
*hw
)
667 return (hw
->pcm_ops
->buffer_get_free
? hw
->pcm_ops
->buffer_get_free(hw
) :
668 INT_MAX
) / hw
->info
.bytes_per_frame
;
671 static void audio_pcm_hw_clip_out(HWVoiceOut
*hw
, void *pcm_buf
, size_t len
)
674 size_t pos
= hw
->mix_buf
->pos
;
677 st_sample
*src
= hw
->mix_buf
->samples
+ pos
;
678 uint8_t *dst
= advance(pcm_buf
, clipped
* hw
->info
.bytes_per_frame
);
679 size_t samples_till_end_of_buf
= hw
->mix_buf
->size
- pos
;
680 size_t samples_to_clip
= MIN(len
, samples_till_end_of_buf
);
682 hw
->clip(dst
, src
, samples_to_clip
);
684 pos
= (pos
+ samples_to_clip
) % hw
->mix_buf
->size
;
685 len
-= samples_to_clip
;
686 clipped
+= samples_to_clip
;
691 * Soft voice (playback)
693 static size_t audio_pcm_sw_write(SWVoiceOut
*sw
, void *buf
, size_t size
)
695 size_t hwsamples
, samples
, isamp
, osamp
, wpos
, live
, dead
, left
, blck
;
697 size_t ret
= 0, pos
= 0, total
= 0;
703 hwsamples
= sw
->hw
->mix_buf
->size
;
705 live
= sw
->total_hw_samples_mixed
;
706 if (audio_bug(__func__
, live
> hwsamples
)) {
707 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hwsamples
);
711 if (live
== hwsamples
) {
713 dolog ("%s is full %zu\n", sw
->name
, live
);
718 wpos
= (sw
->hw
->mix_buf
->pos
+ live
) % hwsamples
;
720 dead
= hwsamples
- live
;
721 hw_free
= audio_pcm_hw_get_free(sw
->hw
);
722 hw_free
= hw_free
> live
? hw_free
- live
: 0;
723 samples
= ((int64_t)MIN(dead
, hw_free
) << 32) / sw
->ratio
;
724 samples
= MIN(samples
, size
/ sw
->info
.bytes_per_frame
);
726 sw
->conv(sw
->buf
, buf
, samples
);
728 if (!sw
->hw
->pcm_ops
->volume_out
) {
729 mixeng_volume(sw
->buf
, samples
, &sw
->vol
);
734 dead
= hwsamples
- live
;
735 left
= hwsamples
- wpos
;
736 blck
= MIN (dead
, left
);
745 sw
->hw
->mix_buf
->samples
+ wpos
,
753 wpos
= (wpos
+ osamp
) % hwsamples
;
757 sw
->total_hw_samples_mixed
+= total
;
758 sw
->empty
= sw
->total_hw_samples_mixed
== 0;
762 "%s: write size %zu ret %zu total sw %zu\n",
764 size
/ sw
->info
.bytes_per_frame
,
766 sw
->total_hw_samples_mixed
770 return ret
* sw
->info
.bytes_per_frame
;
774 static void audio_pcm_print_info (const char *cap
, struct audio_pcm_info
*info
)
776 dolog("%s: bits %d, sign %d, float %d, freq %d, nchan %d\n",
777 cap
, info
->bits
, info
->is_signed
, info
->is_float
, info
->freq
,
783 #include "audio_template.h"
785 #include "audio_template.h"
790 static int audio_is_timer_needed(AudioState
*s
)
792 HWVoiceIn
*hwi
= NULL
;
793 HWVoiceOut
*hwo
= NULL
;
795 while ((hwo
= audio_pcm_hw_find_any_enabled_out(s
, hwo
))) {
796 if (!hwo
->poll_mode
) {
800 while ((hwi
= audio_pcm_hw_find_any_enabled_in(s
, hwi
))) {
801 if (!hwi
->poll_mode
) {
808 static void audio_reset_timer (AudioState
*s
)
810 if (audio_is_timer_needed(s
)) {
811 timer_mod_anticipate_ns(s
->ts
,
812 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + s
->period_ticks
);
813 if (!s
->timer_running
) {
814 s
->timer_running
= true;
815 s
->timer_last
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
816 trace_audio_timer_start(s
->period_ticks
/ SCALE_MS
);
820 if (s
->timer_running
) {
821 s
->timer_running
= false;
822 trace_audio_timer_stop();
827 static void audio_timer (void *opaque
)
830 AudioState
*s
= opaque
;
832 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
833 diff
= now
- s
->timer_last
;
834 if (diff
> s
->period_ticks
* 3 / 2) {
835 trace_audio_timer_delayed(diff
/ SCALE_MS
);
839 audio_run(s
, "timer");
840 audio_reset_timer(s
);
846 size_t AUD_write(SWVoiceOut
*sw
, void *buf
, size_t size
)
851 /* XXX: Consider options */
857 dolog ("Writing to disabled voice %s\n", SW_NAME (sw
));
861 if (audio_get_pdo_out(hw
->s
->dev
)->mixing_engine
) {
862 return audio_pcm_sw_write(sw
, buf
, size
);
864 return hw
->pcm_ops
->write(hw
, buf
, size
);
868 size_t AUD_read(SWVoiceIn
*sw
, void *buf
, size_t size
)
873 /* XXX: Consider options */
879 dolog ("Reading from disabled voice %s\n", SW_NAME (sw
));
883 if (audio_get_pdo_in(hw
->s
->dev
)->mixing_engine
) {
884 return audio_pcm_sw_read(sw
, buf
, size
);
886 return hw
->pcm_ops
->read(hw
, buf
, size
);
890 int AUD_get_buffer_size_out(SWVoiceOut
*sw
)
892 return sw
->hw
->samples
* sw
->hw
->info
.bytes_per_frame
;
895 void AUD_set_active_out (SWVoiceOut
*sw
, int on
)
904 if (sw
->active
!= on
) {
905 AudioState
*s
= sw
->s
;
910 hw
->pending_disable
= 0;
914 if (hw
->pcm_ops
->enable_out
) {
915 hw
->pcm_ops
->enable_out(hw
, true);
917 audio_reset_timer (s
);
924 for (temp_sw
= hw
->sw_head
.lh_first
; temp_sw
;
925 temp_sw
= temp_sw
->entries
.le_next
) {
926 nb_active
+= temp_sw
->active
!= 0;
929 hw
->pending_disable
= nb_active
== 1;
933 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
934 sc
->sw
.active
= hw
->enabled
;
936 audio_capture_maybe_changed (sc
->cap
, 1);
943 void AUD_set_active_in (SWVoiceIn
*sw
, int on
)
952 if (sw
->active
!= on
) {
953 AudioState
*s
= sw
->s
;
960 if (hw
->pcm_ops
->enable_in
) {
961 hw
->pcm_ops
->enable_in(hw
, true);
963 audio_reset_timer (s
);
966 sw
->total_hw_samples_acquired
= hw
->total_samples_captured
;
971 for (temp_sw
= hw
->sw_head
.lh_first
; temp_sw
;
972 temp_sw
= temp_sw
->entries
.le_next
) {
973 nb_active
+= temp_sw
->active
!= 0;
976 if (nb_active
== 1) {
978 if (hw
->pcm_ops
->enable_in
) {
979 hw
->pcm_ops
->enable_in(hw
, false);
988 static size_t audio_get_avail (SWVoiceIn
*sw
)
996 live
= sw
->hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
997 if (audio_bug(__func__
, live
> sw
->hw
->conv_buf
->size
)) {
998 dolog("live=%zu sw->hw->conv_buf->size=%zu\n", live
,
999 sw
->hw
->conv_buf
->size
);
1004 "%s: get_avail live %zu ret %" PRId64
"\n",
1006 live
, (((int64_t) live
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
1009 return (((int64_t) live
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
;
1012 static size_t audio_sw_bytes_free(SWVoiceOut
*sw
, size_t free
)
1014 return (((int64_t)free
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
;
1017 static size_t audio_get_free(SWVoiceOut
*sw
)
1025 live
= sw
->total_hw_samples_mixed
;
1027 if (audio_bug(__func__
, live
> sw
->hw
->mix_buf
->size
)) {
1028 dolog("live=%zu sw->hw->mix_buf->size=%zu\n", live
,
1029 sw
->hw
->mix_buf
->size
);
1033 dead
= sw
->hw
->mix_buf
->size
- live
;
1036 dolog("%s: get_free live %zu dead %zu sw_bytes %zu\n",
1037 SW_NAME(sw
), live
, dead
, audio_sw_bytes_free(sw
, dead
));
1043 static void audio_capture_mix_and_clear(HWVoiceOut
*hw
, size_t rpos
,
1051 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1052 SWVoiceOut
*sw
= &sc
->sw
;
1057 size_t till_end_of_hw
= hw
->mix_buf
->size
- rpos2
;
1058 size_t to_write
= MIN(till_end_of_hw
, n
);
1059 size_t bytes
= to_write
* hw
->info
.bytes_per_frame
;
1062 sw
->buf
= hw
->mix_buf
->samples
+ rpos2
;
1063 written
= audio_pcm_sw_write (sw
, NULL
, bytes
);
1064 if (written
- bytes
) {
1065 dolog("Could not mix %zu bytes into a capture "
1066 "buffer, mixed %zu\n",
1071 rpos2
= (rpos2
+ to_write
) % hw
->mix_buf
->size
;
1076 n
= MIN(samples
, hw
->mix_buf
->size
- rpos
);
1077 mixeng_clear(hw
->mix_buf
->samples
+ rpos
, n
);
1078 mixeng_clear(hw
->mix_buf
->samples
, samples
- n
);
1081 static size_t audio_pcm_hw_run_out(HWVoiceOut
*hw
, size_t live
)
1086 size_t size
= live
* hw
->info
.bytes_per_frame
;
1088 void *buf
= hw
->pcm_ops
->get_buffer_out(hw
, &size
);
1094 decr
= MIN(size
/ hw
->info
.bytes_per_frame
, live
);
1096 audio_pcm_hw_clip_out(hw
, buf
, decr
);
1098 proc
= hw
->pcm_ops
->put_buffer_out(hw
, buf
,
1099 decr
* hw
->info
.bytes_per_frame
) /
1100 hw
->info
.bytes_per_frame
;
1104 hw
->mix_buf
->pos
= (hw
->mix_buf
->pos
+ proc
) % hw
->mix_buf
->size
;
1106 if (proc
== 0 || proc
< decr
) {
1111 if (hw
->pcm_ops
->run_buffer_out
) {
1112 hw
->pcm_ops
->run_buffer_out(hw
);
1118 static void audio_run_out (AudioState
*s
)
1120 HWVoiceOut
*hw
= NULL
;
1123 if (!audio_get_pdo_out(s
->dev
)->mixing_engine
) {
1124 while ((hw
= audio_pcm_hw_find_any_enabled_out(s
, hw
))) {
1125 /* there is exactly 1 sw for each hw with no mixeng */
1126 sw
= hw
->sw_head
.lh_first
;
1128 if (hw
->pending_disable
) {
1130 hw
->pending_disable
= 0;
1131 if (hw
->pcm_ops
->enable_out
) {
1132 hw
->pcm_ops
->enable_out(hw
, false);
1137 sw
->callback
.fn(sw
->callback
.opaque
, INT_MAX
);
1143 while ((hw
= audio_pcm_hw_find_any_enabled_out(s
, hw
))) {
1144 size_t played
, live
, prev_rpos
;
1145 size_t hw_free
= audio_pcm_hw_get_free(hw
);
1148 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1150 size_t sw_free
= audio_get_free(sw
);
1153 if (hw_free
> sw
->total_hw_samples_mixed
) {
1154 free
= audio_sw_bytes_free(sw
,
1155 MIN(sw_free
, hw_free
- sw
->total_hw_samples_mixed
));
1160 sw
->callback
.fn(sw
->callback
.opaque
, free
);
1165 live
= audio_pcm_hw_get_live_out (hw
, &nb_live
);
1170 if (audio_bug(__func__
, live
> hw
->mix_buf
->size
)) {
1171 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hw
->mix_buf
->size
);
1175 if (hw
->pending_disable
&& !nb_live
) {
1178 dolog ("Disabling voice\n");
1181 hw
->pending_disable
= 0;
1182 if (hw
->pcm_ops
->enable_out
) {
1183 hw
->pcm_ops
->enable_out(hw
, false);
1185 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1187 audio_recalc_and_notify_capture (sc
->cap
);
1193 if (hw
->pcm_ops
->run_buffer_out
) {
1194 hw
->pcm_ops
->run_buffer_out(hw
);
1199 prev_rpos
= hw
->mix_buf
->pos
;
1200 played
= audio_pcm_hw_run_out(hw
, live
);
1201 replay_audio_out(&played
);
1202 if (audio_bug(__func__
, hw
->mix_buf
->pos
>= hw
->mix_buf
->size
)) {
1203 dolog("hw->mix_buf->pos=%zu hw->mix_buf->size=%zu played=%zu\n",
1204 hw
->mix_buf
->pos
, hw
->mix_buf
->size
, played
);
1209 dolog("played=%zu\n", played
);
1213 hw
->ts_helper
+= played
;
1214 audio_capture_mix_and_clear (hw
, prev_rpos
, played
);
1217 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1218 if (!sw
->active
&& sw
->empty
) {
1222 if (audio_bug(__func__
, played
> sw
->total_hw_samples_mixed
)) {
1223 dolog("played=%zu sw->total_hw_samples_mixed=%zu\n",
1224 played
, sw
->total_hw_samples_mixed
);
1228 sw
->total_hw_samples_mixed
-= played
;
1230 if (!sw
->total_hw_samples_mixed
) {
1237 static size_t audio_pcm_hw_run_in(HWVoiceIn
*hw
, size_t samples
)
1241 if (hw
->pcm_ops
->run_buffer_in
) {
1242 hw
->pcm_ops
->run_buffer_in(hw
);
1247 size_t size
= samples
* hw
->info
.bytes_per_frame
;
1248 void *buf
= hw
->pcm_ops
->get_buffer_in(hw
, &size
);
1250 assert(size
% hw
->info
.bytes_per_frame
== 0);
1255 proc
= audio_pcm_hw_conv_in(hw
, buf
, size
/ hw
->info
.bytes_per_frame
);
1259 hw
->pcm_ops
->put_buffer_in(hw
, buf
, proc
* hw
->info
.bytes_per_frame
);
1265 static void audio_run_in (AudioState
*s
)
1267 HWVoiceIn
*hw
= NULL
;
1269 if (!audio_get_pdo_in(s
->dev
)->mixing_engine
) {
1270 while ((hw
= audio_pcm_hw_find_any_enabled_in(s
, hw
))) {
1271 /* there is exactly 1 sw for each hw with no mixeng */
1272 SWVoiceIn
*sw
= hw
->sw_head
.lh_first
;
1274 sw
->callback
.fn(sw
->callback
.opaque
, INT_MAX
);
1280 while ((hw
= audio_pcm_hw_find_any_enabled_in(s
, hw
))) {
1282 size_t captured
= 0, min
;
1284 if (replay_mode
!= REPLAY_MODE_PLAY
) {
1285 captured
= audio_pcm_hw_run_in(
1286 hw
, hw
->conv_buf
->size
- audio_pcm_hw_get_live_in(hw
));
1288 replay_audio_in(&captured
, hw
->conv_buf
->samples
, &hw
->conv_buf
->pos
,
1289 hw
->conv_buf
->size
);
1291 min
= audio_pcm_hw_find_min_in (hw
);
1292 hw
->total_samples_captured
+= captured
- min
;
1293 hw
->ts_helper
+= captured
;
1295 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1296 sw
->total_hw_samples_acquired
-= min
;
1301 avail
= audio_get_avail (sw
);
1303 sw
->callback
.fn (sw
->callback
.opaque
, avail
);
1310 static void audio_run_capture (AudioState
*s
)
1312 CaptureVoiceOut
*cap
;
1314 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
1315 size_t live
, rpos
, captured
;
1316 HWVoiceOut
*hw
= &cap
->hw
;
1319 captured
= live
= audio_pcm_hw_get_live_out (hw
, NULL
);
1320 rpos
= hw
->mix_buf
->pos
;
1322 size_t left
= hw
->mix_buf
->size
- rpos
;
1323 size_t to_capture
= MIN(live
, left
);
1324 struct st_sample
*src
;
1325 struct capture_callback
*cb
;
1327 src
= hw
->mix_buf
->samples
+ rpos
;
1328 hw
->clip (cap
->buf
, src
, to_capture
);
1329 mixeng_clear (src
, to_capture
);
1331 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1332 cb
->ops
.capture (cb
->opaque
, cap
->buf
,
1333 to_capture
* hw
->info
.bytes_per_frame
);
1335 rpos
= (rpos
+ to_capture
) % hw
->mix_buf
->size
;
1338 hw
->mix_buf
->pos
= rpos
;
1340 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1341 if (!sw
->active
&& sw
->empty
) {
1345 if (audio_bug(__func__
, captured
> sw
->total_hw_samples_mixed
)) {
1346 dolog("captured=%zu sw->total_hw_samples_mixed=%zu\n",
1347 captured
, sw
->total_hw_samples_mixed
);
1351 sw
->total_hw_samples_mixed
-= captured
;
1352 sw
->empty
= sw
->total_hw_samples_mixed
== 0;
1357 void audio_run(AudioState
*s
, const char *msg
)
1361 audio_run_capture(s
);
1365 static double prevtime
;
1369 if (gettimeofday (&tv
, NULL
)) {
1370 perror ("audio_run: gettimeofday");
1374 currtime
= tv
.tv_sec
+ tv
.tv_usec
* 1e-6;
1375 dolog ("Elapsed since last %s: %f\n", msg
, currtime
- prevtime
);
1376 prevtime
= currtime
;
1381 void audio_generic_run_buffer_in(HWVoiceIn
*hw
)
1383 if (unlikely(!hw
->buf_emul
)) {
1384 hw
->size_emul
= hw
->samples
* hw
->info
.bytes_per_frame
;
1385 hw
->buf_emul
= g_malloc(hw
->size_emul
);
1386 hw
->pos_emul
= hw
->pending_emul
= 0;
1389 while (hw
->pending_emul
< hw
->size_emul
) {
1390 size_t read_len
= MIN(hw
->size_emul
- hw
->pos_emul
,
1391 hw
->size_emul
- hw
->pending_emul
);
1392 size_t read
= hw
->pcm_ops
->read(hw
, hw
->buf_emul
+ hw
->pos_emul
,
1394 hw
->pending_emul
+= read
;
1395 hw
->pos_emul
= (hw
->pos_emul
+ read
) % hw
->size_emul
;
1396 if (read
< read_len
) {
1402 void *audio_generic_get_buffer_in(HWVoiceIn
*hw
, size_t *size
)
1406 start
= audio_ring_posb(hw
->pos_emul
, hw
->pending_emul
, hw
->size_emul
);
1407 assert(start
< hw
->size_emul
);
1409 *size
= MIN(*size
, hw
->pending_emul
);
1410 *size
= MIN(*size
, hw
->size_emul
- start
);
1411 return hw
->buf_emul
+ start
;
1414 void audio_generic_put_buffer_in(HWVoiceIn
*hw
, void *buf
, size_t size
)
1416 assert(size
<= hw
->pending_emul
);
1417 hw
->pending_emul
-= size
;
1420 size_t audio_generic_buffer_get_free(HWVoiceOut
*hw
)
1423 return hw
->size_emul
- hw
->pending_emul
;
1425 return hw
->samples
* hw
->info
.bytes_per_frame
;
1429 void audio_generic_run_buffer_out(HWVoiceOut
*hw
)
1431 while (hw
->pending_emul
) {
1432 size_t write_len
, written
, start
;
1434 start
= audio_ring_posb(hw
->pos_emul
, hw
->pending_emul
, hw
->size_emul
);
1435 assert(start
< hw
->size_emul
);
1437 write_len
= MIN(hw
->pending_emul
, hw
->size_emul
- start
);
1439 written
= hw
->pcm_ops
->write(hw
, hw
->buf_emul
+ start
, write_len
);
1440 hw
->pending_emul
-= written
;
1442 if (written
< write_len
) {
1448 void *audio_generic_get_buffer_out(HWVoiceOut
*hw
, size_t *size
)
1450 if (unlikely(!hw
->buf_emul
)) {
1451 hw
->size_emul
= hw
->samples
* hw
->info
.bytes_per_frame
;
1452 hw
->buf_emul
= g_malloc(hw
->size_emul
);
1453 hw
->pos_emul
= hw
->pending_emul
= 0;
1456 *size
= MIN(hw
->size_emul
- hw
->pending_emul
,
1457 hw
->size_emul
- hw
->pos_emul
);
1458 return hw
->buf_emul
+ hw
->pos_emul
;
1461 size_t audio_generic_put_buffer_out(HWVoiceOut
*hw
, void *buf
, size_t size
)
1463 assert(buf
== hw
->buf_emul
+ hw
->pos_emul
&&
1464 size
+ hw
->pending_emul
<= hw
->size_emul
);
1466 hw
->pending_emul
+= size
;
1467 hw
->pos_emul
= (hw
->pos_emul
+ size
) % hw
->size_emul
;
1472 size_t audio_generic_write(HWVoiceOut
*hw
, void *buf
, size_t size
)
1476 if (hw
->pcm_ops
->buffer_get_free
) {
1477 size_t free
= hw
->pcm_ops
->buffer_get_free(hw
);
1479 size
= MIN(size
, free
);
1482 while (total
< size
) {
1483 size_t dst_size
= size
- total
;
1484 size_t copy_size
, proc
;
1485 void *dst
= hw
->pcm_ops
->get_buffer_out(hw
, &dst_size
);
1487 if (dst_size
== 0) {
1491 copy_size
= MIN(size
- total
, dst_size
);
1493 memcpy(dst
, (char *)buf
+ total
, copy_size
);
1495 proc
= hw
->pcm_ops
->put_buffer_out(hw
, dst
, copy_size
);
1498 if (proc
== 0 || proc
< copy_size
) {
1503 if (hw
->pcm_ops
->run_buffer_out
) {
1504 hw
->pcm_ops
->run_buffer_out(hw
);
1510 size_t audio_generic_read(HWVoiceIn
*hw
, void *buf
, size_t size
)
1514 if (hw
->pcm_ops
->run_buffer_in
) {
1515 hw
->pcm_ops
->run_buffer_in(hw
);
1518 while (total
< size
) {
1519 size_t src_size
= size
- total
;
1520 void *src
= hw
->pcm_ops
->get_buffer_in(hw
, &src_size
);
1522 if (src_size
== 0) {
1526 memcpy((char *)buf
+ total
, src
, src_size
);
1527 hw
->pcm_ops
->put_buffer_in(hw
, src
, src_size
);
1534 static int audio_driver_init(AudioState
*s
, struct audio_driver
*drv
,
1535 bool msg
, Audiodev
*dev
)
1537 s
->drv_opaque
= drv
->init(dev
);
1539 if (s
->drv_opaque
) {
1540 if (!drv
->pcm_ops
->get_buffer_in
) {
1541 drv
->pcm_ops
->get_buffer_in
= audio_generic_get_buffer_in
;
1542 drv
->pcm_ops
->put_buffer_in
= audio_generic_put_buffer_in
;
1544 if (!drv
->pcm_ops
->get_buffer_out
) {
1545 drv
->pcm_ops
->get_buffer_out
= audio_generic_get_buffer_out
;
1546 drv
->pcm_ops
->put_buffer_out
= audio_generic_put_buffer_out
;
1549 audio_init_nb_voices_out(s
, drv
);
1550 audio_init_nb_voices_in(s
, drv
);
1555 dolog("Could not init `%s' audio driver\n", drv
->name
);
1561 static void audio_vm_change_state_handler (void *opaque
, bool running
,
1564 AudioState
*s
= opaque
;
1565 HWVoiceOut
*hwo
= NULL
;
1566 HWVoiceIn
*hwi
= NULL
;
1568 s
->vm_running
= running
;
1569 while ((hwo
= audio_pcm_hw_find_any_enabled_out(s
, hwo
))) {
1570 if (hwo
->pcm_ops
->enable_out
) {
1571 hwo
->pcm_ops
->enable_out(hwo
, running
);
1575 while ((hwi
= audio_pcm_hw_find_any_enabled_in(s
, hwi
))) {
1576 if (hwi
->pcm_ops
->enable_in
) {
1577 hwi
->pcm_ops
->enable_in(hwi
, running
);
1580 audio_reset_timer (s
);
1583 static void free_audio_state(AudioState
*s
)
1585 HWVoiceOut
*hwo
, *hwon
;
1586 HWVoiceIn
*hwi
, *hwin
;
1588 QLIST_FOREACH_SAFE(hwo
, &s
->hw_head_out
, entries
, hwon
) {
1591 if (hwo
->enabled
&& hwo
->pcm_ops
->enable_out
) {
1592 hwo
->pcm_ops
->enable_out(hwo
, false);
1594 hwo
->pcm_ops
->fini_out (hwo
);
1596 for (sc
= hwo
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1597 CaptureVoiceOut
*cap
= sc
->cap
;
1598 struct capture_callback
*cb
;
1600 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1601 cb
->ops
.destroy (cb
->opaque
);
1604 QLIST_REMOVE(hwo
, entries
);
1607 QLIST_FOREACH_SAFE(hwi
, &s
->hw_head_in
, entries
, hwin
) {
1608 if (hwi
->enabled
&& hwi
->pcm_ops
->enable_in
) {
1609 hwi
->pcm_ops
->enable_in(hwi
, false);
1611 hwi
->pcm_ops
->fini_in (hwi
);
1612 QLIST_REMOVE(hwi
, entries
);
1616 s
->drv
->fini (s
->drv_opaque
);
1621 qapi_free_Audiodev(s
->dev
);
1633 void audio_cleanup(void)
1635 while (!QTAILQ_EMPTY(&audio_states
)) {
1636 AudioState
*s
= QTAILQ_FIRST(&audio_states
);
1637 QTAILQ_REMOVE(&audio_states
, s
, list
);
1638 free_audio_state(s
);
1642 static bool vmstate_audio_needed(void *opaque
)
1645 * Never needed, this vmstate only exists in case
1646 * an old qemu sends it to us.
1651 static const VMStateDescription vmstate_audio
= {
1654 .minimum_version_id
= 1,
1655 .needed
= vmstate_audio_needed
,
1656 .fields
= (VMStateField
[]) {
1657 VMSTATE_END_OF_LIST()
1661 static void audio_validate_opts(Audiodev
*dev
, Error
**errp
);
1663 static AudiodevListEntry
*audiodev_find(
1664 AudiodevListHead
*head
, const char *drvname
)
1666 AudiodevListEntry
*e
;
1667 QSIMPLEQ_FOREACH(e
, head
, next
) {
1668 if (strcmp(AudiodevDriver_str(e
->dev
->driver
), drvname
) == 0) {
1677 * if we have dev, this function was called because of an -audiodev argument =>
1678 * initialize a new state with it
1679 * if dev == NULL => legacy implicit initialization, return the already created
1680 * state or create a new one
1682 static AudioState
*audio_init(Audiodev
*dev
, const char *name
)
1684 static bool atexit_registered
;
1687 const char *drvname
= NULL
;
1688 VMChangeStateEntry
*e
;
1690 struct audio_driver
*driver
;
1691 /* silence gcc warning about uninitialized variable */
1692 AudiodevListHead head
= QSIMPLEQ_HEAD_INITIALIZER(head
);
1696 * When using spice allow the spice audio driver being picked
1699 * Temporary hack. Using audio devices without explicit
1700 * audiodev= property is already deprecated. Same goes for
1701 * the -soundhw switch. Once this support gets finally
1702 * removed we can also drop the concept of a default audio
1703 * backend and this can go away.
1705 driver
= audio_driver_lookup("spice");
1707 driver
->can_be_default
= 1;
1712 /* -audiodev option */
1713 legacy_config
= false;
1714 drvname
= AudiodevDriver_str(dev
->driver
);
1715 } else if (!QTAILQ_EMPTY(&audio_states
)) {
1716 if (!legacy_config
) {
1717 dolog("Device %s: audiodev default parameter is deprecated, please "
1718 "specify audiodev=%s\n", name
,
1719 QTAILQ_FIRST(&audio_states
)->dev
->id
);
1721 return QTAILQ_FIRST(&audio_states
);
1723 /* legacy implicit initialization */
1724 head
= audio_handle_legacy_opts();
1726 * In case of legacy initialization, all Audiodevs in the list will have
1727 * the same configuration (except the driver), so it doesn't matter which
1728 * one we chose. We need an Audiodev to set up AudioState before we can
1729 * init a driver. Also note that dev at this point is still in the
1732 dev
= QSIMPLEQ_FIRST(&head
)->dev
;
1733 audio_validate_opts(dev
, &error_abort
);
1736 s
= g_new0(AudioState
, 1);
1739 QLIST_INIT (&s
->hw_head_out
);
1740 QLIST_INIT (&s
->hw_head_in
);
1741 QLIST_INIT (&s
->cap_head
);
1742 if (!atexit_registered
) {
1743 atexit(audio_cleanup
);
1744 atexit_registered
= true;
1746 QTAILQ_INSERT_TAIL(&audio_states
, s
, list
);
1748 s
->ts
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, audio_timer
, s
);
1750 s
->nb_hw_voices_out
= audio_get_pdo_out(dev
)->voices
;
1751 s
->nb_hw_voices_in
= audio_get_pdo_in(dev
)->voices
;
1753 if (s
->nb_hw_voices_out
<= 0) {
1754 dolog ("Bogus number of playback voices %d, setting to 1\n",
1755 s
->nb_hw_voices_out
);
1756 s
->nb_hw_voices_out
= 1;
1759 if (s
->nb_hw_voices_in
<= 0) {
1760 dolog ("Bogus number of capture voices %d, setting to 0\n",
1761 s
->nb_hw_voices_in
);
1762 s
->nb_hw_voices_in
= 0;
1766 driver
= audio_driver_lookup(drvname
);
1768 done
= !audio_driver_init(s
, driver
, true, dev
);
1770 dolog ("Unknown audio driver `%s'\n", drvname
);
1773 for (i
= 0; audio_prio_list
[i
]; i
++) {
1774 AudiodevListEntry
*e
= audiodev_find(&head
, audio_prio_list
[i
]);
1775 driver
= audio_driver_lookup(audio_prio_list
[i
]);
1778 s
->dev
= dev
= e
->dev
;
1779 audio_validate_opts(dev
, &error_abort
);
1780 done
= !audio_driver_init(s
, driver
, false, dev
);
1788 audio_free_audiodev_list(&head
);
1791 driver
= audio_driver_lookup("none");
1792 done
= !audio_driver_init(s
, driver
, false, dev
);
1794 dolog("warning: Using timer based audio emulation\n");
1797 if (dev
->timer_period
<= 0) {
1798 s
->period_ticks
= 1;
1800 s
->period_ticks
= dev
->timer_period
* (int64_t)SCALE_US
;
1803 e
= qemu_add_vm_change_state_handler (audio_vm_change_state_handler
, s
);
1805 dolog ("warning: Could not register change state handler\n"
1806 "(Audio can continue looping even after stopping the VM)\n");
1809 QLIST_INIT (&s
->card_head
);
1810 vmstate_register (NULL
, 0, &vmstate_audio
, s
);
1814 void audio_free_audiodev_list(AudiodevListHead
*head
)
1816 AudiodevListEntry
*e
;
1817 while ((e
= QSIMPLEQ_FIRST(head
))) {
1818 QSIMPLEQ_REMOVE_HEAD(head
, next
);
1819 qapi_free_Audiodev(e
->dev
);
1824 void AUD_register_card (const char *name
, QEMUSoundCard
*card
)
1827 card
->state
= audio_init(NULL
, name
);
1830 card
->name
= g_strdup (name
);
1831 memset (&card
->entries
, 0, sizeof (card
->entries
));
1832 QLIST_INSERT_HEAD(&card
->state
->card_head
, card
, entries
);
1835 void AUD_remove_card (QEMUSoundCard
*card
)
1837 QLIST_REMOVE (card
, entries
);
1838 g_free (card
->name
);
1841 static struct audio_pcm_ops capture_pcm_ops
;
1843 CaptureVoiceOut
*AUD_add_capture(
1845 struct audsettings
*as
,
1846 struct audio_capture_ops
*ops
,
1850 CaptureVoiceOut
*cap
;
1851 struct capture_callback
*cb
;
1854 if (!legacy_config
) {
1855 dolog("Capturing without setting an audiodev is deprecated\n");
1857 s
= audio_init(NULL
, NULL
);
1860 if (!audio_get_pdo_out(s
->dev
)->mixing_engine
) {
1861 dolog("Can't capture with mixeng disabled\n");
1865 if (audio_validate_settings (as
)) {
1866 dolog ("Invalid settings were passed when trying to add capture\n");
1867 audio_print_settings (as
);
1871 cb
= g_malloc0(sizeof(*cb
));
1873 cb
->opaque
= cb_opaque
;
1875 cap
= audio_pcm_capture_find_specific(s
, as
);
1877 QLIST_INSERT_HEAD (&cap
->cb_head
, cb
, entries
);
1881 CaptureVoiceOut
*cap
;
1883 cap
= g_malloc0(sizeof(*cap
));
1887 hw
->pcm_ops
= &capture_pcm_ops
;
1888 QLIST_INIT (&hw
->sw_head
);
1889 QLIST_INIT (&cap
->cb_head
);
1891 /* XXX find a more elegant way */
1892 hw
->samples
= 4096 * 4;
1893 audio_pcm_hw_alloc_resources_out(hw
);
1895 audio_pcm_init_info (&hw
->info
, as
);
1897 cap
->buf
= g_malloc0_n(hw
->mix_buf
->size
, hw
->info
.bytes_per_frame
);
1899 if (hw
->info
.is_float
) {
1900 hw
->clip
= mixeng_clip_float
[hw
->info
.nchannels
== 2];
1902 hw
->clip
= mixeng_clip
1903 [hw
->info
.nchannels
== 2]
1904 [hw
->info
.is_signed
]
1905 [hw
->info
.swap_endianness
]
1906 [audio_bits_to_index(hw
->info
.bits
)];
1909 QLIST_INSERT_HEAD (&s
->cap_head
, cap
, entries
);
1910 QLIST_INSERT_HEAD (&cap
->cb_head
, cb
, entries
);
1912 QLIST_FOREACH(hw
, &s
->hw_head_out
, entries
) {
1913 audio_attach_capture (hw
);
1919 void AUD_del_capture (CaptureVoiceOut
*cap
, void *cb_opaque
)
1921 struct capture_callback
*cb
;
1923 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1924 if (cb
->opaque
== cb_opaque
) {
1925 cb
->ops
.destroy (cb_opaque
);
1926 QLIST_REMOVE (cb
, entries
);
1929 if (!cap
->cb_head
.lh_first
) {
1930 SWVoiceOut
*sw
= cap
->hw
.sw_head
.lh_first
, *sw1
;
1933 SWVoiceCap
*sc
= (SWVoiceCap
*) sw
;
1934 #ifdef DEBUG_CAPTURE
1935 dolog ("freeing %s\n", sw
->name
);
1938 sw1
= sw
->entries
.le_next
;
1940 st_rate_stop (sw
->rate
);
1943 QLIST_REMOVE (sw
, entries
);
1944 QLIST_REMOVE (sc
, entries
);
1948 QLIST_REMOVE (cap
, entries
);
1949 g_free (cap
->hw
.mix_buf
);
1958 void AUD_set_volume_out (SWVoiceOut
*sw
, int mute
, uint8_t lvol
, uint8_t rvol
)
1960 Volume vol
= { .mute
= mute
, .channels
= 2, .vol
= { lvol
, rvol
} };
1961 audio_set_volume_out(sw
, &vol
);
1964 void audio_set_volume_out(SWVoiceOut
*sw
, Volume
*vol
)
1967 HWVoiceOut
*hw
= sw
->hw
;
1969 sw
->vol
.mute
= vol
->mute
;
1970 sw
->vol
.l
= nominal_volume
.l
* vol
->vol
[0] / 255;
1971 sw
->vol
.r
= nominal_volume
.l
* vol
->vol
[vol
->channels
> 1 ? 1 : 0] /
1974 if (hw
->pcm_ops
->volume_out
) {
1975 hw
->pcm_ops
->volume_out(hw
, vol
);
1980 void AUD_set_volume_in (SWVoiceIn
*sw
, int mute
, uint8_t lvol
, uint8_t rvol
)
1982 Volume vol
= { .mute
= mute
, .channels
= 2, .vol
= { lvol
, rvol
} };
1983 audio_set_volume_in(sw
, &vol
);
1986 void audio_set_volume_in(SWVoiceIn
*sw
, Volume
*vol
)
1989 HWVoiceIn
*hw
= sw
->hw
;
1991 sw
->vol
.mute
= vol
->mute
;
1992 sw
->vol
.l
= nominal_volume
.l
* vol
->vol
[0] / 255;
1993 sw
->vol
.r
= nominal_volume
.r
* vol
->vol
[vol
->channels
> 1 ? 1 : 0] /
1996 if (hw
->pcm_ops
->volume_in
) {
1997 hw
->pcm_ops
->volume_in(hw
, vol
);
2002 void audio_create_pdos(Audiodev
*dev
)
2004 switch (dev
->driver
) {
2005 #define CASE(DRIVER, driver, pdo_name) \
2006 case AUDIODEV_DRIVER_##DRIVER: \
2007 if (!dev->u.driver.has_in) { \
2008 dev->u.driver.in = g_malloc0( \
2009 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
2010 dev->u.driver.has_in = true; \
2012 if (!dev->u.driver.has_out) { \
2013 dev->u.driver.out = g_malloc0( \
2014 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
2015 dev->u.driver.has_out = true; \
2020 CASE(ALSA
, alsa
, Alsa
);
2021 CASE(COREAUDIO
, coreaudio
, Coreaudio
);
2023 CASE(DSOUND
, dsound
, );
2024 CASE(JACK
, jack
, Jack
);
2025 CASE(OSS
, oss
, Oss
);
2027 CASE(SDL
, sdl
, Sdl
);
2028 CASE(SPICE
, spice
, );
2031 case AUDIODEV_DRIVER__MAX
:
2036 static void audio_validate_per_direction_opts(
2037 AudiodevPerDirectionOptions
*pdo
, Error
**errp
)
2039 if (!pdo
->has_mixing_engine
) {
2040 pdo
->has_mixing_engine
= true;
2041 pdo
->mixing_engine
= true;
2043 if (!pdo
->has_fixed_settings
) {
2044 pdo
->has_fixed_settings
= true;
2045 pdo
->fixed_settings
= pdo
->mixing_engine
;
2047 if (!pdo
->fixed_settings
&&
2048 (pdo
->has_frequency
|| pdo
->has_channels
|| pdo
->has_format
)) {
2050 "You can't use frequency, channels or format with fixed-settings=off");
2053 if (!pdo
->mixing_engine
&& pdo
->fixed_settings
) {
2054 error_setg(errp
, "You can't use fixed-settings without mixeng");
2058 if (!pdo
->has_frequency
) {
2059 pdo
->has_frequency
= true;
2060 pdo
->frequency
= 44100;
2062 if (!pdo
->has_channels
) {
2063 pdo
->has_channels
= true;
2066 if (!pdo
->has_voices
) {
2067 pdo
->has_voices
= true;
2068 pdo
->voices
= pdo
->mixing_engine
? 1 : INT_MAX
;
2070 if (!pdo
->has_format
) {
2071 pdo
->has_format
= true;
2072 pdo
->format
= AUDIO_FORMAT_S16
;
2076 static void audio_validate_opts(Audiodev
*dev
, Error
**errp
)
2080 audio_create_pdos(dev
);
2082 audio_validate_per_direction_opts(audio_get_pdo_in(dev
), &err
);
2084 error_propagate(errp
, err
);
2088 audio_validate_per_direction_opts(audio_get_pdo_out(dev
), &err
);
2090 error_propagate(errp
, err
);
2094 if (!dev
->has_timer_period
) {
2095 dev
->has_timer_period
= true;
2096 dev
->timer_period
= 10000; /* 100Hz -> 10ms */
2100 void audio_parse_option(const char *opt
)
2102 Audiodev
*dev
= NULL
;
2104 Visitor
*v
= qobject_input_visitor_new_str(opt
, "driver", &error_fatal
);
2105 visit_type_Audiodev(v
, NULL
, &dev
, &error_fatal
);
2111 void audio_define(Audiodev
*dev
)
2113 AudiodevListEntry
*e
;
2115 audio_validate_opts(dev
, &error_fatal
);
2117 e
= g_new0(AudiodevListEntry
, 1);
2119 QSIMPLEQ_INSERT_TAIL(&audiodevs
, e
, next
);
2122 void audio_init_audiodevs(void)
2124 AudiodevListEntry
*e
;
2126 QSIMPLEQ_FOREACH(e
, &audiodevs
, next
) {
2127 audio_init(e
->dev
, NULL
);
2131 audsettings
audiodev_to_audsettings(AudiodevPerDirectionOptions
*pdo
)
2133 return (audsettings
) {
2134 .freq
= pdo
->frequency
,
2135 .nchannels
= pdo
->channels
,
2137 .endianness
= AUDIO_HOST_ENDIANNESS
,
2141 int audioformat_bytes_per_sample(AudioFormat fmt
)
2144 case AUDIO_FORMAT_U8
:
2145 case AUDIO_FORMAT_S8
:
2148 case AUDIO_FORMAT_U16
:
2149 case AUDIO_FORMAT_S16
:
2152 case AUDIO_FORMAT_U32
:
2153 case AUDIO_FORMAT_S32
:
2154 case AUDIO_FORMAT_F32
:
2157 case AUDIO_FORMAT__MAX
:
2164 /* frames = freq * usec / 1e6 */
2165 int audio_buffer_frames(AudiodevPerDirectionOptions
*pdo
,
2166 audsettings
*as
, int def_usecs
)
2168 uint64_t usecs
= pdo
->has_buffer_length
? pdo
->buffer_length
: def_usecs
;
2169 return (as
->freq
* usecs
+ 500000) / 1000000;
2172 /* samples = channels * frames = channels * freq * usec / 1e6 */
2173 int audio_buffer_samples(AudiodevPerDirectionOptions
*pdo
,
2174 audsettings
*as
, int def_usecs
)
2176 return as
->nchannels
* audio_buffer_frames(pdo
, as
, def_usecs
);
2180 * bytes = bytes_per_sample * samples =
2181 * bytes_per_sample * channels * freq * usec / 1e6
2183 int audio_buffer_bytes(AudiodevPerDirectionOptions
*pdo
,
2184 audsettings
*as
, int def_usecs
)
2186 return audio_buffer_samples(pdo
, as
, def_usecs
) *
2187 audioformat_bytes_per_sample(as
->fmt
);
2190 AudioState
*audio_state_by_name(const char *name
)
2193 QTAILQ_FOREACH(s
, &audio_states
, list
) {
2195 if (strcmp(name
, s
->dev
->id
) == 0) {
2202 const char *audio_get_id(QEMUSoundCard
*card
)
2205 assert(card
->state
->dev
);
2206 return card
->state
->dev
->id
;
2212 const char *audio_application_name(void)
2214 const char *vm_name
;
2216 vm_name
= qemu_get_vm_name();
2217 return vm_name
? vm_name
: "qemu";
2220 void audio_rate_start(RateCtl
*rate
)
2222 memset(rate
, 0, sizeof(RateCtl
));
2223 rate
->start_ticks
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2226 size_t audio_rate_get_bytes(struct audio_pcm_info
*info
, RateCtl
*rate
,
2235 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2236 ticks
= now
- rate
->start_ticks
;
2237 bytes
= muldiv64(ticks
, info
->bytes_per_second
, NANOSECONDS_PER_SECOND
);
2238 samples
= (bytes
- rate
->bytes_sent
) / info
->bytes_per_frame
;
2239 if (samples
< 0 || samples
> 65536) {
2240 AUD_log(NULL
, "Resetting rate control (%" PRId64
" samples)\n", samples
);
2241 audio_rate_start(rate
);
2245 ret
= MIN(samples
* info
->bytes_per_frame
, bytes_avail
);
2246 rate
->bytes_sent
+= ret
;