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 "qemu-common.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");
126 static inline int audio_bits_to_index (int bits
)
139 audio_bug ("bits_to_index", 1);
140 AUD_log (NULL
, "invalid bits %d\n", bits
);
145 void *audio_calloc (const char *funcname
, int nmemb
, size_t size
)
151 cond
= !nmemb
|| !size
;
155 if (audio_bug ("audio_calloc", cond
)) {
156 AUD_log (NULL
, "%s passed invalid arguments to audio_calloc\n",
158 AUD_log (NULL
, "nmemb=%d size=%zu (len=%zu)\n", nmemb
, size
, len
);
162 return g_malloc0 (len
);
165 void AUD_vlog (const char *cap
, const char *fmt
, va_list ap
)
168 fprintf(stderr
, "%s: ", cap
);
171 vfprintf(stderr
, fmt
, ap
);
174 void AUD_log (const char *cap
, const char *fmt
, ...)
179 AUD_vlog (cap
, fmt
, ap
);
183 static void audio_print_settings (struct audsettings
*as
)
185 dolog ("frequency=%d nchannels=%d fmt=", as
->freq
, as
->nchannels
);
188 case AUDIO_FORMAT_S8
:
189 AUD_log (NULL
, "S8");
191 case AUDIO_FORMAT_U8
:
192 AUD_log (NULL
, "U8");
194 case AUDIO_FORMAT_S16
:
195 AUD_log (NULL
, "S16");
197 case AUDIO_FORMAT_U16
:
198 AUD_log (NULL
, "U16");
200 case AUDIO_FORMAT_S32
:
201 AUD_log (NULL
, "S32");
203 case AUDIO_FORMAT_U32
:
204 AUD_log (NULL
, "U32");
206 case AUDIO_FORMAT_F32
:
207 AUD_log (NULL
, "F32");
210 AUD_log (NULL
, "invalid(%d)", as
->fmt
);
214 AUD_log (NULL
, " endianness=");
215 switch (as
->endianness
) {
217 AUD_log (NULL
, "little");
220 AUD_log (NULL
, "big");
223 AUD_log (NULL
, "invalid");
226 AUD_log (NULL
, "\n");
229 static int audio_validate_settings (struct audsettings
*as
)
233 invalid
= as
->nchannels
< 1;
234 invalid
|= as
->endianness
!= 0 && as
->endianness
!= 1;
237 case AUDIO_FORMAT_S8
:
238 case AUDIO_FORMAT_U8
:
239 case AUDIO_FORMAT_S16
:
240 case AUDIO_FORMAT_U16
:
241 case AUDIO_FORMAT_S32
:
242 case AUDIO_FORMAT_U32
:
243 case AUDIO_FORMAT_F32
:
250 invalid
|= as
->freq
<= 0;
251 return invalid
? -1 : 0;
254 static int audio_pcm_info_eq (struct audio_pcm_info
*info
, struct audsettings
*as
)
257 bool is_signed
= false, is_float
= false;
260 case AUDIO_FORMAT_S8
:
263 case AUDIO_FORMAT_U8
:
266 case AUDIO_FORMAT_S16
:
269 case AUDIO_FORMAT_U16
:
273 case AUDIO_FORMAT_F32
:
276 case AUDIO_FORMAT_S32
:
279 case AUDIO_FORMAT_U32
:
286 return info
->freq
== as
->freq
287 && info
->nchannels
== as
->nchannels
288 && info
->is_signed
== is_signed
289 && info
->is_float
== is_float
290 && info
->bits
== bits
291 && info
->swap_endianness
== (as
->endianness
!= AUDIO_HOST_ENDIANNESS
);
294 void audio_pcm_init_info (struct audio_pcm_info
*info
, struct audsettings
*as
)
297 bool is_signed
= false, is_float
= false;
300 case AUDIO_FORMAT_S8
:
303 case AUDIO_FORMAT_U8
:
307 case AUDIO_FORMAT_S16
:
310 case AUDIO_FORMAT_U16
:
315 case AUDIO_FORMAT_F32
:
318 case AUDIO_FORMAT_S32
:
321 case AUDIO_FORMAT_U32
:
330 info
->freq
= as
->freq
;
332 info
->is_signed
= is_signed
;
333 info
->is_float
= is_float
;
334 info
->nchannels
= as
->nchannels
;
335 info
->bytes_per_frame
= as
->nchannels
* mul
;
336 info
->bytes_per_second
= info
->freq
* info
->bytes_per_frame
;
337 info
->swap_endianness
= (as
->endianness
!= AUDIO_HOST_ENDIANNESS
);
340 void audio_pcm_info_clear_buf (struct audio_pcm_info
*info
, void *buf
, int len
)
346 if (info
->is_signed
|| info
->is_float
) {
347 memset(buf
, 0x00, len
* info
->bytes_per_frame
);
349 switch (info
->bits
) {
351 memset(buf
, 0x80, len
* info
->bytes_per_frame
);
360 if (info
->swap_endianness
) {
364 for (i
= 0; i
< len
* info
->nchannels
; i
++) {
374 int32_t s
= INT32_MAX
;
376 if (info
->swap_endianness
) {
380 for (i
= 0; i
< len
* info
->nchannels
; i
++) {
387 AUD_log (NULL
, "audio_pcm_info_clear_buf: invalid bits %d\n",
397 static void noop_conv (struct st_sample
*dst
, const void *src
, int samples
)
404 static CaptureVoiceOut
*audio_pcm_capture_find_specific(AudioState
*s
,
405 struct audsettings
*as
)
407 CaptureVoiceOut
*cap
;
409 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
410 if (audio_pcm_info_eq (&cap
->hw
.info
, as
)) {
417 static void audio_notify_capture (CaptureVoiceOut
*cap
, audcnotification_e cmd
)
419 struct capture_callback
*cb
;
422 dolog ("notification %d sent\n", cmd
);
424 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
425 cb
->ops
.notify (cb
->opaque
, cmd
);
429 static void audio_capture_maybe_changed (CaptureVoiceOut
*cap
, int enabled
)
431 if (cap
->hw
.enabled
!= enabled
) {
432 audcnotification_e cmd
;
433 cap
->hw
.enabled
= enabled
;
434 cmd
= enabled
? AUD_CNOTIFY_ENABLE
: AUD_CNOTIFY_DISABLE
;
435 audio_notify_capture (cap
, cmd
);
439 static void audio_recalc_and_notify_capture (CaptureVoiceOut
*cap
)
441 HWVoiceOut
*hw
= &cap
->hw
;
445 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
451 audio_capture_maybe_changed (cap
, enabled
);
454 static void audio_detach_capture (HWVoiceOut
*hw
)
456 SWVoiceCap
*sc
= hw
->cap_head
.lh_first
;
459 SWVoiceCap
*sc1
= sc
->entries
.le_next
;
460 SWVoiceOut
*sw
= &sc
->sw
;
461 CaptureVoiceOut
*cap
= sc
->cap
;
462 int was_active
= sw
->active
;
465 st_rate_stop (sw
->rate
);
469 QLIST_REMOVE (sw
, entries
);
470 QLIST_REMOVE (sc
, entries
);
473 /* We have removed soft voice from the capture:
474 this might have changed the overall status of the capture
475 since this might have been the only active voice */
476 audio_recalc_and_notify_capture (cap
);
482 static int audio_attach_capture (HWVoiceOut
*hw
)
484 AudioState
*s
= hw
->s
;
485 CaptureVoiceOut
*cap
;
487 audio_detach_capture (hw
);
488 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
491 HWVoiceOut
*hw_cap
= &cap
->hw
;
493 sc
= g_malloc0(sizeof(*sc
));
500 sw
->active
= hw
->enabled
;
501 sw
->conv
= noop_conv
;
502 sw
->ratio
= ((int64_t) hw_cap
->info
.freq
<< 32) / sw
->info
.freq
;
503 sw
->vol
= nominal_volume
;
504 sw
->rate
= st_rate_start (sw
->info
.freq
, hw_cap
->info
.freq
);
506 dolog ("Could not start rate conversion for `%s'\n", SW_NAME (sw
));
510 QLIST_INSERT_HEAD (&hw_cap
->sw_head
, sw
, entries
);
511 QLIST_INSERT_HEAD (&hw
->cap_head
, sc
, entries
);
513 sw
->name
= g_strdup_printf ("for %p %d,%d,%d",
514 hw
, sw
->info
.freq
, sw
->info
.bits
,
516 dolog ("Added %s active = %d\n", sw
->name
, sw
->active
);
519 audio_capture_maybe_changed (cap
, 1);
526 * Hard voice (capture)
528 static size_t audio_pcm_hw_find_min_in (HWVoiceIn
*hw
)
531 size_t m
= hw
->total_samples_captured
;
533 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
535 m
= MIN (m
, sw
->total_hw_samples_acquired
);
541 static size_t audio_pcm_hw_get_live_in(HWVoiceIn
*hw
)
543 size_t live
= hw
->total_samples_captured
- audio_pcm_hw_find_min_in (hw
);
544 if (audio_bug(__func__
, live
> hw
->conv_buf
->size
)) {
545 dolog("live=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
551 static void audio_pcm_hw_clip_out(HWVoiceOut
*hw
, void *pcm_buf
, size_t len
)
554 size_t pos
= hw
->mix_buf
->pos
;
557 st_sample
*src
= hw
->mix_buf
->samples
+ pos
;
558 uint8_t *dst
= advance(pcm_buf
, clipped
* hw
->info
.bytes_per_frame
);
559 size_t samples_till_end_of_buf
= hw
->mix_buf
->size
- pos
;
560 size_t samples_to_clip
= MIN(len
, samples_till_end_of_buf
);
562 hw
->clip(dst
, src
, samples_to_clip
);
564 pos
= (pos
+ samples_to_clip
) % hw
->mix_buf
->size
;
565 len
-= samples_to_clip
;
566 clipped
+= samples_to_clip
;
571 * Soft voice (capture)
573 static size_t audio_pcm_sw_get_rpos_in(SWVoiceIn
*sw
)
575 HWVoiceIn
*hw
= sw
->hw
;
576 ssize_t live
= hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
579 if (audio_bug(__func__
, live
< 0 || live
> hw
->conv_buf
->size
)) {
580 dolog("live=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
584 rpos
= hw
->conv_buf
->pos
- live
;
588 return hw
->conv_buf
->size
+ rpos
;
592 static size_t audio_pcm_sw_read(SWVoiceIn
*sw
, void *buf
, size_t size
)
594 HWVoiceIn
*hw
= sw
->hw
;
595 size_t samples
, live
, ret
= 0, swlim
, isamp
, osamp
, rpos
, total
= 0;
596 struct st_sample
*src
, *dst
= sw
->buf
;
598 rpos
= audio_pcm_sw_get_rpos_in(sw
) % hw
->conv_buf
->size
;
600 live
= hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
601 if (audio_bug(__func__
, live
> hw
->conv_buf
->size
)) {
602 dolog("live_in=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
606 samples
= size
/ sw
->info
.bytes_per_frame
;
611 swlim
= (live
* sw
->ratio
) >> 32;
612 swlim
= MIN (swlim
, samples
);
615 src
= hw
->conv_buf
->samples
+ rpos
;
616 if (hw
->conv_buf
->pos
> rpos
) {
617 isamp
= hw
->conv_buf
->pos
- rpos
;
619 isamp
= hw
->conv_buf
->size
- rpos
;
627 st_rate_flow (sw
->rate
, src
, dst
, &isamp
, &osamp
);
629 rpos
= (rpos
+ isamp
) % hw
->conv_buf
->size
;
635 if (hw
->pcm_ops
&& !hw
->pcm_ops
->volume_in
) {
636 mixeng_volume (sw
->buf
, ret
, &sw
->vol
);
639 sw
->clip (buf
, sw
->buf
, ret
);
640 sw
->total_hw_samples_acquired
+= total
;
641 return ret
* sw
->info
.bytes_per_frame
;
645 * Hard voice (playback)
647 static size_t audio_pcm_hw_find_min_out (HWVoiceOut
*hw
, int *nb_livep
)
653 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
654 if (sw
->active
|| !sw
->empty
) {
655 m
= MIN (m
, sw
->total_hw_samples_mixed
);
664 static size_t audio_pcm_hw_get_live_out (HWVoiceOut
*hw
, int *nb_live
)
669 smin
= audio_pcm_hw_find_min_out (hw
, &nb_live1
);
677 if (audio_bug(__func__
, live
> hw
->mix_buf
->size
)) {
678 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hw
->mix_buf
->size
);
687 * Soft voice (playback)
689 static size_t audio_pcm_sw_write(SWVoiceOut
*sw
, void *buf
, size_t size
)
691 size_t hwsamples
, samples
, isamp
, osamp
, wpos
, live
, dead
, left
, swlim
, blck
;
692 size_t ret
= 0, pos
= 0, total
= 0;
698 hwsamples
= sw
->hw
->mix_buf
->size
;
700 live
= sw
->total_hw_samples_mixed
;
701 if (audio_bug(__func__
, live
> hwsamples
)) {
702 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hwsamples
);
706 if (live
== hwsamples
) {
708 dolog ("%s is full %zu\n", sw
->name
, live
);
713 wpos
= (sw
->hw
->mix_buf
->pos
+ live
) % hwsamples
;
714 samples
= size
/ sw
->info
.bytes_per_frame
;
716 dead
= hwsamples
- live
;
717 swlim
= ((int64_t) dead
<< 32) / sw
->ratio
;
718 swlim
= MIN (swlim
, samples
);
720 sw
->conv (sw
->buf
, buf
, swlim
);
722 if (sw
->hw
->pcm_ops
&& !sw
->hw
->pcm_ops
->volume_out
) {
723 mixeng_volume (sw
->buf
, swlim
, &sw
->vol
);
728 dead
= hwsamples
- live
;
729 left
= hwsamples
- wpos
;
730 blck
= MIN (dead
, left
);
739 sw
->hw
->mix_buf
->samples
+ wpos
,
747 wpos
= (wpos
+ osamp
) % hwsamples
;
751 sw
->total_hw_samples_mixed
+= total
;
752 sw
->empty
= sw
->total_hw_samples_mixed
== 0;
756 "%s: write size %zu ret %zu total sw %zu\n",
758 size
/ sw
->info
.bytes_per_frame
,
760 sw
->total_hw_samples_mixed
764 return ret
* sw
->info
.bytes_per_frame
;
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
,
777 #include "audio_template.h"
779 #include "audio_template.h"
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
) {
794 while ((hwi
= audio_pcm_hw_find_any_enabled_in(s
, hwi
))) {
795 if (!hwi
->poll_mode
) {
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
);
814 if (s
->timer_running
) {
815 s
->timer_running
= false;
816 trace_audio_timer_stop();
821 static void audio_timer (void *opaque
)
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
);
833 audio_run(s
, "timer");
834 audio_reset_timer(s
);
840 size_t AUD_write(SWVoiceOut
*sw
, void *buf
, size_t size
)
845 /* XXX: Consider options */
851 dolog ("Writing to disabled voice %s\n", SW_NAME (sw
));
855 if (audio_get_pdo_out(hw
->s
->dev
)->mixing_engine
) {
856 return audio_pcm_sw_write(sw
, buf
, size
);
858 return hw
->pcm_ops
->write(hw
, buf
, size
);
862 size_t AUD_read(SWVoiceIn
*sw
, void *buf
, size_t size
)
867 /* XXX: Consider options */
873 dolog ("Reading from disabled voice %s\n", SW_NAME (sw
));
877 if (audio_get_pdo_in(hw
->s
->dev
)->mixing_engine
) {
878 return audio_pcm_sw_read(sw
, buf
, size
);
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
)
898 if (sw
->active
!= on
) {
899 AudioState
*s
= sw
->s
;
904 hw
->pending_disable
= 0;
908 if (hw
->pcm_ops
->enable_out
) {
909 hw
->pcm_ops
->enable_out(hw
, true);
911 audio_reset_timer (s
);
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
;
930 audio_capture_maybe_changed (sc
->cap
, 1);
937 void AUD_set_active_in (SWVoiceIn
*sw
, int on
)
946 if (sw
->active
!= on
) {
947 AudioState
*s
= sw
->s
;
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
;
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) {
972 if (hw
->pcm_ops
->enable_in
) {
973 hw
->pcm_ops
->enable_in(hw
, false);
982 static size_t audio_get_avail (SWVoiceIn
*sw
)
990 live
= sw
->hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
991 if (audio_bug(__func__
, live
> sw
->hw
->conv_buf
->size
)) {
992 dolog("live=%zu sw->hw->conv_buf->size=%zu\n", live
,
993 sw
->hw
->conv_buf
->size
);
998 "%s: get_avail live %zu ret %" PRId64
"\n",
1000 live
, (((int64_t) live
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
1003 return (((int64_t) live
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
;
1006 static size_t audio_get_free(SWVoiceOut
*sw
)
1014 live
= sw
->total_hw_samples_mixed
;
1016 if (audio_bug(__func__
, live
> sw
->hw
->mix_buf
->size
)) {
1017 dolog("live=%zu sw->hw->mix_buf->size=%zu\n", live
,
1018 sw
->hw
->mix_buf
->size
);
1022 dead
= sw
->hw
->mix_buf
->size
- live
;
1025 dolog ("%s: get_free live %zu dead %zu ret %" PRId64
"\n",
1027 live
, dead
, (((int64_t) dead
<< 32) / sw
->ratio
) *
1028 sw
->info
.bytes_per_frame
);
1031 return (((int64_t) dead
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
;
1034 static void audio_capture_mix_and_clear(HWVoiceOut
*hw
, size_t rpos
,
1042 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1043 SWVoiceOut
*sw
= &sc
->sw
;
1048 size_t till_end_of_hw
= hw
->mix_buf
->size
- rpos2
;
1049 size_t to_write
= MIN(till_end_of_hw
, n
);
1050 size_t bytes
= to_write
* hw
->info
.bytes_per_frame
;
1053 sw
->buf
= hw
->mix_buf
->samples
+ rpos2
;
1054 written
= audio_pcm_sw_write (sw
, NULL
, bytes
);
1055 if (written
- bytes
) {
1056 dolog("Could not mix %zu bytes into a capture "
1057 "buffer, mixed %zu\n",
1062 rpos2
= (rpos2
+ to_write
) % hw
->mix_buf
->size
;
1067 n
= MIN(samples
, hw
->mix_buf
->size
- rpos
);
1068 mixeng_clear(hw
->mix_buf
->samples
+ rpos
, n
);
1069 mixeng_clear(hw
->mix_buf
->samples
, samples
- n
);
1072 static size_t audio_pcm_hw_run_out(HWVoiceOut
*hw
, size_t live
)
1077 size_t size
= live
* hw
->info
.bytes_per_frame
;
1079 void *buf
= hw
->pcm_ops
->get_buffer_out(hw
, &size
);
1085 decr
= MIN(size
/ hw
->info
.bytes_per_frame
, live
);
1087 audio_pcm_hw_clip_out(hw
, buf
, decr
);
1089 proc
= hw
->pcm_ops
->put_buffer_out(hw
, buf
,
1090 decr
* hw
->info
.bytes_per_frame
) /
1091 hw
->info
.bytes_per_frame
;
1095 hw
->mix_buf
->pos
= (hw
->mix_buf
->pos
+ proc
) % hw
->mix_buf
->size
;
1097 if (proc
== 0 || proc
< decr
) {
1102 if (hw
->pcm_ops
->run_buffer_out
) {
1103 hw
->pcm_ops
->run_buffer_out(hw
);
1109 static void audio_run_out (AudioState
*s
)
1111 HWVoiceOut
*hw
= NULL
;
1114 if (!audio_get_pdo_out(s
->dev
)->mixing_engine
) {
1115 while ((hw
= audio_pcm_hw_find_any_enabled_out(s
, hw
))) {
1116 /* there is exactly 1 sw for each hw with no mixeng */
1117 sw
= hw
->sw_head
.lh_first
;
1119 if (hw
->pending_disable
) {
1121 hw
->pending_disable
= 0;
1122 if (hw
->pcm_ops
->enable_out
) {
1123 hw
->pcm_ops
->enable_out(hw
, false);
1128 sw
->callback
.fn(sw
->callback
.opaque
, INT_MAX
);
1134 while ((hw
= audio_pcm_hw_find_any_enabled_out(s
, hw
))) {
1135 size_t played
, live
, prev_rpos
, free
;
1138 live
= audio_pcm_hw_get_live_out (hw
, &nb_live
);
1143 if (audio_bug(__func__
, live
> hw
->mix_buf
->size
)) {
1144 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hw
->mix_buf
->size
);
1148 if (hw
->pending_disable
&& !nb_live
) {
1151 dolog ("Disabling voice\n");
1154 hw
->pending_disable
= 0;
1155 if (hw
->pcm_ops
->enable_out
) {
1156 hw
->pcm_ops
->enable_out(hw
, false);
1158 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1160 audio_recalc_and_notify_capture (sc
->cap
);
1166 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1168 free
= audio_get_free (sw
);
1170 sw
->callback
.fn (sw
->callback
.opaque
, free
);
1174 if (hw
->pcm_ops
->run_buffer_out
) {
1175 hw
->pcm_ops
->run_buffer_out(hw
);
1180 prev_rpos
= hw
->mix_buf
->pos
;
1181 played
= audio_pcm_hw_run_out(hw
, live
);
1182 replay_audio_out(&played
);
1183 if (audio_bug(__func__
, hw
->mix_buf
->pos
>= hw
->mix_buf
->size
)) {
1184 dolog("hw->mix_buf->pos=%zu hw->mix_buf->size=%zu played=%zu\n",
1185 hw
->mix_buf
->pos
, hw
->mix_buf
->size
, played
);
1186 hw
->mix_buf
->pos
= 0;
1190 dolog("played=%zu\n", played
);
1194 hw
->ts_helper
+= played
;
1195 audio_capture_mix_and_clear (hw
, prev_rpos
, played
);
1198 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1199 if (!sw
->active
&& sw
->empty
) {
1203 if (audio_bug(__func__
, played
> sw
->total_hw_samples_mixed
)) {
1204 dolog("played=%zu sw->total_hw_samples_mixed=%zu\n",
1205 played
, sw
->total_hw_samples_mixed
);
1206 played
= sw
->total_hw_samples_mixed
;
1209 sw
->total_hw_samples_mixed
-= played
;
1211 if (!sw
->total_hw_samples_mixed
) {
1216 free
= audio_get_free (sw
);
1218 sw
->callback
.fn (sw
->callback
.opaque
, free
);
1225 static size_t audio_pcm_hw_run_in(HWVoiceIn
*hw
, size_t samples
)
1228 STSampleBuffer
*conv_buf
= hw
->conv_buf
;
1230 if (hw
->pcm_ops
->run_buffer_in
) {
1231 hw
->pcm_ops
->run_buffer_in(hw
);
1236 size_t size
= samples
* hw
->info
.bytes_per_frame
;
1237 void *buf
= hw
->pcm_ops
->get_buffer_in(hw
, &size
);
1239 assert(size
% hw
->info
.bytes_per_frame
== 0);
1244 proc
= MIN(size
/ hw
->info
.bytes_per_frame
,
1245 conv_buf
->size
- conv_buf
->pos
);
1247 hw
->conv(conv_buf
->samples
+ conv_buf
->pos
, buf
, proc
);
1248 conv_buf
->pos
= (conv_buf
->pos
+ proc
) % conv_buf
->size
;
1252 hw
->pcm_ops
->put_buffer_in(hw
, buf
, proc
* hw
->info
.bytes_per_frame
);
1258 static void audio_run_in (AudioState
*s
)
1260 HWVoiceIn
*hw
= NULL
;
1262 if (!audio_get_pdo_in(s
->dev
)->mixing_engine
) {
1263 while ((hw
= audio_pcm_hw_find_any_enabled_in(s
, hw
))) {
1264 /* there is exactly 1 sw for each hw with no mixeng */
1265 SWVoiceIn
*sw
= hw
->sw_head
.lh_first
;
1267 sw
->callback
.fn(sw
->callback
.opaque
, INT_MAX
);
1273 while ((hw
= audio_pcm_hw_find_any_enabled_in(s
, hw
))) {
1275 size_t captured
= 0, min
;
1277 if (replay_mode
!= REPLAY_MODE_PLAY
) {
1278 captured
= audio_pcm_hw_run_in(
1279 hw
, hw
->conv_buf
->size
- audio_pcm_hw_get_live_in(hw
));
1281 replay_audio_in(&captured
, hw
->conv_buf
->samples
, &hw
->conv_buf
->pos
,
1282 hw
->conv_buf
->size
);
1284 min
= audio_pcm_hw_find_min_in (hw
);
1285 hw
->total_samples_captured
+= captured
- min
;
1286 hw
->ts_helper
+= captured
;
1288 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1289 sw
->total_hw_samples_acquired
-= min
;
1294 avail
= audio_get_avail (sw
);
1296 sw
->callback
.fn (sw
->callback
.opaque
, avail
);
1303 static void audio_run_capture (AudioState
*s
)
1305 CaptureVoiceOut
*cap
;
1307 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
1308 size_t live
, rpos
, captured
;
1309 HWVoiceOut
*hw
= &cap
->hw
;
1312 captured
= live
= audio_pcm_hw_get_live_out (hw
, NULL
);
1313 rpos
= hw
->mix_buf
->pos
;
1315 size_t left
= hw
->mix_buf
->size
- rpos
;
1316 size_t to_capture
= MIN(live
, left
);
1317 struct st_sample
*src
;
1318 struct capture_callback
*cb
;
1320 src
= hw
->mix_buf
->samples
+ rpos
;
1321 hw
->clip (cap
->buf
, src
, to_capture
);
1322 mixeng_clear (src
, to_capture
);
1324 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1325 cb
->ops
.capture (cb
->opaque
, cap
->buf
,
1326 to_capture
* hw
->info
.bytes_per_frame
);
1328 rpos
= (rpos
+ to_capture
) % hw
->mix_buf
->size
;
1331 hw
->mix_buf
->pos
= rpos
;
1333 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1334 if (!sw
->active
&& sw
->empty
) {
1338 if (audio_bug(__func__
, captured
> sw
->total_hw_samples_mixed
)) {
1339 dolog("captured=%zu sw->total_hw_samples_mixed=%zu\n",
1340 captured
, sw
->total_hw_samples_mixed
);
1341 captured
= sw
->total_hw_samples_mixed
;
1344 sw
->total_hw_samples_mixed
-= captured
;
1345 sw
->empty
= sw
->total_hw_samples_mixed
== 0;
1350 void audio_run(AudioState
*s
, const char *msg
)
1354 audio_run_capture(s
);
1358 static double prevtime
;
1362 if (gettimeofday (&tv
, NULL
)) {
1363 perror ("audio_run: gettimeofday");
1367 currtime
= tv
.tv_sec
+ tv
.tv_usec
* 1e-6;
1368 dolog ("Elapsed since last %s: %f\n", msg
, currtime
- prevtime
);
1369 prevtime
= currtime
;
1374 void audio_generic_run_buffer_in(HWVoiceIn
*hw
)
1376 if (unlikely(!hw
->buf_emul
)) {
1377 hw
->size_emul
= hw
->samples
* hw
->info
.bytes_per_frame
;
1378 hw
->buf_emul
= g_malloc(hw
->size_emul
);
1379 hw
->pos_emul
= hw
->pending_emul
= 0;
1382 while (hw
->pending_emul
< hw
->size_emul
) {
1383 size_t read_len
= MIN(hw
->size_emul
- hw
->pos_emul
,
1384 hw
->size_emul
- hw
->pending_emul
);
1385 size_t read
= hw
->pcm_ops
->read(hw
, hw
->buf_emul
+ hw
->pos_emul
,
1387 hw
->pending_emul
+= read
;
1388 hw
->pos_emul
= (hw
->pos_emul
+ read
) % hw
->size_emul
;
1389 if (read
< read_len
) {
1395 void *audio_generic_get_buffer_in(HWVoiceIn
*hw
, size_t *size
)
1397 ssize_t start
= (ssize_t
)hw
->pos_emul
- hw
->pending_emul
;
1400 start
+= hw
->size_emul
;
1402 assert(start
>= 0 && start
< hw
->size_emul
);
1404 *size
= MIN(*size
, hw
->pending_emul
);
1405 *size
= MIN(*size
, hw
->size_emul
- start
);
1406 return hw
->buf_emul
+ start
;
1409 void audio_generic_put_buffer_in(HWVoiceIn
*hw
, void *buf
, size_t size
)
1411 assert(size
<= hw
->pending_emul
);
1412 hw
->pending_emul
-= size
;
1415 void audio_generic_run_buffer_out(HWVoiceOut
*hw
)
1417 while (hw
->pending_emul
) {
1418 size_t write_len
, written
;
1419 ssize_t start
= ((ssize_t
) hw
->pos_emul
) - hw
->pending_emul
;
1422 start
+= hw
->size_emul
;
1424 assert(start
>= 0 && start
< hw
->size_emul
);
1426 write_len
= MIN(hw
->pending_emul
, hw
->size_emul
- start
);
1428 written
= hw
->pcm_ops
->write(hw
, hw
->buf_emul
+ start
, write_len
);
1429 hw
->pending_emul
-= written
;
1431 if (written
< write_len
) {
1437 void *audio_generic_get_buffer_out(HWVoiceOut
*hw
, size_t *size
)
1439 if (unlikely(!hw
->buf_emul
)) {
1440 hw
->size_emul
= hw
->samples
* hw
->info
.bytes_per_frame
;
1441 hw
->buf_emul
= g_malloc(hw
->size_emul
);
1442 hw
->pos_emul
= hw
->pending_emul
= 0;
1445 *size
= MIN(hw
->size_emul
- hw
->pending_emul
,
1446 hw
->size_emul
- hw
->pos_emul
);
1447 return hw
->buf_emul
+ hw
->pos_emul
;
1450 size_t audio_generic_put_buffer_out(HWVoiceOut
*hw
, void *buf
, size_t size
)
1452 assert(buf
== hw
->buf_emul
+ hw
->pos_emul
&&
1453 size
+ hw
->pending_emul
<= hw
->size_emul
);
1455 hw
->pending_emul
+= size
;
1456 hw
->pos_emul
= (hw
->pos_emul
+ size
) % hw
->size_emul
;
1461 size_t audio_generic_write(HWVoiceOut
*hw
, void *buf
, size_t size
)
1465 while (total
< size
) {
1466 size_t dst_size
= size
- total
;
1467 size_t copy_size
, proc
;
1468 void *dst
= hw
->pcm_ops
->get_buffer_out(hw
, &dst_size
);
1470 if (dst_size
== 0) {
1474 copy_size
= MIN(size
- total
, dst_size
);
1476 memcpy(dst
, (char *)buf
+ total
, copy_size
);
1478 proc
= hw
->pcm_ops
->put_buffer_out(hw
, dst
, copy_size
);
1481 if (proc
== 0 || proc
< copy_size
) {
1486 if (hw
->pcm_ops
->run_buffer_out
) {
1487 hw
->pcm_ops
->run_buffer_out(hw
);
1493 size_t audio_generic_read(HWVoiceIn
*hw
, void *buf
, size_t size
)
1497 if (hw
->pcm_ops
->run_buffer_in
) {
1498 hw
->pcm_ops
->run_buffer_in(hw
);
1501 while (total
< size
) {
1502 size_t src_size
= size
- total
;
1503 void *src
= hw
->pcm_ops
->get_buffer_in(hw
, &src_size
);
1505 if (src_size
== 0) {
1509 memcpy((char *)buf
+ total
, src
, src_size
);
1510 hw
->pcm_ops
->put_buffer_in(hw
, src
, src_size
);
1517 static int audio_driver_init(AudioState
*s
, struct audio_driver
*drv
,
1518 bool msg
, Audiodev
*dev
)
1520 s
->drv_opaque
= drv
->init(dev
);
1522 if (s
->drv_opaque
) {
1523 if (!drv
->pcm_ops
->get_buffer_in
) {
1524 drv
->pcm_ops
->get_buffer_in
= audio_generic_get_buffer_in
;
1525 drv
->pcm_ops
->put_buffer_in
= audio_generic_put_buffer_in
;
1527 if (!drv
->pcm_ops
->get_buffer_out
) {
1528 drv
->pcm_ops
->get_buffer_out
= audio_generic_get_buffer_out
;
1529 drv
->pcm_ops
->put_buffer_out
= audio_generic_put_buffer_out
;
1532 audio_init_nb_voices_out(s
, drv
);
1533 audio_init_nb_voices_in(s
, drv
);
1538 dolog("Could not init `%s' audio driver\n", drv
->name
);
1544 static void audio_vm_change_state_handler (void *opaque
, bool running
,
1547 AudioState
*s
= opaque
;
1548 HWVoiceOut
*hwo
= NULL
;
1549 HWVoiceIn
*hwi
= NULL
;
1551 s
->vm_running
= running
;
1552 while ((hwo
= audio_pcm_hw_find_any_enabled_out(s
, hwo
))) {
1553 if (hwo
->pcm_ops
->enable_out
) {
1554 hwo
->pcm_ops
->enable_out(hwo
, running
);
1558 while ((hwi
= audio_pcm_hw_find_any_enabled_in(s
, hwi
))) {
1559 if (hwi
->pcm_ops
->enable_in
) {
1560 hwi
->pcm_ops
->enable_in(hwi
, running
);
1563 audio_reset_timer (s
);
1566 static void free_audio_state(AudioState
*s
)
1568 HWVoiceOut
*hwo
, *hwon
;
1569 HWVoiceIn
*hwi
, *hwin
;
1571 QLIST_FOREACH_SAFE(hwo
, &s
->hw_head_out
, entries
, hwon
) {
1574 if (hwo
->enabled
&& hwo
->pcm_ops
->enable_out
) {
1575 hwo
->pcm_ops
->enable_out(hwo
, false);
1577 hwo
->pcm_ops
->fini_out (hwo
);
1579 for (sc
= hwo
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1580 CaptureVoiceOut
*cap
= sc
->cap
;
1581 struct capture_callback
*cb
;
1583 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1584 cb
->ops
.destroy (cb
->opaque
);
1587 QLIST_REMOVE(hwo
, entries
);
1590 QLIST_FOREACH_SAFE(hwi
, &s
->hw_head_in
, entries
, hwin
) {
1591 if (hwi
->enabled
&& hwi
->pcm_ops
->enable_in
) {
1592 hwi
->pcm_ops
->enable_in(hwi
, false);
1594 hwi
->pcm_ops
->fini_in (hwi
);
1595 QLIST_REMOVE(hwi
, entries
);
1599 s
->drv
->fini (s
->drv_opaque
);
1604 qapi_free_Audiodev(s
->dev
);
1616 void audio_cleanup(void)
1618 while (!QTAILQ_EMPTY(&audio_states
)) {
1619 AudioState
*s
= QTAILQ_FIRST(&audio_states
);
1620 QTAILQ_REMOVE(&audio_states
, s
, list
);
1621 free_audio_state(s
);
1625 static bool vmstate_audio_needed(void *opaque
)
1628 * Never needed, this vmstate only exists in case
1629 * an old qemu sends it to us.
1634 static const VMStateDescription vmstate_audio
= {
1637 .minimum_version_id
= 1,
1638 .needed
= vmstate_audio_needed
,
1639 .fields
= (VMStateField
[]) {
1640 VMSTATE_END_OF_LIST()
1644 static void audio_validate_opts(Audiodev
*dev
, Error
**errp
);
1646 static AudiodevListEntry
*audiodev_find(
1647 AudiodevListHead
*head
, const char *drvname
)
1649 AudiodevListEntry
*e
;
1650 QSIMPLEQ_FOREACH(e
, head
, next
) {
1651 if (strcmp(AudiodevDriver_str(e
->dev
->driver
), drvname
) == 0) {
1660 * if we have dev, this function was called because of an -audiodev argument =>
1661 * initialize a new state with it
1662 * if dev == NULL => legacy implicit initialization, return the already created
1663 * state or create a new one
1665 static AudioState
*audio_init(Audiodev
*dev
, const char *name
)
1667 static bool atexit_registered
;
1670 const char *drvname
= NULL
;
1671 VMChangeStateEntry
*e
;
1673 struct audio_driver
*driver
;
1674 /* silence gcc warning about uninitialized variable */
1675 AudiodevListHead head
= QSIMPLEQ_HEAD_INITIALIZER(head
);
1679 * When using spice allow the spice audio driver being picked
1682 * Temporary hack. Using audio devices without explicit
1683 * audiodev= property is already deprecated. Same goes for
1684 * the -soundhw switch. Once this support gets finally
1685 * removed we can also drop the concept of a default audio
1686 * backend and this can go away.
1688 driver
= audio_driver_lookup("spice");
1690 driver
->can_be_default
= 1;
1695 /* -audiodev option */
1696 legacy_config
= false;
1697 drvname
= AudiodevDriver_str(dev
->driver
);
1698 } else if (!QTAILQ_EMPTY(&audio_states
)) {
1699 if (!legacy_config
) {
1700 dolog("Device %s: audiodev default parameter is deprecated, please "
1701 "specify audiodev=%s\n", name
,
1702 QTAILQ_FIRST(&audio_states
)->dev
->id
);
1704 return QTAILQ_FIRST(&audio_states
);
1706 /* legacy implicit initialization */
1707 head
= audio_handle_legacy_opts();
1709 * In case of legacy initialization, all Audiodevs in the list will have
1710 * the same configuration (except the driver), so it doesn't matter which
1711 * one we chose. We need an Audiodev to set up AudioState before we can
1712 * init a driver. Also note that dev at this point is still in the
1715 dev
= QSIMPLEQ_FIRST(&head
)->dev
;
1716 audio_validate_opts(dev
, &error_abort
);
1719 s
= g_malloc0(sizeof(AudioState
));
1722 QLIST_INIT (&s
->hw_head_out
);
1723 QLIST_INIT (&s
->hw_head_in
);
1724 QLIST_INIT (&s
->cap_head
);
1725 if (!atexit_registered
) {
1726 atexit(audio_cleanup
);
1727 atexit_registered
= true;
1729 QTAILQ_INSERT_TAIL(&audio_states
, s
, list
);
1731 s
->ts
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, audio_timer
, s
);
1733 s
->nb_hw_voices_out
= audio_get_pdo_out(dev
)->voices
;
1734 s
->nb_hw_voices_in
= audio_get_pdo_in(dev
)->voices
;
1736 if (s
->nb_hw_voices_out
<= 0) {
1737 dolog ("Bogus number of playback voices %d, setting to 1\n",
1738 s
->nb_hw_voices_out
);
1739 s
->nb_hw_voices_out
= 1;
1742 if (s
->nb_hw_voices_in
<= 0) {
1743 dolog ("Bogus number of capture voices %d, setting to 0\n",
1744 s
->nb_hw_voices_in
);
1745 s
->nb_hw_voices_in
= 0;
1749 driver
= audio_driver_lookup(drvname
);
1751 done
= !audio_driver_init(s
, driver
, true, dev
);
1753 dolog ("Unknown audio driver `%s'\n", drvname
);
1756 for (i
= 0; audio_prio_list
[i
]; i
++) {
1757 AudiodevListEntry
*e
= audiodev_find(&head
, audio_prio_list
[i
]);
1758 driver
= audio_driver_lookup(audio_prio_list
[i
]);
1761 s
->dev
= dev
= e
->dev
;
1762 audio_validate_opts(dev
, &error_abort
);
1763 done
= !audio_driver_init(s
, driver
, false, dev
);
1771 audio_free_audiodev_list(&head
);
1774 driver
= audio_driver_lookup("none");
1775 done
= !audio_driver_init(s
, driver
, false, dev
);
1777 dolog("warning: Using timer based audio emulation\n");
1780 if (dev
->timer_period
<= 0) {
1781 s
->period_ticks
= 1;
1783 s
->period_ticks
= dev
->timer_period
* (int64_t)SCALE_US
;
1786 e
= qemu_add_vm_change_state_handler (audio_vm_change_state_handler
, s
);
1788 dolog ("warning: Could not register change state handler\n"
1789 "(Audio can continue looping even after stopping the VM)\n");
1792 QLIST_INIT (&s
->card_head
);
1793 vmstate_register (NULL
, 0, &vmstate_audio
, s
);
1797 void audio_free_audiodev_list(AudiodevListHead
*head
)
1799 AudiodevListEntry
*e
;
1800 while ((e
= QSIMPLEQ_FIRST(head
))) {
1801 QSIMPLEQ_REMOVE_HEAD(head
, next
);
1802 qapi_free_Audiodev(e
->dev
);
1807 void AUD_register_card (const char *name
, QEMUSoundCard
*card
)
1810 card
->state
= audio_init(NULL
, name
);
1813 card
->name
= g_strdup (name
);
1814 memset (&card
->entries
, 0, sizeof (card
->entries
));
1815 QLIST_INSERT_HEAD(&card
->state
->card_head
, card
, entries
);
1818 void AUD_remove_card (QEMUSoundCard
*card
)
1820 QLIST_REMOVE (card
, entries
);
1821 g_free (card
->name
);
1825 CaptureVoiceOut
*AUD_add_capture(
1827 struct audsettings
*as
,
1828 struct audio_capture_ops
*ops
,
1832 CaptureVoiceOut
*cap
;
1833 struct capture_callback
*cb
;
1836 if (!legacy_config
) {
1837 dolog("Capturing without setting an audiodev is deprecated\n");
1839 s
= audio_init(NULL
, NULL
);
1842 if (!audio_get_pdo_out(s
->dev
)->mixing_engine
) {
1843 dolog("Can't capture with mixeng disabled\n");
1847 if (audio_validate_settings (as
)) {
1848 dolog ("Invalid settings were passed when trying to add capture\n");
1849 audio_print_settings (as
);
1853 cb
= g_malloc0(sizeof(*cb
));
1855 cb
->opaque
= cb_opaque
;
1857 cap
= audio_pcm_capture_find_specific(s
, as
);
1859 QLIST_INSERT_HEAD (&cap
->cb_head
, cb
, entries
);
1863 CaptureVoiceOut
*cap
;
1865 cap
= g_malloc0(sizeof(*cap
));
1869 QLIST_INIT (&hw
->sw_head
);
1870 QLIST_INIT (&cap
->cb_head
);
1872 /* XXX find a more elegant way */
1873 hw
->samples
= 4096 * 4;
1874 audio_pcm_hw_alloc_resources_out(hw
);
1876 audio_pcm_init_info (&hw
->info
, as
);
1878 cap
->buf
= g_malloc0_n(hw
->mix_buf
->size
, hw
->info
.bytes_per_frame
);
1880 if (hw
->info
.is_float
) {
1881 hw
->clip
= mixeng_clip_float
[hw
->info
.nchannels
== 2];
1883 hw
->clip
= mixeng_clip
1884 [hw
->info
.nchannels
== 2]
1885 [hw
->info
.is_signed
]
1886 [hw
->info
.swap_endianness
]
1887 [audio_bits_to_index(hw
->info
.bits
)];
1890 QLIST_INSERT_HEAD (&s
->cap_head
, cap
, entries
);
1891 QLIST_INSERT_HEAD (&cap
->cb_head
, cb
, entries
);
1893 QLIST_FOREACH(hw
, &s
->hw_head_out
, entries
) {
1894 audio_attach_capture (hw
);
1900 void AUD_del_capture (CaptureVoiceOut
*cap
, void *cb_opaque
)
1902 struct capture_callback
*cb
;
1904 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1905 if (cb
->opaque
== cb_opaque
) {
1906 cb
->ops
.destroy (cb_opaque
);
1907 QLIST_REMOVE (cb
, entries
);
1910 if (!cap
->cb_head
.lh_first
) {
1911 SWVoiceOut
*sw
= cap
->hw
.sw_head
.lh_first
, *sw1
;
1914 SWVoiceCap
*sc
= (SWVoiceCap
*) sw
;
1915 #ifdef DEBUG_CAPTURE
1916 dolog ("freeing %s\n", sw
->name
);
1919 sw1
= sw
->entries
.le_next
;
1921 st_rate_stop (sw
->rate
);
1924 QLIST_REMOVE (sw
, entries
);
1925 QLIST_REMOVE (sc
, entries
);
1929 QLIST_REMOVE (cap
, entries
);
1930 g_free (cap
->hw
.mix_buf
);
1939 void AUD_set_volume_out (SWVoiceOut
*sw
, int mute
, uint8_t lvol
, uint8_t rvol
)
1941 Volume vol
= { .mute
= mute
, .channels
= 2, .vol
= { lvol
, rvol
} };
1942 audio_set_volume_out(sw
, &vol
);
1945 void audio_set_volume_out(SWVoiceOut
*sw
, Volume
*vol
)
1948 HWVoiceOut
*hw
= sw
->hw
;
1950 sw
->vol
.mute
= vol
->mute
;
1951 sw
->vol
.l
= nominal_volume
.l
* vol
->vol
[0] / 255;
1952 sw
->vol
.r
= nominal_volume
.l
* vol
->vol
[vol
->channels
> 1 ? 1 : 0] /
1955 if (hw
->pcm_ops
->volume_out
) {
1956 hw
->pcm_ops
->volume_out(hw
, vol
);
1961 void AUD_set_volume_in (SWVoiceIn
*sw
, int mute
, uint8_t lvol
, uint8_t rvol
)
1963 Volume vol
= { .mute
= mute
, .channels
= 2, .vol
= { lvol
, rvol
} };
1964 audio_set_volume_in(sw
, &vol
);
1967 void audio_set_volume_in(SWVoiceIn
*sw
, Volume
*vol
)
1970 HWVoiceIn
*hw
= sw
->hw
;
1972 sw
->vol
.mute
= vol
->mute
;
1973 sw
->vol
.l
= nominal_volume
.l
* vol
->vol
[0] / 255;
1974 sw
->vol
.r
= nominal_volume
.r
* vol
->vol
[vol
->channels
> 1 ? 1 : 0] /
1977 if (hw
->pcm_ops
->volume_in
) {
1978 hw
->pcm_ops
->volume_in(hw
, vol
);
1983 void audio_create_pdos(Audiodev
*dev
)
1985 switch (dev
->driver
) {
1986 #define CASE(DRIVER, driver, pdo_name) \
1987 case AUDIODEV_DRIVER_##DRIVER: \
1988 if (!dev->u.driver.has_in) { \
1989 dev->u.driver.in = g_malloc0( \
1990 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
1991 dev->u.driver.has_in = true; \
1993 if (!dev->u.driver.has_out) { \
1994 dev->u.driver.out = g_malloc0( \
1995 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
1996 dev->u.driver.has_out = true; \
2001 CASE(ALSA
, alsa
, Alsa
);
2002 CASE(COREAUDIO
, coreaudio
, Coreaudio
);
2004 CASE(DSOUND
, dsound
, );
2005 CASE(JACK
, jack
, Jack
);
2006 CASE(OSS
, oss
, Oss
);
2008 CASE(SDL
, sdl
, Sdl
);
2009 CASE(SPICE
, spice
, );
2012 case AUDIODEV_DRIVER__MAX
:
2017 static void audio_validate_per_direction_opts(
2018 AudiodevPerDirectionOptions
*pdo
, Error
**errp
)
2020 if (!pdo
->has_mixing_engine
) {
2021 pdo
->has_mixing_engine
= true;
2022 pdo
->mixing_engine
= true;
2024 if (!pdo
->has_fixed_settings
) {
2025 pdo
->has_fixed_settings
= true;
2026 pdo
->fixed_settings
= pdo
->mixing_engine
;
2028 if (!pdo
->fixed_settings
&&
2029 (pdo
->has_frequency
|| pdo
->has_channels
|| pdo
->has_format
)) {
2031 "You can't use frequency, channels or format with fixed-settings=off");
2034 if (!pdo
->mixing_engine
&& pdo
->fixed_settings
) {
2035 error_setg(errp
, "You can't use fixed-settings without mixeng");
2039 if (!pdo
->has_frequency
) {
2040 pdo
->has_frequency
= true;
2041 pdo
->frequency
= 44100;
2043 if (!pdo
->has_channels
) {
2044 pdo
->has_channels
= true;
2047 if (!pdo
->has_voices
) {
2048 pdo
->has_voices
= true;
2049 pdo
->voices
= pdo
->mixing_engine
? 1 : INT_MAX
;
2051 if (!pdo
->has_format
) {
2052 pdo
->has_format
= true;
2053 pdo
->format
= AUDIO_FORMAT_S16
;
2057 static void audio_validate_opts(Audiodev
*dev
, Error
**errp
)
2061 audio_create_pdos(dev
);
2063 audio_validate_per_direction_opts(audio_get_pdo_in(dev
), &err
);
2065 error_propagate(errp
, err
);
2069 audio_validate_per_direction_opts(audio_get_pdo_out(dev
), &err
);
2071 error_propagate(errp
, err
);
2075 if (!dev
->has_timer_period
) {
2076 dev
->has_timer_period
= true;
2077 dev
->timer_period
= 10000; /* 100Hz -> 10ms */
2081 void audio_parse_option(const char *opt
)
2083 AudiodevListEntry
*e
;
2084 Audiodev
*dev
= NULL
;
2086 Visitor
*v
= qobject_input_visitor_new_str(opt
, "driver", &error_fatal
);
2087 visit_type_Audiodev(v
, NULL
, &dev
, &error_fatal
);
2090 audio_validate_opts(dev
, &error_fatal
);
2092 e
= g_malloc0(sizeof(AudiodevListEntry
));
2094 QSIMPLEQ_INSERT_TAIL(&audiodevs
, e
, next
);
2097 void audio_init_audiodevs(void)
2099 AudiodevListEntry
*e
;
2101 QSIMPLEQ_FOREACH(e
, &audiodevs
, next
) {
2102 audio_init(e
->dev
, NULL
);
2106 audsettings
audiodev_to_audsettings(AudiodevPerDirectionOptions
*pdo
)
2108 return (audsettings
) {
2109 .freq
= pdo
->frequency
,
2110 .nchannels
= pdo
->channels
,
2112 .endianness
= AUDIO_HOST_ENDIANNESS
,
2116 int audioformat_bytes_per_sample(AudioFormat fmt
)
2119 case AUDIO_FORMAT_U8
:
2120 case AUDIO_FORMAT_S8
:
2123 case AUDIO_FORMAT_U16
:
2124 case AUDIO_FORMAT_S16
:
2127 case AUDIO_FORMAT_U32
:
2128 case AUDIO_FORMAT_S32
:
2129 case AUDIO_FORMAT_F32
:
2132 case AUDIO_FORMAT__MAX
:
2139 /* frames = freq * usec / 1e6 */
2140 int audio_buffer_frames(AudiodevPerDirectionOptions
*pdo
,
2141 audsettings
*as
, int def_usecs
)
2143 uint64_t usecs
= pdo
->has_buffer_length
? pdo
->buffer_length
: def_usecs
;
2144 return (as
->freq
* usecs
+ 500000) / 1000000;
2147 /* samples = channels * frames = channels * freq * usec / 1e6 */
2148 int audio_buffer_samples(AudiodevPerDirectionOptions
*pdo
,
2149 audsettings
*as
, int def_usecs
)
2151 return as
->nchannels
* audio_buffer_frames(pdo
, as
, def_usecs
);
2155 * bytes = bytes_per_sample * samples =
2156 * bytes_per_sample * channels * freq * usec / 1e6
2158 int audio_buffer_bytes(AudiodevPerDirectionOptions
*pdo
,
2159 audsettings
*as
, int def_usecs
)
2161 return audio_buffer_samples(pdo
, as
, def_usecs
) *
2162 audioformat_bytes_per_sample(as
->fmt
);
2165 AudioState
*audio_state_by_name(const char *name
)
2168 QTAILQ_FOREACH(s
, &audio_states
, list
) {
2170 if (strcmp(name
, s
->dev
->id
) == 0) {
2177 const char *audio_get_id(QEMUSoundCard
*card
)
2180 assert(card
->state
->dev
);
2181 return card
->state
->dev
->id
;
2187 const char *audio_application_name(void)
2189 const char *vm_name
;
2191 vm_name
= qemu_get_vm_name();
2192 return vm_name
? vm_name
: "qemu";
2195 void audio_rate_start(RateCtl
*rate
)
2197 memset(rate
, 0, sizeof(RateCtl
));
2198 rate
->start_ticks
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2201 size_t audio_rate_get_bytes(struct audio_pcm_info
*info
, RateCtl
*rate
,
2210 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2211 ticks
= now
- rate
->start_ticks
;
2212 bytes
= muldiv64(ticks
, info
->bytes_per_second
, NANOSECONDS_PER_SECOND
);
2213 samples
= (bytes
- rate
->bytes_sent
) / info
->bytes_per_frame
;
2214 if (samples
< 0 || samples
> 65536) {
2215 AUD_log(NULL
, "Resetting rate control (%" PRId64
" samples)\n", samples
);
2216 audio_rate_start(rate
);
2220 ret
= MIN(samples
* info
->bytes_per_frame
, bytes_avail
);
2221 rate
->bytes_sent
+= ret
;