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/replay.h"
36 #include "sysemu/runstate.h"
37 #include "ui/qemu-spice.h"
40 #define AUDIO_CAP "audio"
41 #include "audio_int.h"
43 /* #define DEBUG_LIVE */
44 /* #define DEBUG_OUT */
45 /* #define DEBUG_CAPTURE */
46 /* #define DEBUG_POLL */
48 #define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown"
51 /* Order of CONFIG_AUDIO_DRIVERS is import.
52 The 1st one is the one used by default, that is the reason
53 that we generate the list.
55 const char *audio_prio_list
[] = {
63 static QLIST_HEAD(, audio_driver
) audio_drivers
;
64 static AudiodevListHead audiodevs
= QSIMPLEQ_HEAD_INITIALIZER(audiodevs
);
66 void audio_driver_register(audio_driver
*drv
)
68 QLIST_INSERT_HEAD(&audio_drivers
, drv
, next
);
71 audio_driver
*audio_driver_lookup(const char *name
)
73 struct audio_driver
*d
;
75 QLIST_FOREACH(d
, &audio_drivers
, next
) {
76 if (strcmp(name
, d
->name
) == 0) {
81 audio_module_load_one(name
);
82 QLIST_FOREACH(d
, &audio_drivers
, next
) {
83 if (strcmp(name
, d
->name
) == 0) {
91 static QTAILQ_HEAD(AudioStateHead
, AudioState
) audio_states
=
92 QTAILQ_HEAD_INITIALIZER(audio_states
);
94 const struct mixeng_volume nominal_volume
= {
105 static bool legacy_config
= true;
107 int audio_bug (const char *funcname
, int cond
)
112 AUD_log (NULL
, "A bug was just triggered in %s\n", funcname
);
115 AUD_log (NULL
, "Save all your work and restart without audio\n");
116 AUD_log (NULL
, "I am sorry\n");
118 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 void audio_pcm_hw_clip_out(HWVoiceOut
*hw
, void *pcm_buf
, size_t len
)
553 size_t pos
= hw
->mix_buf
->pos
;
556 st_sample
*src
= hw
->mix_buf
->samples
+ pos
;
557 uint8_t *dst
= advance(pcm_buf
, clipped
* hw
->info
.bytes_per_frame
);
558 size_t samples_till_end_of_buf
= hw
->mix_buf
->size
- pos
;
559 size_t samples_to_clip
= MIN(len
, samples_till_end_of_buf
);
561 hw
->clip(dst
, src
, samples_to_clip
);
563 pos
= (pos
+ samples_to_clip
) % hw
->mix_buf
->size
;
564 len
-= samples_to_clip
;
565 clipped
+= samples_to_clip
;
570 * Soft voice (capture)
572 static size_t audio_pcm_sw_get_rpos_in(SWVoiceIn
*sw
)
574 HWVoiceIn
*hw
= sw
->hw
;
575 ssize_t live
= hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
578 if (audio_bug(__func__
, live
< 0 || live
> hw
->conv_buf
->size
)) {
579 dolog("live=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
583 rpos
= hw
->conv_buf
->pos
- live
;
587 return hw
->conv_buf
->size
+ rpos
;
591 static size_t audio_pcm_sw_read(SWVoiceIn
*sw
, void *buf
, size_t size
)
593 HWVoiceIn
*hw
= sw
->hw
;
594 size_t samples
, live
, ret
= 0, swlim
, isamp
, osamp
, rpos
, total
= 0;
595 struct st_sample
*src
, *dst
= sw
->buf
;
597 rpos
= audio_pcm_sw_get_rpos_in(sw
) % hw
->conv_buf
->size
;
599 live
= hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
600 if (audio_bug(__func__
, live
> hw
->conv_buf
->size
)) {
601 dolog("live_in=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
605 samples
= size
/ sw
->info
.bytes_per_frame
;
610 swlim
= (live
* sw
->ratio
) >> 32;
611 swlim
= MIN (swlim
, samples
);
614 src
= hw
->conv_buf
->samples
+ rpos
;
615 if (hw
->conv_buf
->pos
> rpos
) {
616 isamp
= hw
->conv_buf
->pos
- rpos
;
618 isamp
= hw
->conv_buf
->size
- rpos
;
626 st_rate_flow (sw
->rate
, src
, dst
, &isamp
, &osamp
);
628 rpos
= (rpos
+ isamp
) % hw
->conv_buf
->size
;
634 if (hw
->pcm_ops
&& !hw
->pcm_ops
->volume_in
) {
635 mixeng_volume (sw
->buf
, ret
, &sw
->vol
);
638 sw
->clip (buf
, sw
->buf
, ret
);
639 sw
->total_hw_samples_acquired
+= total
;
640 return ret
* sw
->info
.bytes_per_frame
;
644 * Hard voice (playback)
646 static size_t audio_pcm_hw_find_min_out (HWVoiceOut
*hw
, int *nb_livep
)
652 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
653 if (sw
->active
|| !sw
->empty
) {
654 m
= MIN (m
, sw
->total_hw_samples_mixed
);
663 static size_t audio_pcm_hw_get_live_out (HWVoiceOut
*hw
, int *nb_live
)
668 smin
= audio_pcm_hw_find_min_out (hw
, &nb_live1
);
676 if (audio_bug(__func__
, live
> hw
->mix_buf
->size
)) {
677 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hw
->mix_buf
->size
);
686 * Soft voice (playback)
688 static size_t audio_pcm_sw_write(SWVoiceOut
*sw
, void *buf
, size_t size
)
690 size_t hwsamples
, samples
, isamp
, osamp
, wpos
, live
, dead
, left
, swlim
, blck
;
691 size_t ret
= 0, pos
= 0, total
= 0;
697 hwsamples
= sw
->hw
->mix_buf
->size
;
699 live
= sw
->total_hw_samples_mixed
;
700 if (audio_bug(__func__
, live
> hwsamples
)) {
701 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hwsamples
);
705 if (live
== hwsamples
) {
707 dolog ("%s is full %d\n", sw
->name
, live
);
712 wpos
= (sw
->hw
->mix_buf
->pos
+ live
) % hwsamples
;
713 samples
= size
/ sw
->info
.bytes_per_frame
;
715 dead
= hwsamples
- live
;
716 swlim
= ((int64_t) dead
<< 32) / sw
->ratio
;
717 swlim
= MIN (swlim
, samples
);
719 sw
->conv (sw
->buf
, buf
, swlim
);
721 if (sw
->hw
->pcm_ops
&& !sw
->hw
->pcm_ops
->volume_out
) {
722 mixeng_volume (sw
->buf
, swlim
, &sw
->vol
);
727 dead
= hwsamples
- live
;
728 left
= hwsamples
- wpos
;
729 blck
= MIN (dead
, left
);
738 sw
->hw
->mix_buf
->samples
+ wpos
,
746 wpos
= (wpos
+ osamp
) % hwsamples
;
750 sw
->total_hw_samples_mixed
+= total
;
751 sw
->empty
= sw
->total_hw_samples_mixed
== 0;
755 "%s: write size %zu ret %zu total sw %zu\n",
757 size
/ sw
->info
.bytes_per_frame
,
759 sw
->total_hw_samples_mixed
763 return ret
* sw
->info
.bytes_per_frame
;
767 static void audio_pcm_print_info (const char *cap
, struct audio_pcm_info
*info
)
769 dolog("%s: bits %d, sign %d, float %d, freq %d, nchan %d\n",
770 cap
, info
->bits
, info
->is_signed
, info
->is_float
, info
->freq
,
776 #include "audio_template.h"
778 #include "audio_template.h"
783 static int audio_is_timer_needed(AudioState
*s
)
785 HWVoiceIn
*hwi
= NULL
;
786 HWVoiceOut
*hwo
= NULL
;
788 while ((hwo
= audio_pcm_hw_find_any_enabled_out(s
, hwo
))) {
789 if (!hwo
->poll_mode
) {
793 while ((hwi
= audio_pcm_hw_find_any_enabled_in(s
, hwi
))) {
794 if (!hwi
->poll_mode
) {
801 static void audio_reset_timer (AudioState
*s
)
803 if (audio_is_timer_needed(s
)) {
804 timer_mod_anticipate_ns(s
->ts
,
805 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + s
->period_ticks
);
806 if (!s
->timer_running
) {
807 s
->timer_running
= true;
808 s
->timer_last
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
809 trace_audio_timer_start(s
->period_ticks
/ SCALE_MS
);
813 if (s
->timer_running
) {
814 s
->timer_running
= false;
815 trace_audio_timer_stop();
820 static void audio_timer (void *opaque
)
823 AudioState
*s
= opaque
;
825 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
826 diff
= now
- s
->timer_last
;
827 if (diff
> s
->period_ticks
* 3 / 2) {
828 trace_audio_timer_delayed(diff
/ SCALE_MS
);
832 audio_run(s
, "timer");
833 audio_reset_timer(s
);
839 size_t AUD_write(SWVoiceOut
*sw
, void *buf
, size_t size
)
844 /* XXX: Consider options */
850 dolog ("Writing to disabled voice %s\n", SW_NAME (sw
));
854 if (audio_get_pdo_out(hw
->s
->dev
)->mixing_engine
) {
855 return audio_pcm_sw_write(sw
, buf
, size
);
857 return hw
->pcm_ops
->write(hw
, buf
, size
);
861 size_t AUD_read(SWVoiceIn
*sw
, void *buf
, size_t size
)
866 /* XXX: Consider options */
872 dolog ("Reading from disabled voice %s\n", SW_NAME (sw
));
876 if (audio_get_pdo_in(hw
->s
->dev
)->mixing_engine
) {
877 return audio_pcm_sw_read(sw
, buf
, size
);
879 return hw
->pcm_ops
->read(hw
, buf
, size
);
883 int AUD_get_buffer_size_out(SWVoiceOut
*sw
)
885 return sw
->hw
->samples
* sw
->hw
->info
.bytes_per_frame
;
888 void AUD_set_active_out (SWVoiceOut
*sw
, int on
)
897 if (sw
->active
!= on
) {
898 AudioState
*s
= sw
->s
;
903 hw
->pending_disable
= 0;
907 if (hw
->pcm_ops
->enable_out
) {
908 hw
->pcm_ops
->enable_out(hw
, true);
910 audio_reset_timer (s
);
917 for (temp_sw
= hw
->sw_head
.lh_first
; temp_sw
;
918 temp_sw
= temp_sw
->entries
.le_next
) {
919 nb_active
+= temp_sw
->active
!= 0;
922 hw
->pending_disable
= nb_active
== 1;
926 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
927 sc
->sw
.active
= hw
->enabled
;
929 audio_capture_maybe_changed (sc
->cap
, 1);
936 void AUD_set_active_in (SWVoiceIn
*sw
, int on
)
945 if (sw
->active
!= on
) {
946 AudioState
*s
= sw
->s
;
953 if (hw
->pcm_ops
->enable_in
) {
954 hw
->pcm_ops
->enable_in(hw
, true);
956 audio_reset_timer (s
);
959 sw
->total_hw_samples_acquired
= hw
->total_samples_captured
;
964 for (temp_sw
= hw
->sw_head
.lh_first
; temp_sw
;
965 temp_sw
= temp_sw
->entries
.le_next
) {
966 nb_active
+= temp_sw
->active
!= 0;
969 if (nb_active
== 1) {
971 if (hw
->pcm_ops
->enable_in
) {
972 hw
->pcm_ops
->enable_in(hw
, false);
981 static size_t audio_get_avail (SWVoiceIn
*sw
)
989 live
= sw
->hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
990 if (audio_bug(__func__
, live
> sw
->hw
->conv_buf
->size
)) {
991 dolog("live=%zu sw->hw->conv_buf->size=%zu\n", live
,
992 sw
->hw
->conv_buf
->size
);
997 "%s: get_avail live %d ret %" PRId64
"\n",
999 live
, (((int64_t) live
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
1002 return (((int64_t) live
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
;
1005 static size_t audio_get_free(SWVoiceOut
*sw
)
1013 live
= sw
->total_hw_samples_mixed
;
1015 if (audio_bug(__func__
, live
> sw
->hw
->mix_buf
->size
)) {
1016 dolog("live=%zu sw->hw->mix_buf->size=%zu\n", live
,
1017 sw
->hw
->mix_buf
->size
);
1021 dead
= sw
->hw
->mix_buf
->size
- live
;
1024 dolog ("%s: get_free live %d dead %d ret %" PRId64
"\n",
1026 live
, dead
, (((int64_t) dead
<< 32) / sw
->ratio
) *
1027 sw
->info
.bytes_per_frame
);
1030 return (((int64_t) dead
<< 32) / sw
->ratio
) * sw
->info
.bytes_per_frame
;
1033 static void audio_capture_mix_and_clear(HWVoiceOut
*hw
, size_t rpos
,
1041 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1042 SWVoiceOut
*sw
= &sc
->sw
;
1047 size_t till_end_of_hw
= hw
->mix_buf
->size
- rpos2
;
1048 size_t to_write
= MIN(till_end_of_hw
, n
);
1049 size_t bytes
= to_write
* hw
->info
.bytes_per_frame
;
1052 sw
->buf
= hw
->mix_buf
->samples
+ rpos2
;
1053 written
= audio_pcm_sw_write (sw
, NULL
, bytes
);
1054 if (written
- bytes
) {
1055 dolog("Could not mix %zu bytes into a capture "
1056 "buffer, mixed %zu\n",
1061 rpos2
= (rpos2
+ to_write
) % hw
->mix_buf
->size
;
1066 n
= MIN(samples
, hw
->mix_buf
->size
- rpos
);
1067 mixeng_clear(hw
->mix_buf
->samples
+ rpos
, n
);
1068 mixeng_clear(hw
->mix_buf
->samples
, samples
- n
);
1071 static size_t audio_pcm_hw_run_out(HWVoiceOut
*hw
, size_t live
)
1076 size_t size
= live
* hw
->info
.bytes_per_frame
;
1078 void *buf
= hw
->pcm_ops
->get_buffer_out(hw
, &size
);
1084 decr
= MIN(size
/ hw
->info
.bytes_per_frame
, live
);
1086 audio_pcm_hw_clip_out(hw
, buf
, decr
);
1088 proc
= hw
->pcm_ops
->put_buffer_out(hw
, buf
,
1089 decr
* hw
->info
.bytes_per_frame
) /
1090 hw
->info
.bytes_per_frame
;
1094 hw
->mix_buf
->pos
= (hw
->mix_buf
->pos
+ proc
) % hw
->mix_buf
->size
;
1096 if (proc
== 0 || proc
< decr
) {
1101 if (hw
->pcm_ops
->run_buffer_out
) {
1102 hw
->pcm_ops
->run_buffer_out(hw
);
1108 static void audio_run_out (AudioState
*s
)
1110 HWVoiceOut
*hw
= NULL
;
1113 if (!audio_get_pdo_out(s
->dev
)->mixing_engine
) {
1114 while ((hw
= audio_pcm_hw_find_any_enabled_out(s
, hw
))) {
1115 /* there is exactly 1 sw for each hw with no mixeng */
1116 sw
= hw
->sw_head
.lh_first
;
1118 if (hw
->pending_disable
) {
1120 hw
->pending_disable
= 0;
1121 if (hw
->pcm_ops
->enable_out
) {
1122 hw
->pcm_ops
->enable_out(hw
, false);
1127 sw
->callback
.fn(sw
->callback
.opaque
, INT_MAX
);
1133 while ((hw
= audio_pcm_hw_find_any_enabled_out(s
, hw
))) {
1134 size_t played
, live
, prev_rpos
, free
;
1137 live
= audio_pcm_hw_get_live_out (hw
, &nb_live
);
1142 if (audio_bug(__func__
, live
> hw
->mix_buf
->size
)) {
1143 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hw
->mix_buf
->size
);
1147 if (hw
->pending_disable
&& !nb_live
) {
1150 dolog ("Disabling voice\n");
1153 hw
->pending_disable
= 0;
1154 if (hw
->pcm_ops
->enable_out
) {
1155 hw
->pcm_ops
->enable_out(hw
, false);
1157 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1159 audio_recalc_and_notify_capture (sc
->cap
);
1165 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1167 free
= audio_get_free (sw
);
1169 sw
->callback
.fn (sw
->callback
.opaque
, free
);
1173 if (hw
->pcm_ops
->run_buffer_out
) {
1174 hw
->pcm_ops
->run_buffer_out(hw
);
1179 prev_rpos
= hw
->mix_buf
->pos
;
1180 played
= audio_pcm_hw_run_out(hw
, live
);
1181 replay_audio_out(&played
);
1182 if (audio_bug(__func__
, hw
->mix_buf
->pos
>= hw
->mix_buf
->size
)) {
1183 dolog("hw->mix_buf->pos=%zu hw->mix_buf->size=%zu played=%zu\n",
1184 hw
->mix_buf
->pos
, hw
->mix_buf
->size
, played
);
1185 hw
->mix_buf
->pos
= 0;
1189 dolog("played=%zu\n", played
);
1193 hw
->ts_helper
+= played
;
1194 audio_capture_mix_and_clear (hw
, prev_rpos
, played
);
1197 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1198 if (!sw
->active
&& sw
->empty
) {
1202 if (audio_bug(__func__
, played
> sw
->total_hw_samples_mixed
)) {
1203 dolog("played=%zu sw->total_hw_samples_mixed=%zu\n",
1204 played
, sw
->total_hw_samples_mixed
);
1205 played
= sw
->total_hw_samples_mixed
;
1208 sw
->total_hw_samples_mixed
-= played
;
1210 if (!sw
->total_hw_samples_mixed
) {
1215 free
= audio_get_free (sw
);
1217 sw
->callback
.fn (sw
->callback
.opaque
, free
);
1224 static size_t audio_pcm_hw_run_in(HWVoiceIn
*hw
, size_t samples
)
1227 STSampleBuffer
*conv_buf
= hw
->conv_buf
;
1229 if (hw
->pcm_ops
->run_buffer_in
) {
1230 hw
->pcm_ops
->run_buffer_in(hw
);
1235 size_t size
= samples
* hw
->info
.bytes_per_frame
;
1236 void *buf
= hw
->pcm_ops
->get_buffer_in(hw
, &size
);
1238 assert(size
% hw
->info
.bytes_per_frame
== 0);
1243 proc
= MIN(size
/ hw
->info
.bytes_per_frame
,
1244 conv_buf
->size
- conv_buf
->pos
);
1246 hw
->conv(conv_buf
->samples
+ conv_buf
->pos
, buf
, proc
);
1247 conv_buf
->pos
= (conv_buf
->pos
+ proc
) % conv_buf
->size
;
1251 hw
->pcm_ops
->put_buffer_in(hw
, buf
, proc
* hw
->info
.bytes_per_frame
);
1257 static void audio_run_in (AudioState
*s
)
1259 HWVoiceIn
*hw
= NULL
;
1261 if (!audio_get_pdo_in(s
->dev
)->mixing_engine
) {
1262 while ((hw
= audio_pcm_hw_find_any_enabled_in(s
, hw
))) {
1263 /* there is exactly 1 sw for each hw with no mixeng */
1264 SWVoiceIn
*sw
= hw
->sw_head
.lh_first
;
1266 sw
->callback
.fn(sw
->callback
.opaque
, INT_MAX
);
1272 while ((hw
= audio_pcm_hw_find_any_enabled_in(s
, hw
))) {
1274 size_t captured
= 0, min
;
1276 if (replay_mode
!= REPLAY_MODE_PLAY
) {
1277 captured
= audio_pcm_hw_run_in(
1278 hw
, hw
->conv_buf
->size
- audio_pcm_hw_get_live_in(hw
));
1280 replay_audio_in(&captured
, hw
->conv_buf
->samples
, &hw
->conv_buf
->pos
,
1281 hw
->conv_buf
->size
);
1283 min
= audio_pcm_hw_find_min_in (hw
);
1284 hw
->total_samples_captured
+= captured
- min
;
1285 hw
->ts_helper
+= captured
;
1287 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1288 sw
->total_hw_samples_acquired
-= min
;
1293 avail
= audio_get_avail (sw
);
1295 sw
->callback
.fn (sw
->callback
.opaque
, avail
);
1302 static void audio_run_capture (AudioState
*s
)
1304 CaptureVoiceOut
*cap
;
1306 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
1307 size_t live
, rpos
, captured
;
1308 HWVoiceOut
*hw
= &cap
->hw
;
1311 captured
= live
= audio_pcm_hw_get_live_out (hw
, NULL
);
1312 rpos
= hw
->mix_buf
->pos
;
1314 size_t left
= hw
->mix_buf
->size
- rpos
;
1315 size_t to_capture
= MIN(live
, left
);
1316 struct st_sample
*src
;
1317 struct capture_callback
*cb
;
1319 src
= hw
->mix_buf
->samples
+ rpos
;
1320 hw
->clip (cap
->buf
, src
, to_capture
);
1321 mixeng_clear (src
, to_capture
);
1323 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1324 cb
->ops
.capture (cb
->opaque
, cap
->buf
,
1325 to_capture
* hw
->info
.bytes_per_frame
);
1327 rpos
= (rpos
+ to_capture
) % hw
->mix_buf
->size
;
1330 hw
->mix_buf
->pos
= rpos
;
1332 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1333 if (!sw
->active
&& sw
->empty
) {
1337 if (audio_bug(__func__
, captured
> sw
->total_hw_samples_mixed
)) {
1338 dolog("captured=%zu sw->total_hw_samples_mixed=%zu\n",
1339 captured
, sw
->total_hw_samples_mixed
);
1340 captured
= sw
->total_hw_samples_mixed
;
1343 sw
->total_hw_samples_mixed
-= captured
;
1344 sw
->empty
= sw
->total_hw_samples_mixed
== 0;
1349 void audio_run(AudioState
*s
, const char *msg
)
1353 audio_run_capture(s
);
1357 static double prevtime
;
1361 if (gettimeofday (&tv
, NULL
)) {
1362 perror ("audio_run: gettimeofday");
1366 currtime
= tv
.tv_sec
+ tv
.tv_usec
* 1e-6;
1367 dolog ("Elapsed since last %s: %f\n", msg
, currtime
- prevtime
);
1368 prevtime
= currtime
;
1373 void audio_generic_run_buffer_in(HWVoiceIn
*hw
)
1375 if (unlikely(!hw
->buf_emul
)) {
1376 hw
->size_emul
= hw
->samples
* hw
->info
.bytes_per_frame
;
1377 hw
->buf_emul
= g_malloc(hw
->size_emul
);
1378 hw
->pos_emul
= hw
->pending_emul
= 0;
1381 while (hw
->pending_emul
< hw
->size_emul
) {
1382 size_t read_len
= MIN(hw
->size_emul
- hw
->pos_emul
,
1383 hw
->size_emul
- hw
->pending_emul
);
1384 size_t read
= hw
->pcm_ops
->read(hw
, hw
->buf_emul
+ hw
->pos_emul
,
1386 hw
->pending_emul
+= read
;
1387 hw
->pos_emul
= (hw
->pos_emul
+ read
) % hw
->size_emul
;
1388 if (read
< read_len
) {
1394 void *audio_generic_get_buffer_in(HWVoiceIn
*hw
, size_t *size
)
1396 ssize_t start
= (ssize_t
)hw
->pos_emul
- hw
->pending_emul
;
1399 start
+= hw
->size_emul
;
1401 assert(start
>= 0 && start
< hw
->size_emul
);
1403 *size
= MIN(*size
, hw
->pending_emul
);
1404 *size
= MIN(*size
, hw
->size_emul
- start
);
1405 return hw
->buf_emul
+ start
;
1408 void audio_generic_put_buffer_in(HWVoiceIn
*hw
, void *buf
, size_t size
)
1410 assert(size
<= hw
->pending_emul
);
1411 hw
->pending_emul
-= size
;
1414 void audio_generic_run_buffer_out(HWVoiceOut
*hw
)
1416 while (hw
->pending_emul
) {
1417 size_t write_len
, written
;
1418 ssize_t start
= ((ssize_t
) hw
->pos_emul
) - hw
->pending_emul
;
1421 start
+= hw
->size_emul
;
1423 assert(start
>= 0 && start
< hw
->size_emul
);
1425 write_len
= MIN(hw
->pending_emul
, hw
->size_emul
- start
);
1427 written
= hw
->pcm_ops
->write(hw
, hw
->buf_emul
+ start
, write_len
);
1428 hw
->pending_emul
-= written
;
1430 if (written
< write_len
) {
1436 void *audio_generic_get_buffer_out(HWVoiceOut
*hw
, size_t *size
)
1438 if (unlikely(!hw
->buf_emul
)) {
1439 hw
->size_emul
= hw
->samples
* hw
->info
.bytes_per_frame
;
1440 hw
->buf_emul
= g_malloc(hw
->size_emul
);
1441 hw
->pos_emul
= hw
->pending_emul
= 0;
1444 *size
= MIN(hw
->size_emul
- hw
->pending_emul
,
1445 hw
->size_emul
- hw
->pos_emul
);
1446 return hw
->buf_emul
+ hw
->pos_emul
;
1449 size_t audio_generic_put_buffer_out(HWVoiceOut
*hw
, void *buf
, size_t size
)
1451 assert(buf
== hw
->buf_emul
+ hw
->pos_emul
&&
1452 size
+ hw
->pending_emul
<= hw
->size_emul
);
1454 hw
->pending_emul
+= size
;
1455 hw
->pos_emul
= (hw
->pos_emul
+ size
) % hw
->size_emul
;
1460 size_t audio_generic_write(HWVoiceOut
*hw
, void *buf
, size_t size
)
1464 while (total
< size
) {
1465 size_t dst_size
= size
- total
;
1466 size_t copy_size
, proc
;
1467 void *dst
= hw
->pcm_ops
->get_buffer_out(hw
, &dst_size
);
1469 if (dst_size
== 0) {
1473 copy_size
= MIN(size
- total
, dst_size
);
1475 memcpy(dst
, (char *)buf
+ total
, copy_size
);
1477 proc
= hw
->pcm_ops
->put_buffer_out(hw
, dst
, copy_size
);
1480 if (proc
== 0 || proc
< copy_size
) {
1485 if (hw
->pcm_ops
->run_buffer_out
) {
1486 hw
->pcm_ops
->run_buffer_out(hw
);
1492 size_t audio_generic_read(HWVoiceIn
*hw
, void *buf
, size_t size
)
1496 if (hw
->pcm_ops
->run_buffer_in
) {
1497 hw
->pcm_ops
->run_buffer_in(hw
);
1500 while (total
< size
) {
1501 size_t src_size
= size
- total
;
1502 void *src
= hw
->pcm_ops
->get_buffer_in(hw
, &src_size
);
1504 if (src_size
== 0) {
1508 memcpy((char *)buf
+ total
, src
, src_size
);
1509 hw
->pcm_ops
->put_buffer_in(hw
, src
, src_size
);
1516 static int audio_driver_init(AudioState
*s
, struct audio_driver
*drv
,
1517 bool msg
, Audiodev
*dev
)
1519 s
->drv_opaque
= drv
->init(dev
);
1521 if (s
->drv_opaque
) {
1522 if (!drv
->pcm_ops
->get_buffer_in
) {
1523 drv
->pcm_ops
->get_buffer_in
= audio_generic_get_buffer_in
;
1524 drv
->pcm_ops
->put_buffer_in
= audio_generic_put_buffer_in
;
1526 if (!drv
->pcm_ops
->get_buffer_out
) {
1527 drv
->pcm_ops
->get_buffer_out
= audio_generic_get_buffer_out
;
1528 drv
->pcm_ops
->put_buffer_out
= audio_generic_put_buffer_out
;
1531 audio_init_nb_voices_out(s
, drv
);
1532 audio_init_nb_voices_in(s
, drv
);
1537 dolog("Could not init `%s' audio driver\n", drv
->name
);
1543 static void audio_vm_change_state_handler (void *opaque
, bool running
,
1546 AudioState
*s
= opaque
;
1547 HWVoiceOut
*hwo
= NULL
;
1548 HWVoiceIn
*hwi
= NULL
;
1550 s
->vm_running
= running
;
1551 while ((hwo
= audio_pcm_hw_find_any_enabled_out(s
, hwo
))) {
1552 if (hwo
->pcm_ops
->enable_out
) {
1553 hwo
->pcm_ops
->enable_out(hwo
, running
);
1557 while ((hwi
= audio_pcm_hw_find_any_enabled_in(s
, hwi
))) {
1558 if (hwi
->pcm_ops
->enable_in
) {
1559 hwi
->pcm_ops
->enable_in(hwi
, running
);
1562 audio_reset_timer (s
);
1565 static void free_audio_state(AudioState
*s
)
1567 HWVoiceOut
*hwo
, *hwon
;
1568 HWVoiceIn
*hwi
, *hwin
;
1570 QLIST_FOREACH_SAFE(hwo
, &s
->hw_head_out
, entries
, hwon
) {
1573 if (hwo
->enabled
&& hwo
->pcm_ops
->enable_out
) {
1574 hwo
->pcm_ops
->enable_out(hwo
, false);
1576 hwo
->pcm_ops
->fini_out (hwo
);
1578 for (sc
= hwo
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1579 CaptureVoiceOut
*cap
= sc
->cap
;
1580 struct capture_callback
*cb
;
1582 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1583 cb
->ops
.destroy (cb
->opaque
);
1586 QLIST_REMOVE(hwo
, entries
);
1589 QLIST_FOREACH_SAFE(hwi
, &s
->hw_head_in
, entries
, hwin
) {
1590 if (hwi
->enabled
&& hwi
->pcm_ops
->enable_in
) {
1591 hwi
->pcm_ops
->enable_in(hwi
, false);
1593 hwi
->pcm_ops
->fini_in (hwi
);
1594 QLIST_REMOVE(hwi
, entries
);
1598 s
->drv
->fini (s
->drv_opaque
);
1603 qapi_free_Audiodev(s
->dev
);
1615 void audio_cleanup(void)
1617 while (!QTAILQ_EMPTY(&audio_states
)) {
1618 AudioState
*s
= QTAILQ_FIRST(&audio_states
);
1619 QTAILQ_REMOVE(&audio_states
, s
, list
);
1620 free_audio_state(s
);
1624 static const VMStateDescription vmstate_audio
= {
1627 .minimum_version_id
= 1,
1628 .fields
= (VMStateField
[]) {
1629 VMSTATE_END_OF_LIST()
1633 static void audio_validate_opts(Audiodev
*dev
, Error
**errp
);
1635 static AudiodevListEntry
*audiodev_find(
1636 AudiodevListHead
*head
, const char *drvname
)
1638 AudiodevListEntry
*e
;
1639 QSIMPLEQ_FOREACH(e
, head
, next
) {
1640 if (strcmp(AudiodevDriver_str(e
->dev
->driver
), drvname
) == 0) {
1649 * if we have dev, this function was called because of an -audiodev argument =>
1650 * initialize a new state with it
1651 * if dev == NULL => legacy implicit initialization, return the already created
1652 * state or create a new one
1654 static AudioState
*audio_init(Audiodev
*dev
, const char *name
)
1656 static bool atexit_registered
;
1659 const char *drvname
= NULL
;
1660 VMChangeStateEntry
*e
;
1662 struct audio_driver
*driver
;
1663 /* silence gcc warning about uninitialized variable */
1664 AudiodevListHead head
= QSIMPLEQ_HEAD_INITIALIZER(head
);
1668 * When using spice allow the spice audio driver being picked
1671 * Temporary hack. Using audio devices without explicit
1672 * audiodev= property is already deprecated. Same goes for
1673 * the -soundhw switch. Once this support gets finally
1674 * removed we can also drop the concept of a default audio
1675 * backend and this can go away.
1677 driver
= audio_driver_lookup("spice");
1679 driver
->can_be_default
= 1;
1684 /* -audiodev option */
1685 legacy_config
= false;
1686 drvname
= AudiodevDriver_str(dev
->driver
);
1687 } else if (!QTAILQ_EMPTY(&audio_states
)) {
1688 if (!legacy_config
) {
1689 dolog("Device %s: audiodev default parameter is deprecated, please "
1690 "specify audiodev=%s\n", name
,
1691 QTAILQ_FIRST(&audio_states
)->dev
->id
);
1693 return QTAILQ_FIRST(&audio_states
);
1695 /* legacy implicit initialization */
1696 head
= audio_handle_legacy_opts();
1698 * In case of legacy initialization, all Audiodevs in the list will have
1699 * the same configuration (except the driver), so it doesn't matter which
1700 * one we chose. We need an Audiodev to set up AudioState before we can
1701 * init a driver. Also note that dev at this point is still in the
1704 dev
= QSIMPLEQ_FIRST(&head
)->dev
;
1705 audio_validate_opts(dev
, &error_abort
);
1708 s
= g_malloc0(sizeof(AudioState
));
1711 QLIST_INIT (&s
->hw_head_out
);
1712 QLIST_INIT (&s
->hw_head_in
);
1713 QLIST_INIT (&s
->cap_head
);
1714 if (!atexit_registered
) {
1715 atexit(audio_cleanup
);
1716 atexit_registered
= true;
1718 QTAILQ_INSERT_TAIL(&audio_states
, s
, list
);
1720 s
->ts
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, audio_timer
, s
);
1722 s
->nb_hw_voices_out
= audio_get_pdo_out(dev
)->voices
;
1723 s
->nb_hw_voices_in
= audio_get_pdo_in(dev
)->voices
;
1725 if (s
->nb_hw_voices_out
<= 0) {
1726 dolog ("Bogus number of playback voices %d, setting to 1\n",
1727 s
->nb_hw_voices_out
);
1728 s
->nb_hw_voices_out
= 1;
1731 if (s
->nb_hw_voices_in
<= 0) {
1732 dolog ("Bogus number of capture voices %d, setting to 0\n",
1733 s
->nb_hw_voices_in
);
1734 s
->nb_hw_voices_in
= 0;
1738 driver
= audio_driver_lookup(drvname
);
1740 done
= !audio_driver_init(s
, driver
, true, dev
);
1742 dolog ("Unknown audio driver `%s'\n", drvname
);
1745 for (i
= 0; audio_prio_list
[i
]; i
++) {
1746 AudiodevListEntry
*e
= audiodev_find(&head
, audio_prio_list
[i
]);
1747 driver
= audio_driver_lookup(audio_prio_list
[i
]);
1750 s
->dev
= dev
= e
->dev
;
1751 audio_validate_opts(dev
, &error_abort
);
1752 done
= !audio_driver_init(s
, driver
, false, dev
);
1760 audio_free_audiodev_list(&head
);
1763 driver
= audio_driver_lookup("none");
1764 done
= !audio_driver_init(s
, driver
, false, dev
);
1766 dolog("warning: Using timer based audio emulation\n");
1769 if (dev
->timer_period
<= 0) {
1770 s
->period_ticks
= 1;
1772 s
->period_ticks
= dev
->timer_period
* (int64_t)SCALE_US
;
1775 e
= qemu_add_vm_change_state_handler (audio_vm_change_state_handler
, s
);
1777 dolog ("warning: Could not register change state handler\n"
1778 "(Audio can continue looping even after stopping the VM)\n");
1781 QLIST_INIT (&s
->card_head
);
1782 vmstate_register (NULL
, 0, &vmstate_audio
, s
);
1786 void audio_free_audiodev_list(AudiodevListHead
*head
)
1788 AudiodevListEntry
*e
;
1789 while ((e
= QSIMPLEQ_FIRST(head
))) {
1790 QSIMPLEQ_REMOVE_HEAD(head
, next
);
1791 qapi_free_Audiodev(e
->dev
);
1796 void AUD_register_card (const char *name
, QEMUSoundCard
*card
)
1799 card
->state
= audio_init(NULL
, name
);
1802 card
->name
= g_strdup (name
);
1803 memset (&card
->entries
, 0, sizeof (card
->entries
));
1804 QLIST_INSERT_HEAD(&card
->state
->card_head
, card
, entries
);
1807 void AUD_remove_card (QEMUSoundCard
*card
)
1809 QLIST_REMOVE (card
, entries
);
1810 g_free (card
->name
);
1814 CaptureVoiceOut
*AUD_add_capture(
1816 struct audsettings
*as
,
1817 struct audio_capture_ops
*ops
,
1821 CaptureVoiceOut
*cap
;
1822 struct capture_callback
*cb
;
1825 if (!legacy_config
) {
1826 dolog("Capturing without setting an audiodev is deprecated\n");
1828 s
= audio_init(NULL
, NULL
);
1831 if (!audio_get_pdo_out(s
->dev
)->mixing_engine
) {
1832 dolog("Can't capture with mixeng disabled\n");
1836 if (audio_validate_settings (as
)) {
1837 dolog ("Invalid settings were passed when trying to add capture\n");
1838 audio_print_settings (as
);
1842 cb
= g_malloc0(sizeof(*cb
));
1844 cb
->opaque
= cb_opaque
;
1846 cap
= audio_pcm_capture_find_specific(s
, as
);
1848 QLIST_INSERT_HEAD (&cap
->cb_head
, cb
, entries
);
1852 CaptureVoiceOut
*cap
;
1854 cap
= g_malloc0(sizeof(*cap
));
1858 QLIST_INIT (&hw
->sw_head
);
1859 QLIST_INIT (&cap
->cb_head
);
1861 /* XXX find a more elegant way */
1862 hw
->samples
= 4096 * 4;
1863 audio_pcm_hw_alloc_resources_out(hw
);
1865 audio_pcm_init_info (&hw
->info
, as
);
1867 cap
->buf
= g_malloc0_n(hw
->mix_buf
->size
, hw
->info
.bytes_per_frame
);
1869 if (hw
->info
.is_float
) {
1870 hw
->clip
= mixeng_clip_float
[hw
->info
.nchannels
== 2];
1872 hw
->clip
= mixeng_clip
1873 [hw
->info
.nchannels
== 2]
1874 [hw
->info
.is_signed
]
1875 [hw
->info
.swap_endianness
]
1876 [audio_bits_to_index(hw
->info
.bits
)];
1879 QLIST_INSERT_HEAD (&s
->cap_head
, cap
, entries
);
1880 QLIST_INSERT_HEAD (&cap
->cb_head
, cb
, entries
);
1882 QLIST_FOREACH(hw
, &s
->hw_head_out
, entries
) {
1883 audio_attach_capture (hw
);
1889 void AUD_del_capture (CaptureVoiceOut
*cap
, void *cb_opaque
)
1891 struct capture_callback
*cb
;
1893 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1894 if (cb
->opaque
== cb_opaque
) {
1895 cb
->ops
.destroy (cb_opaque
);
1896 QLIST_REMOVE (cb
, entries
);
1899 if (!cap
->cb_head
.lh_first
) {
1900 SWVoiceOut
*sw
= cap
->hw
.sw_head
.lh_first
, *sw1
;
1903 SWVoiceCap
*sc
= (SWVoiceCap
*) sw
;
1904 #ifdef DEBUG_CAPTURE
1905 dolog ("freeing %s\n", sw
->name
);
1908 sw1
= sw
->entries
.le_next
;
1910 st_rate_stop (sw
->rate
);
1913 QLIST_REMOVE (sw
, entries
);
1914 QLIST_REMOVE (sc
, entries
);
1918 QLIST_REMOVE (cap
, entries
);
1919 g_free (cap
->hw
.mix_buf
);
1928 void AUD_set_volume_out (SWVoiceOut
*sw
, int mute
, uint8_t lvol
, uint8_t rvol
)
1930 Volume vol
= { .mute
= mute
, .channels
= 2, .vol
= { lvol
, rvol
} };
1931 audio_set_volume_out(sw
, &vol
);
1934 void audio_set_volume_out(SWVoiceOut
*sw
, Volume
*vol
)
1937 HWVoiceOut
*hw
= sw
->hw
;
1939 sw
->vol
.mute
= vol
->mute
;
1940 sw
->vol
.l
= nominal_volume
.l
* vol
->vol
[0] / 255;
1941 sw
->vol
.r
= nominal_volume
.l
* vol
->vol
[vol
->channels
> 1 ? 1 : 0] /
1944 if (hw
->pcm_ops
->volume_out
) {
1945 hw
->pcm_ops
->volume_out(hw
, vol
);
1950 void AUD_set_volume_in (SWVoiceIn
*sw
, int mute
, uint8_t lvol
, uint8_t rvol
)
1952 Volume vol
= { .mute
= mute
, .channels
= 2, .vol
= { lvol
, rvol
} };
1953 audio_set_volume_in(sw
, &vol
);
1956 void audio_set_volume_in(SWVoiceIn
*sw
, Volume
*vol
)
1959 HWVoiceIn
*hw
= sw
->hw
;
1961 sw
->vol
.mute
= vol
->mute
;
1962 sw
->vol
.l
= nominal_volume
.l
* vol
->vol
[0] / 255;
1963 sw
->vol
.r
= nominal_volume
.r
* vol
->vol
[vol
->channels
> 1 ? 1 : 0] /
1966 if (hw
->pcm_ops
->volume_in
) {
1967 hw
->pcm_ops
->volume_in(hw
, vol
);
1972 void audio_create_pdos(Audiodev
*dev
)
1974 switch (dev
->driver
) {
1975 #define CASE(DRIVER, driver, pdo_name) \
1976 case AUDIODEV_DRIVER_##DRIVER: \
1977 if (!dev->u.driver.has_in) { \
1978 dev->u.driver.in = g_malloc0( \
1979 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
1980 dev->u.driver.has_in = true; \
1982 if (!dev->u.driver.has_out) { \
1983 dev->u.driver.out = g_malloc0( \
1984 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
1985 dev->u.driver.has_out = true; \
1990 CASE(ALSA
, alsa
, Alsa
);
1991 CASE(COREAUDIO
, coreaudio
, Coreaudio
);
1992 CASE(DSOUND
, dsound
, );
1993 CASE(JACK
, jack
, Jack
);
1994 CASE(OSS
, oss
, Oss
);
1996 CASE(SDL
, sdl
, Sdl
);
1997 CASE(SPICE
, spice
, );
2000 case AUDIODEV_DRIVER__MAX
:
2005 static void audio_validate_per_direction_opts(
2006 AudiodevPerDirectionOptions
*pdo
, Error
**errp
)
2008 if (!pdo
->has_mixing_engine
) {
2009 pdo
->has_mixing_engine
= true;
2010 pdo
->mixing_engine
= true;
2012 if (!pdo
->has_fixed_settings
) {
2013 pdo
->has_fixed_settings
= true;
2014 pdo
->fixed_settings
= pdo
->mixing_engine
;
2016 if (!pdo
->fixed_settings
&&
2017 (pdo
->has_frequency
|| pdo
->has_channels
|| pdo
->has_format
)) {
2019 "You can't use frequency, channels or format with fixed-settings=off");
2022 if (!pdo
->mixing_engine
&& pdo
->fixed_settings
) {
2023 error_setg(errp
, "You can't use fixed-settings without mixeng");
2027 if (!pdo
->has_frequency
) {
2028 pdo
->has_frequency
= true;
2029 pdo
->frequency
= 44100;
2031 if (!pdo
->has_channels
) {
2032 pdo
->has_channels
= true;
2035 if (!pdo
->has_voices
) {
2036 pdo
->has_voices
= true;
2037 pdo
->voices
= pdo
->mixing_engine
? 1 : INT_MAX
;
2039 if (!pdo
->has_format
) {
2040 pdo
->has_format
= true;
2041 pdo
->format
= AUDIO_FORMAT_S16
;
2045 static void audio_validate_opts(Audiodev
*dev
, Error
**errp
)
2049 audio_create_pdos(dev
);
2051 audio_validate_per_direction_opts(audio_get_pdo_in(dev
), &err
);
2053 error_propagate(errp
, err
);
2057 audio_validate_per_direction_opts(audio_get_pdo_out(dev
), &err
);
2059 error_propagate(errp
, err
);
2063 if (!dev
->has_timer_period
) {
2064 dev
->has_timer_period
= true;
2065 dev
->timer_period
= 10000; /* 100Hz -> 10ms */
2069 void audio_parse_option(const char *opt
)
2071 AudiodevListEntry
*e
;
2072 Audiodev
*dev
= NULL
;
2074 Visitor
*v
= qobject_input_visitor_new_str(opt
, "driver", &error_fatal
);
2075 visit_type_Audiodev(v
, NULL
, &dev
, &error_fatal
);
2078 audio_validate_opts(dev
, &error_fatal
);
2080 e
= g_malloc0(sizeof(AudiodevListEntry
));
2082 QSIMPLEQ_INSERT_TAIL(&audiodevs
, e
, next
);
2085 void audio_init_audiodevs(void)
2087 AudiodevListEntry
*e
;
2089 QSIMPLEQ_FOREACH(e
, &audiodevs
, next
) {
2090 audio_init(e
->dev
, NULL
);
2094 audsettings
audiodev_to_audsettings(AudiodevPerDirectionOptions
*pdo
)
2096 return (audsettings
) {
2097 .freq
= pdo
->frequency
,
2098 .nchannels
= pdo
->channels
,
2100 .endianness
= AUDIO_HOST_ENDIANNESS
,
2104 int audioformat_bytes_per_sample(AudioFormat fmt
)
2107 case AUDIO_FORMAT_U8
:
2108 case AUDIO_FORMAT_S8
:
2111 case AUDIO_FORMAT_U16
:
2112 case AUDIO_FORMAT_S16
:
2115 case AUDIO_FORMAT_U32
:
2116 case AUDIO_FORMAT_S32
:
2117 case AUDIO_FORMAT_F32
:
2120 case AUDIO_FORMAT__MAX
:
2127 /* frames = freq * usec / 1e6 */
2128 int audio_buffer_frames(AudiodevPerDirectionOptions
*pdo
,
2129 audsettings
*as
, int def_usecs
)
2131 uint64_t usecs
= pdo
->has_buffer_length
? pdo
->buffer_length
: def_usecs
;
2132 return (as
->freq
* usecs
+ 500000) / 1000000;
2135 /* samples = channels * frames = channels * freq * usec / 1e6 */
2136 int audio_buffer_samples(AudiodevPerDirectionOptions
*pdo
,
2137 audsettings
*as
, int def_usecs
)
2139 return as
->nchannels
* audio_buffer_frames(pdo
, as
, def_usecs
);
2143 * bytes = bytes_per_sample * samples =
2144 * bytes_per_sample * channels * freq * usec / 1e6
2146 int audio_buffer_bytes(AudiodevPerDirectionOptions
*pdo
,
2147 audsettings
*as
, int def_usecs
)
2149 return audio_buffer_samples(pdo
, as
, def_usecs
) *
2150 audioformat_bytes_per_sample(as
->fmt
);
2153 AudioState
*audio_state_by_name(const char *name
)
2156 QTAILQ_FOREACH(s
, &audio_states
, list
) {
2158 if (strcmp(name
, s
->dev
->id
) == 0) {
2165 const char *audio_get_id(QEMUSoundCard
*card
)
2168 assert(card
->state
->dev
);
2169 return card
->state
->dev
->id
;
2175 void audio_rate_start(RateCtl
*rate
)
2177 memset(rate
, 0, sizeof(RateCtl
));
2178 rate
->start_ticks
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2181 size_t audio_rate_get_bytes(struct audio_pcm_info
*info
, RateCtl
*rate
,
2190 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2191 ticks
= now
- rate
->start_ticks
;
2192 bytes
= muldiv64(ticks
, info
->bytes_per_second
, NANOSECONDS_PER_SECOND
);
2193 samples
= (bytes
- rate
->bytes_sent
) / info
->bytes_per_frame
;
2194 if (samples
< 0 || samples
> 65536) {
2195 AUD_log(NULL
, "Resetting rate control (%" PRId64
" samples)\n", samples
);
2196 audio_rate_start(rate
);
2200 ret
= MIN(samples
* info
->bytes_per_frame
, bytes_avail
);
2201 rate
->bytes_sent
+= ret
;