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"
39 #define AUDIO_CAP "audio"
40 #include "audio_int.h"
42 /* #define DEBUG_LIVE */
43 /* #define DEBUG_OUT */
44 /* #define DEBUG_CAPTURE */
45 /* #define DEBUG_POLL */
47 #define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown"
50 /* Order of CONFIG_AUDIO_DRIVERS is import.
51 The 1st one is the one used by default, that is the reason
52 that we generate the list.
54 const char *audio_prio_list
[] = {
62 static QLIST_HEAD(, audio_driver
) audio_drivers
;
63 static AudiodevListHead audiodevs
= QSIMPLEQ_HEAD_INITIALIZER(audiodevs
);
65 void audio_driver_register(audio_driver
*drv
)
67 QLIST_INSERT_HEAD(&audio_drivers
, drv
, next
);
70 audio_driver
*audio_driver_lookup(const char *name
)
72 struct audio_driver
*d
;
74 QLIST_FOREACH(d
, &audio_drivers
, next
) {
75 if (strcmp(name
, d
->name
) == 0) {
80 audio_module_load_one(name
);
81 QLIST_FOREACH(d
, &audio_drivers
, next
) {
82 if (strcmp(name
, d
->name
) == 0) {
90 static QTAILQ_HEAD(AudioStateHead
, AudioState
) audio_states
=
91 QTAILQ_HEAD_INITIALIZER(audio_states
);
93 const struct mixeng_volume nominal_volume
= {
104 static bool legacy_config
= true;
106 #ifdef AUDIO_IS_FLAWLESS_AND_NO_CHECKS_ARE_REQURIED
109 int audio_bug (const char *funcname
, int cond
)
114 AUD_log (NULL
, "A bug was just triggered in %s\n", funcname
);
117 AUD_log (NULL
, "Save all your work and restart without audio\n");
118 AUD_log (NULL
, "I am sorry\n");
120 AUD_log (NULL
, "Context:\n");
122 #if defined AUDIO_BREAKPOINT_ON_BUG
123 # if defined HOST_I386
124 # if defined __GNUC__
126 # elif defined _MSC_VER
141 static inline int audio_bits_to_index (int bits
)
154 audio_bug ("bits_to_index", 1);
155 AUD_log (NULL
, "invalid bits %d\n", bits
);
160 void *audio_calloc (const char *funcname
, int nmemb
, size_t size
)
166 cond
= !nmemb
|| !size
;
170 if (audio_bug ("audio_calloc", cond
)) {
171 AUD_log (NULL
, "%s passed invalid arguments to audio_calloc\n",
173 AUD_log (NULL
, "nmemb=%d size=%zu (len=%zu)\n", nmemb
, size
, len
);
177 return g_malloc0 (len
);
180 void AUD_vlog (const char *cap
, const char *fmt
, va_list ap
)
183 fprintf(stderr
, "%s: ", cap
);
186 vfprintf(stderr
, fmt
, ap
);
189 void AUD_log (const char *cap
, const char *fmt
, ...)
194 AUD_vlog (cap
, fmt
, ap
);
198 static void audio_print_settings (struct audsettings
*as
)
200 dolog ("frequency=%d nchannels=%d fmt=", as
->freq
, as
->nchannels
);
203 case AUDIO_FORMAT_S8
:
204 AUD_log (NULL
, "S8");
206 case AUDIO_FORMAT_U8
:
207 AUD_log (NULL
, "U8");
209 case AUDIO_FORMAT_S16
:
210 AUD_log (NULL
, "S16");
212 case AUDIO_FORMAT_U16
:
213 AUD_log (NULL
, "U16");
215 case AUDIO_FORMAT_S32
:
216 AUD_log (NULL
, "S32");
218 case AUDIO_FORMAT_U32
:
219 AUD_log (NULL
, "U32");
222 AUD_log (NULL
, "invalid(%d)", as
->fmt
);
226 AUD_log (NULL
, " endianness=");
227 switch (as
->endianness
) {
229 AUD_log (NULL
, "little");
232 AUD_log (NULL
, "big");
235 AUD_log (NULL
, "invalid");
238 AUD_log (NULL
, "\n");
241 static int audio_validate_settings (struct audsettings
*as
)
245 invalid
= as
->nchannels
< 1;
246 invalid
|= as
->endianness
!= 0 && as
->endianness
!= 1;
249 case AUDIO_FORMAT_S8
:
250 case AUDIO_FORMAT_U8
:
251 case AUDIO_FORMAT_S16
:
252 case AUDIO_FORMAT_U16
:
253 case AUDIO_FORMAT_S32
:
254 case AUDIO_FORMAT_U32
:
261 invalid
|= as
->freq
<= 0;
262 return invalid
? -1 : 0;
265 static int audio_pcm_info_eq (struct audio_pcm_info
*info
, struct audsettings
*as
)
267 int bits
= 8, sign
= 0;
270 case AUDIO_FORMAT_S8
:
273 case AUDIO_FORMAT_U8
:
276 case AUDIO_FORMAT_S16
:
279 case AUDIO_FORMAT_U16
:
283 case AUDIO_FORMAT_S32
:
286 case AUDIO_FORMAT_U32
:
293 return info
->freq
== as
->freq
294 && info
->nchannels
== as
->nchannels
295 && info
->sign
== sign
296 && info
->bits
== bits
297 && info
->swap_endianness
== (as
->endianness
!= AUDIO_HOST_ENDIANNESS
);
300 void audio_pcm_init_info (struct audio_pcm_info
*info
, struct audsettings
*as
)
302 int bits
= 8, sign
= 0, mul
;
305 case AUDIO_FORMAT_S8
:
308 case AUDIO_FORMAT_U8
:
312 case AUDIO_FORMAT_S16
:
315 case AUDIO_FORMAT_U16
:
320 case AUDIO_FORMAT_S32
:
323 case AUDIO_FORMAT_U32
:
332 info
->freq
= as
->freq
;
335 info
->nchannels
= as
->nchannels
;
336 info
->bytes_per_frame
= as
->nchannels
* mul
;
337 info
->bytes_per_second
= info
->freq
* info
->bytes_per_frame
;
338 info
->swap_endianness
= (as
->endianness
!= AUDIO_HOST_ENDIANNESS
);
341 void audio_pcm_info_clear_buf (struct audio_pcm_info
*info
, void *buf
, int len
)
348 memset(buf
, 0x00, len
* info
->bytes_per_frame
);
351 switch (info
->bits
) {
353 memset(buf
, 0x80, len
* info
->bytes_per_frame
);
362 if (info
->swap_endianness
) {
366 for (i
= 0; i
< len
* info
->nchannels
; i
++) {
376 int32_t s
= INT32_MAX
;
378 if (info
->swap_endianness
) {
382 for (i
= 0; i
< len
* info
->nchannels
; i
++) {
389 AUD_log (NULL
, "audio_pcm_info_clear_buf: invalid bits %d\n",
399 static void noop_conv (struct st_sample
*dst
, const void *src
, int samples
)
406 static CaptureVoiceOut
*audio_pcm_capture_find_specific(AudioState
*s
,
407 struct audsettings
*as
)
409 CaptureVoiceOut
*cap
;
411 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
412 if (audio_pcm_info_eq (&cap
->hw
.info
, as
)) {
419 static void audio_notify_capture (CaptureVoiceOut
*cap
, audcnotification_e cmd
)
421 struct capture_callback
*cb
;
424 dolog ("notification %d sent\n", cmd
);
426 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
427 cb
->ops
.notify (cb
->opaque
, cmd
);
431 static void audio_capture_maybe_changed (CaptureVoiceOut
*cap
, int enabled
)
433 if (cap
->hw
.enabled
!= enabled
) {
434 audcnotification_e cmd
;
435 cap
->hw
.enabled
= enabled
;
436 cmd
= enabled
? AUD_CNOTIFY_ENABLE
: AUD_CNOTIFY_DISABLE
;
437 audio_notify_capture (cap
, cmd
);
441 static void audio_recalc_and_notify_capture (CaptureVoiceOut
*cap
)
443 HWVoiceOut
*hw
= &cap
->hw
;
447 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
453 audio_capture_maybe_changed (cap
, enabled
);
456 static void audio_detach_capture (HWVoiceOut
*hw
)
458 SWVoiceCap
*sc
= hw
->cap_head
.lh_first
;
461 SWVoiceCap
*sc1
= sc
->entries
.le_next
;
462 SWVoiceOut
*sw
= &sc
->sw
;
463 CaptureVoiceOut
*cap
= sc
->cap
;
464 int was_active
= sw
->active
;
467 st_rate_stop (sw
->rate
);
471 QLIST_REMOVE (sw
, entries
);
472 QLIST_REMOVE (sc
, entries
);
475 /* We have removed soft voice from the capture:
476 this might have changed the overall status of the capture
477 since this might have been the only active voice */
478 audio_recalc_and_notify_capture (cap
);
484 static int audio_attach_capture (HWVoiceOut
*hw
)
486 AudioState
*s
= hw
->s
;
487 CaptureVoiceOut
*cap
;
489 audio_detach_capture (hw
);
490 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
493 HWVoiceOut
*hw_cap
= &cap
->hw
;
495 sc
= g_malloc0(sizeof(*sc
));
502 sw
->active
= hw
->enabled
;
503 sw
->conv
= noop_conv
;
504 sw
->ratio
= ((int64_t) hw_cap
->info
.freq
<< 32) / sw
->info
.freq
;
505 sw
->vol
= nominal_volume
;
506 sw
->rate
= st_rate_start (sw
->info
.freq
, hw_cap
->info
.freq
);
508 dolog ("Could not start rate conversion for `%s'\n", SW_NAME (sw
));
512 QLIST_INSERT_HEAD (&hw_cap
->sw_head
, sw
, entries
);
513 QLIST_INSERT_HEAD (&hw
->cap_head
, sc
, entries
);
515 sw
->name
= g_strdup_printf ("for %p %d,%d,%d",
516 hw
, sw
->info
.freq
, sw
->info
.bits
,
518 dolog ("Added %s active = %d\n", sw
->name
, sw
->active
);
521 audio_capture_maybe_changed (cap
, 1);
528 * Hard voice (capture)
530 static size_t audio_pcm_hw_find_min_in (HWVoiceIn
*hw
)
533 size_t m
= hw
->total_samples_captured
;
535 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
537 m
= MIN (m
, sw
->total_hw_samples_acquired
);
543 static size_t audio_pcm_hw_get_live_in(HWVoiceIn
*hw
)
545 size_t live
= hw
->total_samples_captured
- audio_pcm_hw_find_min_in (hw
);
546 if (audio_bug(__func__
, live
> hw
->conv_buf
->size
)) {
547 dolog("live=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
553 static void audio_pcm_hw_clip_out(HWVoiceOut
*hw
, void *pcm_buf
, size_t len
)
556 size_t pos
= hw
->mix_buf
->pos
;
559 st_sample
*src
= hw
->mix_buf
->samples
+ pos
;
560 uint8_t *dst
= advance(pcm_buf
, clipped
* hw
->info
.bytes_per_frame
);
561 size_t samples_till_end_of_buf
= hw
->mix_buf
->size
- pos
;
562 size_t samples_to_clip
= MIN(len
, samples_till_end_of_buf
);
564 hw
->clip(dst
, src
, samples_to_clip
);
566 pos
= (pos
+ samples_to_clip
) % hw
->mix_buf
->size
;
567 len
-= samples_to_clip
;
568 clipped
+= samples_to_clip
;
573 * Soft voice (capture)
575 static size_t audio_pcm_sw_get_rpos_in(SWVoiceIn
*sw
)
577 HWVoiceIn
*hw
= sw
->hw
;
578 ssize_t live
= hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
581 if (audio_bug(__func__
, live
< 0 || live
> hw
->conv_buf
->size
)) {
582 dolog("live=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
586 rpos
= hw
->conv_buf
->pos
- live
;
591 return hw
->conv_buf
->size
+ rpos
;
595 static size_t audio_pcm_sw_read(SWVoiceIn
*sw
, void *buf
, size_t size
)
597 HWVoiceIn
*hw
= sw
->hw
;
598 size_t samples
, live
, ret
= 0, swlim
, isamp
, osamp
, rpos
, total
= 0;
599 struct st_sample
*src
, *dst
= sw
->buf
;
601 rpos
= audio_pcm_sw_get_rpos_in(sw
) % hw
->conv_buf
->size
;
603 live
= hw
->total_samples_captured
- sw
->total_hw_samples_acquired
;
604 if (audio_bug(__func__
, live
> hw
->conv_buf
->size
)) {
605 dolog("live_in=%zu hw->conv_buf->size=%zu\n", live
, hw
->conv_buf
->size
);
609 samples
= size
/ sw
->info
.bytes_per_frame
;
614 swlim
= (live
* sw
->ratio
) >> 32;
615 swlim
= MIN (swlim
, samples
);
618 src
= hw
->conv_buf
->samples
+ rpos
;
619 if (hw
->conv_buf
->pos
> rpos
) {
620 isamp
= hw
->conv_buf
->pos
- rpos
;
622 isamp
= hw
->conv_buf
->size
- rpos
;
630 st_rate_flow (sw
->rate
, src
, dst
, &isamp
, &osamp
);
632 rpos
= (rpos
+ isamp
) % hw
->conv_buf
->size
;
638 if (!hw
->pcm_ops
->volume_in
) {
639 mixeng_volume (sw
->buf
, ret
, &sw
->vol
);
642 sw
->clip (buf
, sw
->buf
, ret
);
643 sw
->total_hw_samples_acquired
+= total
;
644 return ret
* sw
->info
.bytes_per_frame
;
648 * Hard voice (playback)
650 static size_t audio_pcm_hw_find_min_out (HWVoiceOut
*hw
, int *nb_livep
)
656 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
657 if (sw
->active
|| !sw
->empty
) {
658 m
= MIN (m
, sw
->total_hw_samples_mixed
);
667 static size_t audio_pcm_hw_get_live_out (HWVoiceOut
*hw
, int *nb_live
)
672 smin
= audio_pcm_hw_find_min_out (hw
, &nb_live1
);
680 if (audio_bug(__func__
, live
> hw
->mix_buf
->size
)) {
681 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hw
->mix_buf
->size
);
690 * Soft voice (playback)
692 static size_t audio_pcm_sw_write(SWVoiceOut
*sw
, void *buf
, size_t size
)
694 size_t hwsamples
, samples
, isamp
, osamp
, wpos
, live
, dead
, left
, swlim
, blck
;
695 size_t ret
= 0, pos
= 0, total
= 0;
701 hwsamples
= sw
->hw
->mix_buf
->size
;
703 live
= sw
->total_hw_samples_mixed
;
704 if (audio_bug(__func__
, live
> hwsamples
)) {
705 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hwsamples
);
709 if (live
== hwsamples
) {
711 dolog ("%s is full %d\n", sw
->name
, live
);
716 wpos
= (sw
->hw
->mix_buf
->pos
+ live
) % hwsamples
;
717 samples
= size
/ sw
->info
.bytes_per_frame
;
719 dead
= hwsamples
- live
;
720 swlim
= ((int64_t) dead
<< 32) / sw
->ratio
;
721 swlim
= MIN (swlim
, samples
);
723 sw
->conv (sw
->buf
, buf
, swlim
);
725 if (!sw
->hw
->pcm_ops
->volume_out
) {
726 mixeng_volume (sw
->buf
, swlim
, &sw
->vol
);
731 dead
= hwsamples
- live
;
732 left
= hwsamples
- wpos
;
733 blck
= MIN (dead
, left
);
742 sw
->hw
->mix_buf
->samples
+ wpos
,
750 wpos
= (wpos
+ osamp
) % hwsamples
;
754 sw
->total_hw_samples_mixed
+= total
;
755 sw
->empty
= sw
->total_hw_samples_mixed
== 0;
759 "%s: write size %zu ret %zu total sw %zu\n",
761 size
/ sw
->info
.bytes_per_frame
,
763 sw
->total_hw_samples_mixed
767 return ret
* sw
->info
.bytes_per_frame
;
771 static void audio_pcm_print_info (const char *cap
, struct audio_pcm_info
*info
)
773 dolog ("%s: bits %d, sign %d, freq %d, nchan %d\n",
774 cap
, info
->bits
, info
->sign
, info
->freq
, info
->nchannels
);
779 #include "audio_template.h"
781 #include "audio_template.h"
786 static int audio_is_timer_needed(AudioState
*s
)
788 HWVoiceIn
*hwi
= NULL
;
789 HWVoiceOut
*hwo
= NULL
;
791 while ((hwo
= audio_pcm_hw_find_any_enabled_out(s
, hwo
))) {
792 if (!hwo
->poll_mode
) return 1;
794 while ((hwi
= audio_pcm_hw_find_any_enabled_in(s
, hwi
))) {
795 if (!hwi
->poll_mode
) return 1;
800 static void audio_reset_timer (AudioState
*s
)
802 if (audio_is_timer_needed(s
)) {
803 timer_mod_anticipate_ns(s
->ts
,
804 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + s
->period_ticks
);
805 if (!s
->timer_running
) {
806 s
->timer_running
= true;
807 s
->timer_last
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
808 trace_audio_timer_start(s
->period_ticks
/ SCALE_MS
);
812 if (s
->timer_running
) {
813 s
->timer_running
= false;
814 trace_audio_timer_stop();
819 static void audio_timer (void *opaque
)
822 AudioState
*s
= opaque
;
824 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
825 diff
= now
- s
->timer_last
;
826 if (diff
> s
->period_ticks
* 3 / 2) {
827 trace_audio_timer_delayed(diff
/ SCALE_MS
);
831 audio_run(s
, "timer");
832 audio_reset_timer(s
);
838 size_t AUD_write(SWVoiceOut
*sw
, void *buf
, size_t size
)
843 /* XXX: Consider options */
849 dolog ("Writing to disabled voice %s\n", SW_NAME (sw
));
853 if (audio_get_pdo_out(hw
->s
->dev
)->mixing_engine
) {
854 return audio_pcm_sw_write(sw
, buf
, size
);
856 return hw
->pcm_ops
->write(hw
, buf
, size
);
860 size_t AUD_read(SWVoiceIn
*sw
, void *buf
, size_t size
)
865 /* XXX: Consider options */
871 dolog ("Reading from disabled voice %s\n", SW_NAME (sw
));
875 if (audio_get_pdo_in(hw
->s
->dev
)->mixing_engine
) {
876 return audio_pcm_sw_read(sw
, buf
, size
);
878 return hw
->pcm_ops
->read(hw
, buf
, size
);
882 int AUD_get_buffer_size_out (SWVoiceOut
*sw
)
884 return sw
->hw
->mix_buf
->size
* sw
->hw
->info
.bytes_per_frame
;
887 void AUD_set_active_out (SWVoiceOut
*sw
, int on
)
896 if (sw
->active
!= on
) {
897 AudioState
*s
= sw
->s
;
902 hw
->pending_disable
= 0;
906 if (hw
->pcm_ops
->enable_out
) {
907 hw
->pcm_ops
->enable_out(hw
, true);
909 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
;
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 %d 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 %d dead %d 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
, decr
, proc
;
1078 void *buf
= hw
->pcm_ops
->get_buffer_out(hw
, &size
);
1080 /* retrying will likely won't help, drop everything. */
1081 hw
->mix_buf
->pos
= (hw
->mix_buf
->pos
+ live
) % hw
->mix_buf
->size
;
1082 return clipped
+ live
;
1085 decr
= MIN(size
/ hw
->info
.bytes_per_frame
, live
);
1086 audio_pcm_hw_clip_out(hw
, buf
, decr
);
1087 proc
= hw
->pcm_ops
->put_buffer_out(hw
, buf
,
1088 decr
* hw
->info
.bytes_per_frame
) /
1089 hw
->info
.bytes_per_frame
;
1093 hw
->mix_buf
->pos
= (hw
->mix_buf
->pos
+ proc
) % hw
->mix_buf
->size
;
1095 if (proc
== 0 || proc
< decr
) {
1103 static void audio_run_out (AudioState
*s
)
1105 HWVoiceOut
*hw
= NULL
;
1108 if (!audio_get_pdo_out(s
->dev
)->mixing_engine
) {
1109 while ((hw
= audio_pcm_hw_find_any_enabled_out(s
, hw
))) {
1110 /* there is exactly 1 sw for each hw with no mixeng */
1111 sw
= hw
->sw_head
.lh_first
;
1113 if (hw
->pending_disable
) {
1115 hw
->pending_disable
= 0;
1116 if (hw
->pcm_ops
->enable_out
) {
1117 hw
->pcm_ops
->enable_out(hw
, false);
1122 sw
->callback
.fn(sw
->callback
.opaque
, INT_MAX
);
1128 while ((hw
= audio_pcm_hw_find_any_enabled_out(s
, hw
))) {
1129 size_t played
, live
, prev_rpos
, free
;
1130 int nb_live
, cleanup_required
;
1132 live
= audio_pcm_hw_get_live_out (hw
, &nb_live
);
1137 if (audio_bug(__func__
, live
> hw
->mix_buf
->size
)) {
1138 dolog("live=%zu hw->mix_buf->size=%zu\n", live
, hw
->mix_buf
->size
);
1142 if (hw
->pending_disable
&& !nb_live
) {
1145 dolog ("Disabling voice\n");
1148 hw
->pending_disable
= 0;
1149 if (hw
->pcm_ops
->enable_out
) {
1150 hw
->pcm_ops
->enable_out(hw
, false);
1152 for (sc
= hw
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1154 audio_recalc_and_notify_capture (sc
->cap
);
1160 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1162 free
= audio_get_free (sw
);
1164 sw
->callback
.fn (sw
->callback
.opaque
, free
);
1171 prev_rpos
= hw
->mix_buf
->pos
;
1172 played
= audio_pcm_hw_run_out(hw
, live
);
1173 replay_audio_out(&played
);
1174 if (audio_bug(__func__
, hw
->mix_buf
->pos
>= hw
->mix_buf
->size
)) {
1175 dolog("hw->mix_buf->pos=%zu hw->mix_buf->size=%zu played=%zu\n",
1176 hw
->mix_buf
->pos
, hw
->mix_buf
->size
, played
);
1177 hw
->mix_buf
->pos
= 0;
1181 dolog("played=%zu\n", played
);
1185 hw
->ts_helper
+= played
;
1186 audio_capture_mix_and_clear (hw
, prev_rpos
, played
);
1189 cleanup_required
= 0;
1190 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1191 if (!sw
->active
&& sw
->empty
) {
1195 if (audio_bug(__func__
, played
> sw
->total_hw_samples_mixed
)) {
1196 dolog("played=%zu sw->total_hw_samples_mixed=%zu\n",
1197 played
, sw
->total_hw_samples_mixed
);
1198 played
= sw
->total_hw_samples_mixed
;
1201 sw
->total_hw_samples_mixed
-= played
;
1203 if (!sw
->total_hw_samples_mixed
) {
1205 cleanup_required
|= !sw
->active
&& !sw
->callback
.fn
;
1209 free
= audio_get_free (sw
);
1211 sw
->callback
.fn (sw
->callback
.opaque
, free
);
1216 if (cleanup_required
) {
1219 sw
= hw
->sw_head
.lh_first
;
1221 sw1
= sw
->entries
.le_next
;
1222 if (!sw
->active
&& !sw
->callback
.fn
) {
1223 audio_close_out (sw
);
1231 static size_t audio_pcm_hw_run_in(HWVoiceIn
*hw
, size_t samples
)
1234 STSampleBuffer
*conv_buf
= hw
->conv_buf
;
1238 size_t size
= samples
* hw
->info
.bytes_per_frame
;
1239 void *buf
= hw
->pcm_ops
->get_buffer_in(hw
, &size
);
1241 assert(size
% hw
->info
.bytes_per_frame
== 0);
1243 hw
->pcm_ops
->put_buffer_in(hw
, buf
, size
);
1247 proc
= MIN(size
/ hw
->info
.bytes_per_frame
,
1248 conv_buf
->size
- conv_buf
->pos
);
1250 hw
->conv(conv_buf
->samples
+ conv_buf
->pos
, buf
, proc
);
1251 conv_buf
->pos
= (conv_buf
->pos
+ proc
) % conv_buf
->size
;
1255 hw
->pcm_ops
->put_buffer_in(hw
, buf
, proc
* hw
->info
.bytes_per_frame
);
1261 static void audio_run_in (AudioState
*s
)
1263 HWVoiceIn
*hw
= NULL
;
1265 if (!audio_get_pdo_in(s
->dev
)->mixing_engine
) {
1266 while ((hw
= audio_pcm_hw_find_any_enabled_in(s
, hw
))) {
1267 /* there is exactly 1 sw for each hw with no mixeng */
1268 SWVoiceIn
*sw
= hw
->sw_head
.lh_first
;
1270 sw
->callback
.fn(sw
->callback
.opaque
, INT_MAX
);
1276 while ((hw
= audio_pcm_hw_find_any_enabled_in(s
, hw
))) {
1278 size_t captured
= 0, min
;
1280 if (replay_mode
!= REPLAY_MODE_PLAY
) {
1281 captured
= audio_pcm_hw_run_in(
1282 hw
, hw
->conv_buf
->size
- audio_pcm_hw_get_live_in(hw
));
1284 replay_audio_in(&captured
, hw
->conv_buf
->samples
, &hw
->conv_buf
->pos
,
1285 hw
->conv_buf
->size
);
1287 min
= audio_pcm_hw_find_min_in (hw
);
1288 hw
->total_samples_captured
+= captured
- min
;
1289 hw
->ts_helper
+= captured
;
1291 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1292 sw
->total_hw_samples_acquired
-= min
;
1297 avail
= audio_get_avail (sw
);
1299 sw
->callback
.fn (sw
->callback
.opaque
, avail
);
1306 static void audio_run_capture (AudioState
*s
)
1308 CaptureVoiceOut
*cap
;
1310 for (cap
= s
->cap_head
.lh_first
; cap
; cap
= cap
->entries
.le_next
) {
1311 size_t live
, rpos
, captured
;
1312 HWVoiceOut
*hw
= &cap
->hw
;
1315 captured
= live
= audio_pcm_hw_get_live_out (hw
, NULL
);
1316 rpos
= hw
->mix_buf
->pos
;
1318 size_t left
= hw
->mix_buf
->size
- rpos
;
1319 size_t to_capture
= MIN(live
, left
);
1320 struct st_sample
*src
;
1321 struct capture_callback
*cb
;
1323 src
= hw
->mix_buf
->samples
+ rpos
;
1324 hw
->clip (cap
->buf
, src
, to_capture
);
1325 mixeng_clear (src
, to_capture
);
1327 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1328 cb
->ops
.capture (cb
->opaque
, cap
->buf
,
1329 to_capture
* hw
->info
.bytes_per_frame
);
1331 rpos
= (rpos
+ to_capture
) % hw
->mix_buf
->size
;
1334 hw
->mix_buf
->pos
= rpos
;
1336 for (sw
= hw
->sw_head
.lh_first
; sw
; sw
= sw
->entries
.le_next
) {
1337 if (!sw
->active
&& sw
->empty
) {
1341 if (audio_bug(__func__
, captured
> sw
->total_hw_samples_mixed
)) {
1342 dolog("captured=%zu sw->total_hw_samples_mixed=%zu\n",
1343 captured
, sw
->total_hw_samples_mixed
);
1344 captured
= sw
->total_hw_samples_mixed
;
1347 sw
->total_hw_samples_mixed
-= captured
;
1348 sw
->empty
= sw
->total_hw_samples_mixed
== 0;
1353 void audio_run(AudioState
*s
, const char *msg
)
1357 audio_run_capture(s
);
1361 static double prevtime
;
1365 if (gettimeofday (&tv
, NULL
)) {
1366 perror ("audio_run: gettimeofday");
1370 currtime
= tv
.tv_sec
+ tv
.tv_usec
* 1e-6;
1371 dolog ("Elapsed since last %s: %f\n", msg
, currtime
- prevtime
);
1372 prevtime
= currtime
;
1377 void *audio_generic_get_buffer_in(HWVoiceIn
*hw
, size_t *size
)
1381 if (unlikely(!hw
->buf_emul
)) {
1382 size_t calc_size
= hw
->conv_buf
->size
* hw
->info
.bytes_per_frame
;
1383 hw
->buf_emul
= g_malloc(calc_size
);
1384 hw
->size_emul
= calc_size
;
1385 hw
->pos_emul
= hw
->pending_emul
= 0;
1388 while (hw
->pending_emul
< hw
->size_emul
) {
1389 size_t read_len
= MIN(hw
->size_emul
- hw
->pos_emul
,
1390 hw
->size_emul
- hw
->pending_emul
);
1391 size_t read
= hw
->pcm_ops
->read(hw
, hw
->buf_emul
+ hw
->pos_emul
,
1393 hw
->pending_emul
+= read
;
1394 hw
->pos_emul
= (hw
->pos_emul
+ read
) % hw
->size_emul
;
1395 if (read
< read_len
) {
1400 start
= ((ssize_t
) hw
->pos_emul
) - hw
->pending_emul
;
1402 start
+= hw
->size_emul
;
1404 assert(start
>= 0 && start
< hw
->size_emul
);
1406 *size
= MIN(hw
->pending_emul
, hw
->size_emul
- start
);
1407 return hw
->buf_emul
+ start
;
1410 void audio_generic_put_buffer_in(HWVoiceIn
*hw
, void *buf
, size_t size
)
1412 assert(size
<= hw
->pending_emul
);
1413 hw
->pending_emul
-= size
;
1416 void *audio_generic_get_buffer_out(HWVoiceOut
*hw
, size_t *size
)
1418 if (unlikely(!hw
->buf_emul
)) {
1419 size_t calc_size
= hw
->mix_buf
->size
* hw
->info
.bytes_per_frame
;
1421 hw
->buf_emul
= g_malloc(calc_size
);
1422 hw
->size_emul
= calc_size
;
1423 hw
->pos_emul
= hw
->pending_emul
= 0;
1426 *size
= MIN(hw
->size_emul
- hw
->pending_emul
,
1427 hw
->size_emul
- hw
->pos_emul
);
1428 return hw
->buf_emul
+ hw
->pos_emul
;
1431 size_t audio_generic_put_buffer_out_nowrite(HWVoiceOut
*hw
, void *buf
,
1434 assert(buf
== hw
->buf_emul
+ hw
->pos_emul
&&
1435 size
+ hw
->pending_emul
<= hw
->size_emul
);
1437 hw
->pending_emul
+= size
;
1438 hw
->pos_emul
= (hw
->pos_emul
+ size
) % hw
->size_emul
;
1443 size_t audio_generic_put_buffer_out(HWVoiceOut
*hw
, void *buf
, size_t size
)
1445 audio_generic_put_buffer_out_nowrite(hw
, buf
, size
);
1447 while (hw
->pending_emul
) {
1448 size_t write_len
, written
;
1449 ssize_t start
= ((ssize_t
) hw
->pos_emul
) - hw
->pending_emul
;
1451 start
+= hw
->size_emul
;
1453 assert(start
>= 0 && start
< hw
->size_emul
);
1455 write_len
= MIN(hw
->pending_emul
, hw
->size_emul
- start
);
1457 written
= hw
->pcm_ops
->write(hw
, hw
->buf_emul
+ start
, write_len
);
1458 hw
->pending_emul
-= written
;
1460 if (written
< write_len
) {
1466 * fake we have written everything. non-written data remain in pending_emul,
1467 * so we do not have to clip them multiple times
1472 size_t audio_generic_write(HWVoiceOut
*hw
, void *buf
, size_t size
)
1474 size_t dst_size
, copy_size
;
1475 void *dst
= hw
->pcm_ops
->get_buffer_out(hw
, &dst_size
);
1476 copy_size
= MIN(size
, dst_size
);
1478 memcpy(dst
, buf
, copy_size
);
1479 return hw
->pcm_ops
->put_buffer_out(hw
, buf
, copy_size
);
1482 size_t audio_generic_read(HWVoiceIn
*hw
, void *buf
, size_t size
)
1484 size_t dst_size
, copy_size
;
1485 void *dst
= hw
->pcm_ops
->get_buffer_in(hw
, &dst_size
);
1486 copy_size
= MIN(size
, dst_size
);
1488 memcpy(dst
, buf
, copy_size
);
1489 hw
->pcm_ops
->put_buffer_in(hw
, buf
, copy_size
);
1494 static int audio_driver_init(AudioState
*s
, struct audio_driver
*drv
,
1495 bool msg
, Audiodev
*dev
)
1497 s
->drv_opaque
= drv
->init(dev
);
1499 if (s
->drv_opaque
) {
1500 if (!drv
->pcm_ops
->get_buffer_in
) {
1501 drv
->pcm_ops
->get_buffer_in
= audio_generic_get_buffer_in
;
1502 drv
->pcm_ops
->put_buffer_in
= audio_generic_put_buffer_in
;
1504 if (!drv
->pcm_ops
->get_buffer_out
) {
1505 drv
->pcm_ops
->get_buffer_out
= audio_generic_get_buffer_out
;
1506 drv
->pcm_ops
->put_buffer_out
= audio_generic_put_buffer_out
;
1509 audio_init_nb_voices_out(s
, drv
);
1510 audio_init_nb_voices_in(s
, drv
);
1516 dolog("Could not init `%s' audio driver\n", drv
->name
);
1522 static void audio_vm_change_state_handler (void *opaque
, int running
,
1525 AudioState
*s
= opaque
;
1526 HWVoiceOut
*hwo
= NULL
;
1527 HWVoiceIn
*hwi
= NULL
;
1529 s
->vm_running
= running
;
1530 while ((hwo
= audio_pcm_hw_find_any_enabled_out(s
, hwo
))) {
1531 if (hwo
->pcm_ops
->enable_out
) {
1532 hwo
->pcm_ops
->enable_out(hwo
, running
);
1536 while ((hwi
= audio_pcm_hw_find_any_enabled_in(s
, hwi
))) {
1537 if (hwi
->pcm_ops
->enable_in
) {
1538 hwi
->pcm_ops
->enable_in(hwi
, running
);
1541 audio_reset_timer (s
);
1544 static bool is_cleaning_up
;
1546 bool audio_is_cleaning_up(void)
1548 return is_cleaning_up
;
1551 static void free_audio_state(AudioState
*s
)
1553 HWVoiceOut
*hwo
, *hwon
;
1554 HWVoiceIn
*hwi
, *hwin
;
1556 QLIST_FOREACH_SAFE(hwo
, &s
->hw_head_out
, entries
, hwon
) {
1559 if (hwo
->enabled
&& hwo
->pcm_ops
->enable_out
) {
1560 hwo
->pcm_ops
->enable_out(hwo
, false);
1562 hwo
->pcm_ops
->fini_out (hwo
);
1564 for (sc
= hwo
->cap_head
.lh_first
; sc
; sc
= sc
->entries
.le_next
) {
1565 CaptureVoiceOut
*cap
= sc
->cap
;
1566 struct capture_callback
*cb
;
1568 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1569 cb
->ops
.destroy (cb
->opaque
);
1572 QLIST_REMOVE(hwo
, entries
);
1575 QLIST_FOREACH_SAFE(hwi
, &s
->hw_head_in
, entries
, hwin
) {
1576 if (hwi
->enabled
&& hwi
->pcm_ops
->enable_in
) {
1577 hwi
->pcm_ops
->enable_in(hwi
, false);
1579 hwi
->pcm_ops
->fini_in (hwi
);
1580 QLIST_REMOVE(hwi
, entries
);
1584 s
->drv
->fini (s
->drv_opaque
);
1589 qapi_free_Audiodev(s
->dev
);
1601 void audio_cleanup(void)
1603 is_cleaning_up
= true;
1604 while (!QTAILQ_EMPTY(&audio_states
)) {
1605 AudioState
*s
= QTAILQ_FIRST(&audio_states
);
1606 QTAILQ_REMOVE(&audio_states
, s
, list
);
1607 free_audio_state(s
);
1611 static const VMStateDescription vmstate_audio
= {
1614 .minimum_version_id
= 1,
1615 .fields
= (VMStateField
[]) {
1616 VMSTATE_END_OF_LIST()
1620 static void audio_validate_opts(Audiodev
*dev
, Error
**errp
);
1622 static AudiodevListEntry
*audiodev_find(
1623 AudiodevListHead
*head
, const char *drvname
)
1625 AudiodevListEntry
*e
;
1626 QSIMPLEQ_FOREACH(e
, head
, next
) {
1627 if (strcmp(AudiodevDriver_str(e
->dev
->driver
), drvname
) == 0) {
1636 * if we have dev, this function was called because of an -audiodev argument =>
1637 * initialize a new state with it
1638 * if dev == NULL => legacy implicit initialization, return the already created
1639 * state or create a new one
1641 static AudioState
*audio_init(Audiodev
*dev
, const char *name
)
1643 static bool atexit_registered
;
1646 const char *drvname
= NULL
;
1647 VMChangeStateEntry
*e
;
1649 struct audio_driver
*driver
;
1650 /* silence gcc warning about uninitialized variable */
1651 AudiodevListHead head
= QSIMPLEQ_HEAD_INITIALIZER(head
);
1654 /* -audiodev option */
1655 legacy_config
= false;
1656 drvname
= AudiodevDriver_str(dev
->driver
);
1657 } else if (!QTAILQ_EMPTY(&audio_states
)) {
1658 if (!legacy_config
) {
1659 dolog("Device %s: audiodev default parameter is deprecated, please "
1660 "specify audiodev=%s\n", name
,
1661 QTAILQ_FIRST(&audio_states
)->dev
->id
);
1663 return QTAILQ_FIRST(&audio_states
);
1665 /* legacy implicit initialization */
1666 head
= audio_handle_legacy_opts();
1668 * In case of legacy initialization, all Audiodevs in the list will have
1669 * the same configuration (except the driver), so it does't matter which
1670 * one we chose. We need an Audiodev to set up AudioState before we can
1671 * init a driver. Also note that dev at this point is still in the
1674 dev
= QSIMPLEQ_FIRST(&head
)->dev
;
1675 audio_validate_opts(dev
, &error_abort
);
1678 s
= g_malloc0(sizeof(AudioState
));
1681 QLIST_INIT (&s
->hw_head_out
);
1682 QLIST_INIT (&s
->hw_head_in
);
1683 QLIST_INIT (&s
->cap_head
);
1684 if (!atexit_registered
) {
1685 atexit(audio_cleanup
);
1686 atexit_registered
= true;
1688 QTAILQ_INSERT_TAIL(&audio_states
, s
, list
);
1690 s
->ts
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, audio_timer
, s
);
1692 s
->nb_hw_voices_out
= audio_get_pdo_out(dev
)->voices
;
1693 s
->nb_hw_voices_in
= audio_get_pdo_in(dev
)->voices
;
1695 if (s
->nb_hw_voices_out
<= 0) {
1696 dolog ("Bogus number of playback voices %d, setting to 1\n",
1697 s
->nb_hw_voices_out
);
1698 s
->nb_hw_voices_out
= 1;
1701 if (s
->nb_hw_voices_in
<= 0) {
1702 dolog ("Bogus number of capture voices %d, setting to 0\n",
1703 s
->nb_hw_voices_in
);
1704 s
->nb_hw_voices_in
= 0;
1708 driver
= audio_driver_lookup(drvname
);
1710 done
= !audio_driver_init(s
, driver
, true, dev
);
1712 dolog ("Unknown audio driver `%s'\n", drvname
);
1715 for (i
= 0; audio_prio_list
[i
]; i
++) {
1716 AudiodevListEntry
*e
= audiodev_find(&head
, audio_prio_list
[i
]);
1717 driver
= audio_driver_lookup(audio_prio_list
[i
]);
1720 s
->dev
= dev
= e
->dev
;
1721 audio_validate_opts(dev
, &error_abort
);
1722 done
= !audio_driver_init(s
, driver
, false, dev
);
1730 audio_free_audiodev_list(&head
);
1733 driver
= audio_driver_lookup("none");
1734 done
= !audio_driver_init(s
, driver
, false, dev
);
1736 dolog("warning: Using timer based audio emulation\n");
1739 if (dev
->timer_period
<= 0) {
1740 s
->period_ticks
= 1;
1742 s
->period_ticks
= dev
->timer_period
* (int64_t)SCALE_US
;
1745 e
= qemu_add_vm_change_state_handler (audio_vm_change_state_handler
, s
);
1747 dolog ("warning: Could not register change state handler\n"
1748 "(Audio can continue looping even after stopping the VM)\n");
1751 QLIST_INIT (&s
->card_head
);
1752 vmstate_register (NULL
, 0, &vmstate_audio
, s
);
1756 void audio_free_audiodev_list(AudiodevListHead
*head
)
1758 AudiodevListEntry
*e
;
1759 while ((e
= QSIMPLEQ_FIRST(head
))) {
1760 QSIMPLEQ_REMOVE_HEAD(head
, next
);
1761 qapi_free_Audiodev(e
->dev
);
1766 void AUD_register_card (const char *name
, QEMUSoundCard
*card
)
1769 card
->state
= audio_init(NULL
, name
);
1772 card
->name
= g_strdup (name
);
1773 memset (&card
->entries
, 0, sizeof (card
->entries
));
1774 QLIST_INSERT_HEAD(&card
->state
->card_head
, card
, entries
);
1777 void AUD_remove_card (QEMUSoundCard
*card
)
1779 QLIST_REMOVE (card
, entries
);
1780 g_free (card
->name
);
1784 CaptureVoiceOut
*AUD_add_capture(
1786 struct audsettings
*as
,
1787 struct audio_capture_ops
*ops
,
1791 CaptureVoiceOut
*cap
;
1792 struct capture_callback
*cb
;
1795 if (!legacy_config
) {
1796 dolog("Capturing without setting an audiodev is deprecated\n");
1798 s
= audio_init(NULL
, NULL
);
1801 if (!audio_get_pdo_out(s
->dev
)->mixing_engine
) {
1802 dolog("Can't capture with mixeng disabled\n");
1806 if (audio_validate_settings (as
)) {
1807 dolog ("Invalid settings were passed when trying to add capture\n");
1808 audio_print_settings (as
);
1812 cb
= g_malloc0(sizeof(*cb
));
1814 cb
->opaque
= cb_opaque
;
1816 cap
= audio_pcm_capture_find_specific(s
, as
);
1818 QLIST_INSERT_HEAD (&cap
->cb_head
, cb
, entries
);
1823 CaptureVoiceOut
*cap
;
1825 cap
= g_malloc0(sizeof(*cap
));
1829 QLIST_INIT (&hw
->sw_head
);
1830 QLIST_INIT (&cap
->cb_head
);
1832 /* XXX find a more elegant way */
1833 hw
->samples
= 4096 * 4;
1834 audio_pcm_hw_alloc_resources_out(hw
);
1836 audio_pcm_init_info (&hw
->info
, as
);
1838 cap
->buf
= g_malloc0_n(hw
->mix_buf
->size
, hw
->info
.bytes_per_frame
);
1840 hw
->clip
= mixeng_clip
1841 [hw
->info
.nchannels
== 2]
1843 [hw
->info
.swap_endianness
]
1844 [audio_bits_to_index (hw
->info
.bits
)];
1846 QLIST_INSERT_HEAD (&s
->cap_head
, cap
, entries
);
1847 QLIST_INSERT_HEAD (&cap
->cb_head
, cb
, entries
);
1849 QLIST_FOREACH(hw
, &s
->hw_head_out
, entries
) {
1850 audio_attach_capture (hw
);
1856 void AUD_del_capture (CaptureVoiceOut
*cap
, void *cb_opaque
)
1858 struct capture_callback
*cb
;
1860 for (cb
= cap
->cb_head
.lh_first
; cb
; cb
= cb
->entries
.le_next
) {
1861 if (cb
->opaque
== cb_opaque
) {
1862 cb
->ops
.destroy (cb_opaque
);
1863 QLIST_REMOVE (cb
, entries
);
1866 if (!cap
->cb_head
.lh_first
) {
1867 SWVoiceOut
*sw
= cap
->hw
.sw_head
.lh_first
, *sw1
;
1870 SWVoiceCap
*sc
= (SWVoiceCap
*) sw
;
1871 #ifdef DEBUG_CAPTURE
1872 dolog ("freeing %s\n", sw
->name
);
1875 sw1
= sw
->entries
.le_next
;
1877 st_rate_stop (sw
->rate
);
1880 QLIST_REMOVE (sw
, entries
);
1881 QLIST_REMOVE (sc
, entries
);
1885 QLIST_REMOVE (cap
, entries
);
1886 g_free (cap
->hw
.mix_buf
);
1895 void AUD_set_volume_out (SWVoiceOut
*sw
, int mute
, uint8_t lvol
, uint8_t rvol
)
1897 Volume vol
= { .mute
= mute
, .channels
= 2, .vol
= { lvol
, rvol
} };
1898 audio_set_volume_out(sw
, &vol
);
1901 void audio_set_volume_out(SWVoiceOut
*sw
, Volume
*vol
)
1904 HWVoiceOut
*hw
= sw
->hw
;
1906 sw
->vol
.mute
= vol
->mute
;
1907 sw
->vol
.l
= nominal_volume
.l
* vol
->vol
[0] / 255;
1908 sw
->vol
.r
= nominal_volume
.l
* vol
->vol
[vol
->channels
> 1 ? 1 : 0] /
1911 if (hw
->pcm_ops
->volume_out
) {
1912 hw
->pcm_ops
->volume_out(hw
, vol
);
1917 void AUD_set_volume_in (SWVoiceIn
*sw
, int mute
, uint8_t lvol
, uint8_t rvol
)
1919 Volume vol
= { .mute
= mute
, .channels
= 2, .vol
= { lvol
, rvol
} };
1920 audio_set_volume_in(sw
, &vol
);
1923 void audio_set_volume_in(SWVoiceIn
*sw
, Volume
*vol
)
1926 HWVoiceIn
*hw
= sw
->hw
;
1928 sw
->vol
.mute
= vol
->mute
;
1929 sw
->vol
.l
= nominal_volume
.l
* vol
->vol
[0] / 255;
1930 sw
->vol
.r
= nominal_volume
.r
* vol
->vol
[vol
->channels
> 1 ? 1 : 0] /
1933 if (hw
->pcm_ops
->volume_in
) {
1934 hw
->pcm_ops
->volume_in(hw
, vol
);
1939 void audio_create_pdos(Audiodev
*dev
)
1941 switch (dev
->driver
) {
1942 #define CASE(DRIVER, driver, pdo_name) \
1943 case AUDIODEV_DRIVER_##DRIVER: \
1944 if (!dev->u.driver.has_in) { \
1945 dev->u.driver.in = g_malloc0( \
1946 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
1947 dev->u.driver.has_in = true; \
1949 if (!dev->u.driver.has_out) { \
1950 dev->u.driver.out = g_malloc0( \
1951 sizeof(Audiodev##pdo_name##PerDirectionOptions)); \
1952 dev->u.driver.has_out = true; \
1957 CASE(ALSA
, alsa
, Alsa
);
1958 CASE(COREAUDIO
, coreaudio
, Coreaudio
);
1959 CASE(DSOUND
, dsound
, );
1960 CASE(OSS
, oss
, Oss
);
1963 CASE(SPICE
, spice
, );
1966 case AUDIODEV_DRIVER__MAX
:
1971 static void audio_validate_per_direction_opts(
1972 AudiodevPerDirectionOptions
*pdo
, Error
**errp
)
1974 if (!pdo
->has_mixing_engine
) {
1975 pdo
->has_mixing_engine
= true;
1976 pdo
->mixing_engine
= true;
1978 if (!pdo
->has_fixed_settings
) {
1979 pdo
->has_fixed_settings
= true;
1980 pdo
->fixed_settings
= pdo
->mixing_engine
;
1982 if (!pdo
->fixed_settings
&&
1983 (pdo
->has_frequency
|| pdo
->has_channels
|| pdo
->has_format
)) {
1985 "You can't use frequency, channels or format with fixed-settings=off");
1988 if (!pdo
->mixing_engine
&& pdo
->fixed_settings
) {
1989 error_setg(errp
, "You can't use fixed-settings without mixeng");
1993 if (!pdo
->has_frequency
) {
1994 pdo
->has_frequency
= true;
1995 pdo
->frequency
= 44100;
1997 if (!pdo
->has_channels
) {
1998 pdo
->has_channels
= true;
2001 if (!pdo
->has_voices
) {
2002 pdo
->has_voices
= true;
2003 pdo
->voices
= pdo
->mixing_engine
? 1 : INT_MAX
;
2005 if (!pdo
->has_format
) {
2006 pdo
->has_format
= true;
2007 pdo
->format
= AUDIO_FORMAT_S16
;
2011 static void audio_validate_opts(Audiodev
*dev
, Error
**errp
)
2015 audio_create_pdos(dev
);
2017 audio_validate_per_direction_opts(audio_get_pdo_in(dev
), &err
);
2019 error_propagate(errp
, err
);
2023 audio_validate_per_direction_opts(audio_get_pdo_out(dev
), &err
);
2025 error_propagate(errp
, err
);
2029 if (!dev
->has_timer_period
) {
2030 dev
->has_timer_period
= true;
2031 dev
->timer_period
= 10000; /* 100Hz -> 10ms */
2035 void audio_parse_option(const char *opt
)
2037 AudiodevListEntry
*e
;
2038 Audiodev
*dev
= NULL
;
2040 Visitor
*v
= qobject_input_visitor_new_str(opt
, "driver", &error_fatal
);
2041 visit_type_Audiodev(v
, NULL
, &dev
, &error_fatal
);
2044 audio_validate_opts(dev
, &error_fatal
);
2046 e
= g_malloc0(sizeof(AudiodevListEntry
));
2048 QSIMPLEQ_INSERT_TAIL(&audiodevs
, e
, next
);
2051 void audio_init_audiodevs(void)
2053 AudiodevListEntry
*e
;
2055 QSIMPLEQ_FOREACH(e
, &audiodevs
, next
) {
2056 audio_init(e
->dev
, NULL
);
2060 audsettings
audiodev_to_audsettings(AudiodevPerDirectionOptions
*pdo
)
2062 return (audsettings
) {
2063 .freq
= pdo
->frequency
,
2064 .nchannels
= pdo
->channels
,
2066 .endianness
= AUDIO_HOST_ENDIANNESS
,
2070 int audioformat_bytes_per_sample(AudioFormat fmt
)
2073 case AUDIO_FORMAT_U8
:
2074 case AUDIO_FORMAT_S8
:
2077 case AUDIO_FORMAT_U16
:
2078 case AUDIO_FORMAT_S16
:
2081 case AUDIO_FORMAT_U32
:
2082 case AUDIO_FORMAT_S32
:
2085 case AUDIO_FORMAT__MAX
:
2092 /* frames = freq * usec / 1e6 */
2093 int audio_buffer_frames(AudiodevPerDirectionOptions
*pdo
,
2094 audsettings
*as
, int def_usecs
)
2096 uint64_t usecs
= pdo
->has_buffer_length
? pdo
->buffer_length
: def_usecs
;
2097 return (as
->freq
* usecs
+ 500000) / 1000000;
2100 /* samples = channels * frames = channels * freq * usec / 1e6 */
2101 int audio_buffer_samples(AudiodevPerDirectionOptions
*pdo
,
2102 audsettings
*as
, int def_usecs
)
2104 return as
->nchannels
* audio_buffer_frames(pdo
, as
, def_usecs
);
2108 * bytes = bytes_per_sample * samples =
2109 * bytes_per_sample * channels * freq * usec / 1e6
2111 int audio_buffer_bytes(AudiodevPerDirectionOptions
*pdo
,
2112 audsettings
*as
, int def_usecs
)
2114 return audio_buffer_samples(pdo
, as
, def_usecs
) *
2115 audioformat_bytes_per_sample(as
->fmt
);
2118 AudioState
*audio_state_by_name(const char *name
)
2121 QTAILQ_FOREACH(s
, &audio_states
, list
) {
2123 if (strcmp(name
, s
->dev
->id
) == 0) {
2130 const char *audio_get_id(QEMUSoundCard
*card
)
2133 assert(card
->state
->dev
);
2134 return card
->state
->dev
->id
;
2140 void audio_rate_start(RateCtl
*rate
)
2142 memset(rate
, 0, sizeof(RateCtl
));
2143 rate
->start_ticks
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2146 size_t audio_rate_get_bytes(struct audio_pcm_info
*info
, RateCtl
*rate
,
2155 now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
2156 ticks
= now
- rate
->start_ticks
;
2157 bytes
= muldiv64(ticks
, info
->bytes_per_second
, NANOSECONDS_PER_SECOND
);
2158 samples
= (bytes
- rate
->bytes_sent
) / info
->bytes_per_frame
;
2159 if (samples
< 0 || samples
> 65536) {
2160 AUD_log(NULL
, "Resetting rate control (%" PRId64
" samples)\n", samples
);
2161 audio_rate_start(rate
);
2165 ret
= MIN(samples
* info
->bytes_per_frame
, bytes_avail
);
2166 rate
->bytes_sent
+= ret
;