2005-10-30 19:58:22 +01:00
|
|
|
/*
|
|
|
|
* QEMU Audio subsystem header
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005 Vassili Karpov (malc)
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef DAC
|
2005-11-20 17:24:34 +01:00
|
|
|
#define NAME "playback"
|
|
|
|
#define HWBUF hw->mix_buf
|
2005-10-30 19:58:22 +01:00
|
|
|
#define TYPE out
|
2005-11-20 17:24:34 +01:00
|
|
|
#define HW HWVoiceOut
|
|
|
|
#define SW SWVoiceOut
|
2005-10-30 19:58:22 +01:00
|
|
|
#else
|
2005-11-20 17:24:34 +01:00
|
|
|
#define NAME "capture"
|
2005-10-30 19:58:22 +01:00
|
|
|
#define TYPE in
|
2005-11-20 17:24:34 +01:00
|
|
|
#define HW HWVoiceIn
|
|
|
|
#define SW SWVoiceIn
|
|
|
|
#define HWBUF hw->conv_buf
|
2005-10-30 19:58:22 +01:00
|
|
|
#endif
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
static void glue(audio_init_nb_voices_, TYPE)(AudioState *s,
|
2023-09-22 18:36:28 +02:00
|
|
|
struct audio_driver *drv, int min_voices)
|
2005-11-05 19:55:28 +01:00
|
|
|
{
|
2005-11-20 17:24:34 +01:00
|
|
|
int max_voices = glue (drv->max_voices_, TYPE);
|
2023-01-21 10:47:31 +01:00
|
|
|
size_t voice_size = glue(drv->voice_size_, TYPE);
|
2005-11-05 19:55:28 +01:00
|
|
|
|
2023-09-22 18:36:28 +02:00
|
|
|
glue (s->nb_hw_voices_, TYPE) = glue(audio_get_pdo_, TYPE)(s->dev)->voices;
|
2005-11-20 17:24:34 +01:00
|
|
|
if (glue (s->nb_hw_voices_, TYPE) > max_voices) {
|
|
|
|
if (!max_voices) {
|
|
|
|
#ifdef DAC
|
|
|
|
dolog ("Driver `%s' does not support " NAME "\n", drv->name);
|
|
|
|
#endif
|
2021-01-15 02:24:25 +01:00
|
|
|
} else {
|
2005-11-20 17:24:34 +01:00
|
|
|
dolog ("Driver `%s' does not support %d " NAME " voices, max %d\n",
|
|
|
|
drv->name,
|
|
|
|
glue (s->nb_hw_voices_, TYPE),
|
|
|
|
max_voices);
|
|
|
|
}
|
|
|
|
glue (s->nb_hw_voices_, TYPE) = max_voices;
|
2005-11-05 19:55:28 +01:00
|
|
|
}
|
|
|
|
|
2023-09-22 18:36:28 +02:00
|
|
|
if (glue (s->nb_hw_voices_, TYPE) < min_voices) {
|
|
|
|
dolog ("Bogus number of " NAME " voices %d, setting to %d\n",
|
|
|
|
glue (s->nb_hw_voices_, TYPE),
|
|
|
|
min_voices);
|
|
|
|
}
|
|
|
|
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, !voice_size && max_voices)) {
|
2005-11-20 17:24:34 +01:00
|
|
|
dolog ("drv=`%s' voice_size=0 max_voices=%d\n",
|
|
|
|
drv->name, max_voices);
|
2022-09-17 15:16:25 +02:00
|
|
|
glue (s->nb_hw_voices_, TYPE) = 0;
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, voice_size && !max_voices)) {
|
2023-01-21 10:47:31 +01:00
|
|
|
dolog("drv=`%s' voice_size=%zu max_voices=0\n",
|
|
|
|
drv->name, voice_size);
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void glue (audio_pcm_hw_free_resources_, TYPE) (HW *hw)
|
|
|
|
{
|
audio: api for mixeng code free backends
This will make it possible to skip mixeng with audio playback and
recording, allowing us to free ourselves from the limitations of the
current mixeng (stereo, int64 samples only). In this case, HW and SW
voices will be essentially the same, for every SW voice we will create
a HW voice, since we can no longer mix multiple voices together.
Some backends expect us to call a function when we have data ready
write()/read() style, while others provide a buffer and expects us to
directly write/read it, so for optimal performance audio_pcm_ops provide
methods for both cases. Previously backends asked mixeng for more data
in run_out/run_it, now instead mixeng or the frontends will call the
backends, so that's why two sets of functions required. audio.c
contains glue code between the two styles, so backends only ever have to
implement one style and frontends are free to call whichever is more
convenient for them.
Signed-off-by: Kővágó, Zoltán <DirtY.iCE.hu@gmail.com>
Message-id: 15a33c03a62228922d851f7324c52f73cb8d2414.1568927990.git.DirtY.iCE.hu@gmail.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2019-09-19 23:24:09 +02:00
|
|
|
g_free(hw->buf_emul);
|
2023-02-24 20:05:41 +01:00
|
|
|
g_free(HWBUF.buffer);
|
|
|
|
HWBUF.buffer = NULL;
|
|
|
|
HWBUF.size = 0;
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
|
2019-09-19 23:24:20 +02:00
|
|
|
static void glue(audio_pcm_hw_alloc_resources_, TYPE)(HW *hw)
|
2005-11-20 17:24:34 +01:00
|
|
|
{
|
2019-10-13 21:57:59 +02:00
|
|
|
if (glue(audio_get_pdo_, TYPE)(hw->s->dev)->mixing_engine) {
|
|
|
|
size_t samples = hw->samples;
|
|
|
|
if (audio_bug(__func__, samples == 0)) {
|
|
|
|
dolog("Attempted to allocate empty buffer\n");
|
|
|
|
}
|
2005-11-05 19:55:28 +01:00
|
|
|
|
2023-02-24 20:05:41 +01:00
|
|
|
HWBUF.buffer = g_new0(st_sample, samples);
|
|
|
|
HWBUF.size = samples;
|
|
|
|
HWBUF.pos = 0;
|
2019-10-13 21:57:59 +02:00
|
|
|
} else {
|
2023-02-24 20:05:41 +01:00
|
|
|
HWBUF.buffer = NULL;
|
|
|
|
HWBUF.size = 0;
|
2019-10-13 21:57:59 +02:00
|
|
|
}
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void glue (audio_pcm_sw_free_resources_, TYPE) (SW *sw)
|
|
|
|
{
|
2023-02-24 20:05:42 +01:00
|
|
|
g_free(sw->resample_buf.buffer);
|
|
|
|
sw->resample_buf.buffer = NULL;
|
|
|
|
sw->resample_buf.size = 0;
|
2005-11-20 17:24:34 +01:00
|
|
|
|
|
|
|
if (sw->rate) {
|
|
|
|
st_rate_stop (sw->rate);
|
|
|
|
}
|
|
|
|
sw->rate = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int glue (audio_pcm_sw_alloc_resources_, TYPE) (SW *sw)
|
|
|
|
{
|
2023-02-24 20:05:54 +01:00
|
|
|
HW *hw = sw->hw;
|
2023-02-24 20:05:55 +01:00
|
|
|
uint64_t samples;
|
2005-11-20 17:24:34 +01:00
|
|
|
|
2019-10-13 21:57:59 +02:00
|
|
|
if (!glue(audio_get_pdo_, TYPE)(sw->s->dev)->mixing_engine) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-02-24 20:05:55 +01:00
|
|
|
samples = muldiv64(HWBUF.size, sw->info.freq, hw->info.freq);
|
2023-01-21 10:47:25 +01:00
|
|
|
if (samples == 0) {
|
2023-02-24 20:05:55 +01:00
|
|
|
uint64_t f_fe_min;
|
|
|
|
uint64_t f_be = (uint32_t)hw->info.freq;
|
2023-01-21 10:47:25 +01:00
|
|
|
|
|
|
|
/* f_fe_min = ceil(1 [frames] * f_be [Hz] / size_be [frames]) */
|
2023-02-24 20:05:55 +01:00
|
|
|
f_fe_min = (f_be + HWBUF.size - 1) / HWBUF.size;
|
2023-01-21 10:47:25 +01:00
|
|
|
qemu_log_mask(LOG_UNIMP,
|
|
|
|
AUDIO_CAP ": The guest selected a " NAME " sample rate"
|
2023-02-24 20:05:55 +01:00
|
|
|
" of %d Hz for %s. Only sample rates >= %" PRIu64 " Hz"
|
|
|
|
" are supported.\n",
|
2023-01-21 10:47:25 +01:00
|
|
|
sw->info.freq, sw->name, f_fe_min);
|
|
|
|
return -1;
|
|
|
|
}
|
2005-11-05 19:55:28 +01:00
|
|
|
|
2023-02-24 20:05:53 +01:00
|
|
|
/*
|
|
|
|
* Allocate one additional audio frame that is needed for upsampling
|
|
|
|
* if the resample buffer size is small. For large buffer sizes take
|
2023-02-24 20:05:55 +01:00
|
|
|
* care of overflows and truncation.
|
2023-02-24 20:05:53 +01:00
|
|
|
*/
|
2023-02-24 20:05:55 +01:00
|
|
|
samples = samples < SIZE_MAX ? samples + 1 : SIZE_MAX;
|
2023-02-24 20:05:42 +01:00
|
|
|
sw->resample_buf.buffer = g_new0(st_sample, samples);
|
|
|
|
sw->resample_buf.size = samples;
|
|
|
|
sw->resample_buf.pos = 0;
|
2005-11-05 19:55:28 +01:00
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
#ifdef DAC
|
2023-02-24 20:05:54 +01:00
|
|
|
sw->rate = st_rate_start(sw->info.freq, hw->info.freq);
|
2005-11-20 17:24:34 +01:00
|
|
|
#else
|
2023-02-24 20:05:54 +01:00
|
|
|
sw->rate = st_rate_start(hw->info.freq, sw->info.freq);
|
2005-11-20 17:24:34 +01:00
|
|
|
#endif
|
2023-01-21 10:47:29 +01:00
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
static int glue (audio_pcm_sw_init_, TYPE) (
|
|
|
|
SW *sw,
|
|
|
|
HW *hw,
|
|
|
|
const char *name,
|
2008-12-03 23:48:44 +01:00
|
|
|
struct audsettings *as
|
2005-11-20 17:24:34 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2006-07-04 23:47:22 +02:00
|
|
|
audio_pcm_init_info (&sw->info, as);
|
2005-11-20 17:24:34 +01:00
|
|
|
sw->hw = hw;
|
|
|
|
sw->active = 0;
|
|
|
|
#ifdef DAC
|
|
|
|
sw->total_hw_samples_mixed = 0;
|
|
|
|
sw->empty = 1;
|
|
|
|
#endif
|
|
|
|
|
2020-02-02 20:38:07 +01:00
|
|
|
if (sw->info.is_float) {
|
2005-11-20 17:24:34 +01:00
|
|
|
#ifdef DAC
|
2020-02-02 20:38:07 +01:00
|
|
|
sw->conv = mixeng_conv_float[sw->info.nchannels == 2];
|
2005-11-20 17:24:34 +01:00
|
|
|
#else
|
2020-02-02 20:38:07 +01:00
|
|
|
sw->clip = mixeng_clip_float[sw->info.nchannels == 2];
|
2005-11-20 17:24:34 +01:00
|
|
|
#endif
|
2020-02-02 20:38:07 +01:00
|
|
|
} else {
|
|
|
|
#ifdef DAC
|
|
|
|
sw->conv = mixeng_conv
|
|
|
|
#else
|
|
|
|
sw->clip = mixeng_clip
|
|
|
|
#endif
|
|
|
|
[sw->info.nchannels == 2]
|
|
|
|
[sw->info.is_signed]
|
|
|
|
[sw->info.swap_endianness]
|
|
|
|
[audio_bits_to_index(sw->info.bits)];
|
|
|
|
}
|
2005-11-20 17:24:34 +01:00
|
|
|
|
2011-08-21 05:09:37 +02:00
|
|
|
sw->name = g_strdup (name);
|
2005-11-20 17:24:34 +01:00
|
|
|
err = glue (audio_pcm_sw_alloc_resources_, TYPE) (sw);
|
|
|
|
if (err) {
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (sw->name);
|
2005-11-20 17:24:34 +01:00
|
|
|
sw->name = NULL;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2005-10-30 19:58:22 +01:00
|
|
|
static void glue (audio_pcm_sw_fini_, TYPE) (SW *sw)
|
|
|
|
{
|
|
|
|
glue (audio_pcm_sw_free_resources_, TYPE) (sw);
|
2014-06-06 18:35:13 +02:00
|
|
|
g_free (sw->name);
|
|
|
|
sw->name = NULL;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void glue (audio_pcm_hw_add_sw_, TYPE) (HW *hw, SW *sw)
|
|
|
|
{
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_INSERT_HEAD (&hw->sw_head, sw, entries);
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void glue (audio_pcm_hw_del_sw_, TYPE) (SW *sw)
|
|
|
|
{
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_REMOVE (sw, entries);
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
static void glue (audio_pcm_hw_gc_, TYPE) (HW **hwp)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
2005-11-05 19:55:28 +01:00
|
|
|
HW *hw = *hwp;
|
2019-08-19 01:06:46 +02:00
|
|
|
AudioState *s = hw->s;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
|
|
|
if (!hw->sw_head.lh_first) {
|
2006-07-04 18:51:32 +02:00
|
|
|
#ifdef DAC
|
2021-01-15 02:24:31 +01:00
|
|
|
audio_detach_capture(hw);
|
2006-07-04 18:51:32 +02:00
|
|
|
#endif
|
2021-01-15 02:24:31 +01:00
|
|
|
QLIST_REMOVE(hw, entries);
|
|
|
|
glue(hw->pcm_ops->fini_, TYPE) (hw);
|
|
|
|
glue(s->nb_hw_voices_, TYPE) += 1;
|
|
|
|
glue(audio_pcm_hw_free_resources_ , TYPE) (hw);
|
|
|
|
g_free(hw);
|
2005-11-05 19:55:28 +01:00
|
|
|
*hwp = NULL;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
static HW *glue(audio_pcm_hw_find_any_, TYPE)(AudioState *s, HW *hw)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
2009-05-14 01:11:35 +02:00
|
|
|
return hw ? hw->entries.le_next : glue (s->hw_head_, TYPE).lh_first;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
static HW *glue(audio_pcm_hw_find_any_enabled_, TYPE)(AudioState *s, HW *hw)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
2019-08-19 01:06:46 +02:00
|
|
|
while ((hw = glue(audio_pcm_hw_find_any_, TYPE)(s, hw))) {
|
2005-11-05 19:55:28 +01:00
|
|
|
if (hw->enabled) {
|
2005-10-30 19:58:22 +01:00
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
static HW *glue(audio_pcm_hw_find_specific_, TYPE)(AudioState *s, HW *hw,
|
|
|
|
struct audsettings *as)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
2019-08-19 01:06:46 +02:00
|
|
|
while ((hw = glue(audio_pcm_hw_find_any_, TYPE)(s, hw))) {
|
2005-11-05 19:55:28 +01:00
|
|
|
if (audio_pcm_info_eq (&hw->info, as)) {
|
2005-10-30 19:58:22 +01:00
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
static HW *glue(audio_pcm_hw_add_new_, TYPE)(AudioState *s,
|
|
|
|
struct audsettings *as)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
|
|
|
HW *hw;
|
2005-11-20 17:24:34 +01:00
|
|
|
struct audio_driver *drv = s->drv;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
if (!glue (s->nb_hw_voices_, TYPE)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-10-30 19:58:22 +01:00
|
|
|
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, !drv)) {
|
2005-11-20 17:24:34 +01:00
|
|
|
dolog ("No host audio driver\n");
|
2022-09-17 15:16:25 +02:00
|
|
|
return NULL;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, !drv->pcm_ops)) {
|
2005-11-20 17:24:34 +01:00
|
|
|
dolog ("Host audio driver without pcm_ops\n");
|
2022-09-17 15:16:25 +02:00
|
|
|
return NULL;
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
|
2023-01-21 10:47:31 +01:00
|
|
|
/*
|
|
|
|
* Since glue(s->nb_hw_voices_, TYPE) is != 0, glue(drv->voice_size_, TYPE)
|
|
|
|
* is guaranteed to be != 0. See the audio_init_nb_voices_* functions.
|
|
|
|
*/
|
|
|
|
hw = g_malloc0(glue(drv->voice_size_, TYPE));
|
2019-08-19 01:06:46 +02:00
|
|
|
hw->s = s;
|
2005-11-20 17:24:34 +01:00
|
|
|
hw->pcm_ops = drv->pcm_ops;
|
2012-04-17 14:32:36 +02:00
|
|
|
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_INIT (&hw->sw_head);
|
2006-07-04 18:51:32 +02:00
|
|
|
#ifdef DAC
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_INIT (&hw->cap_head);
|
2006-07-04 18:51:32 +02:00
|
|
|
#endif
|
2015-06-03 23:03:47 +02:00
|
|
|
if (glue (hw->pcm_ops->init_, TYPE) (hw, as, s->drv_opaque)) {
|
2022-09-17 15:16:25 +02:00
|
|
|
goto err0;
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, hw->samples <= 0)) {
|
2019-08-19 01:06:58 +02:00
|
|
|
dolog("hw->samples=%zd\n", hw->samples);
|
2022-09-17 15:16:25 +02:00
|
|
|
goto err1;
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
|
2020-02-02 20:38:07 +01:00
|
|
|
if (hw->info.is_float) {
|
2020-02-02 15:06:41 +01:00
|
|
|
#ifdef DAC
|
2020-02-02 20:38:07 +01:00
|
|
|
hw->clip = mixeng_clip_float[hw->info.nchannels == 2];
|
2020-02-02 15:06:41 +01:00
|
|
|
#else
|
2020-02-02 20:38:07 +01:00
|
|
|
hw->conv = mixeng_conv_float[hw->info.nchannels == 2];
|
2020-02-02 15:06:41 +01:00
|
|
|
#endif
|
2020-02-02 20:38:07 +01:00
|
|
|
} else {
|
2005-11-20 17:24:34 +01:00
|
|
|
#ifdef DAC
|
2020-02-02 20:38:07 +01:00
|
|
|
hw->clip = mixeng_clip
|
2005-11-20 17:24:34 +01:00
|
|
|
#else
|
2020-02-02 20:38:07 +01:00
|
|
|
hw->conv = mixeng_conv
|
2005-11-20 17:24:34 +01:00
|
|
|
#endif
|
2020-02-02 20:38:07 +01:00
|
|
|
[hw->info.nchannels == 2]
|
|
|
|
[hw->info.is_signed]
|
|
|
|
[hw->info.swap_endianness]
|
|
|
|
[audio_bits_to_index(hw->info.bits)];
|
|
|
|
}
|
2005-11-20 17:24:34 +01:00
|
|
|
|
2019-09-19 23:24:20 +02:00
|
|
|
glue(audio_pcm_hw_alloc_resources_, TYPE)(hw);
|
2005-11-20 17:24:34 +01:00
|
|
|
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_INSERT_HEAD (&s->glue (hw_head_, TYPE), hw, entries);
|
2005-11-20 17:24:34 +01:00
|
|
|
glue (s->nb_hw_voices_, TYPE) -= 1;
|
2006-07-04 18:51:32 +02:00
|
|
|
#ifdef DAC
|
2009-05-14 01:11:35 +02:00
|
|
|
audio_attach_capture (hw);
|
2006-07-04 18:51:32 +02:00
|
|
|
#endif
|
2005-11-20 17:24:34 +01:00
|
|
|
return hw;
|
2022-09-17 15:16:25 +02:00
|
|
|
|
|
|
|
err1:
|
|
|
|
glue (hw->pcm_ops->fini_, TYPE) (hw);
|
|
|
|
err0:
|
|
|
|
g_free (hw);
|
|
|
|
return NULL;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2019-03-08 23:34:15 +01:00
|
|
|
AudiodevPerDirectionOptions *glue(audio_get_pdo_, TYPE)(Audiodev *dev)
|
|
|
|
{
|
|
|
|
switch (dev->driver) {
|
|
|
|
case AUDIODEV_DRIVER_NONE:
|
|
|
|
return dev->u.none.TYPE;
|
2023-01-23 09:39:57 +01:00
|
|
|
#ifdef CONFIG_AUDIO_ALSA
|
2019-03-08 23:34:15 +01:00
|
|
|
case AUDIODEV_DRIVER_ALSA:
|
|
|
|
return qapi_AudiodevAlsaPerDirectionOptions_base(dev->u.alsa.TYPE);
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_AUDIO_COREAUDIO
|
2019-03-08 23:34:15 +01:00
|
|
|
case AUDIODEV_DRIVER_COREAUDIO:
|
|
|
|
return qapi_AudiodevCoreaudioPerDirectionOptions_base(
|
|
|
|
dev->u.coreaudio.TYPE);
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_DBUS_DISPLAY
|
2021-03-09 14:15:28 +01:00
|
|
|
case AUDIODEV_DRIVER_DBUS:
|
|
|
|
return dev->u.dbus.TYPE;
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_AUDIO_DSOUND
|
2019-03-08 23:34:15 +01:00
|
|
|
case AUDIODEV_DRIVER_DSOUND:
|
|
|
|
return dev->u.dsound.TYPE;
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_AUDIO_JACK
|
2020-04-29 07:53:58 +02:00
|
|
|
case AUDIODEV_DRIVER_JACK:
|
|
|
|
return qapi_AudiodevJackPerDirectionOptions_base(dev->u.jack.TYPE);
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_AUDIO_OSS
|
2019-03-08 23:34:15 +01:00
|
|
|
case AUDIODEV_DRIVER_OSS:
|
|
|
|
return qapi_AudiodevOssPerDirectionOptions_base(dev->u.oss.TYPE);
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_AUDIO_PA
|
2019-03-08 23:34:15 +01:00
|
|
|
case AUDIODEV_DRIVER_PA:
|
|
|
|
return qapi_AudiodevPaPerDirectionOptions_base(dev->u.pa.TYPE);
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
2023-04-17 12:56:54 +02:00
|
|
|
#ifdef CONFIG_AUDIO_PIPEWIRE
|
|
|
|
case AUDIODEV_DRIVER_PIPEWIRE:
|
|
|
|
return qapi_AudiodevPipewirePerDirectionOptions_base(dev->u.pipewire.TYPE);
|
|
|
|
#endif
|
2023-01-23 09:39:57 +01:00
|
|
|
#ifdef CONFIG_AUDIO_SDL
|
2019-03-08 23:34:15 +01:00
|
|
|
case AUDIODEV_DRIVER_SDL:
|
2021-01-10 11:02:19 +01:00
|
|
|
return qapi_AudiodevSdlPerDirectionOptions_base(dev->u.sdl.TYPE);
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_AUDIO_SNDIO
|
2022-09-07 15:23:42 +02:00
|
|
|
case AUDIODEV_DRIVER_SNDIO:
|
|
|
|
return dev->u.sndio.TYPE;
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SPICE
|
2019-03-08 23:34:15 +01:00
|
|
|
case AUDIODEV_DRIVER_SPICE:
|
|
|
|
return dev->u.spice.TYPE;
|
2023-01-23 09:39:57 +01:00
|
|
|
#endif
|
2019-03-08 23:34:15 +01:00
|
|
|
case AUDIODEV_DRIVER_WAV:
|
|
|
|
return dev->u.wav.TYPE;
|
|
|
|
|
|
|
|
case AUDIODEV_DRIVER__MAX:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
static HW *glue(audio_pcm_hw_add_, TYPE)(AudioState *s, struct audsettings *as)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
|
|
|
HW *hw;
|
2019-03-08 23:34:15 +01:00
|
|
|
AudiodevPerDirectionOptions *pdo = glue(audio_get_pdo_, TYPE)(s->dev);
|
2005-10-30 19:58:22 +01:00
|
|
|
|
2019-10-13 21:57:59 +02:00
|
|
|
if (!pdo->mixing_engine || pdo->fixed_settings) {
|
2019-08-19 01:06:46 +02:00
|
|
|
hw = glue(audio_pcm_hw_add_new_, TYPE)(s, as);
|
2019-10-13 21:57:59 +02:00
|
|
|
if (!pdo->mixing_engine || hw) {
|
2005-10-30 19:58:22 +01:00
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
hw = glue(audio_pcm_hw_find_specific_, TYPE)(s, NULL, as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (hw) {
|
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
hw = glue(audio_pcm_hw_add_new_, TYPE)(s, as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (hw) {
|
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
return glue(audio_pcm_hw_find_any_, TYPE)(s, NULL);
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
static SW *glue(audio_pcm_create_voice_pair_, TYPE)(
|
|
|
|
AudioState *s,
|
2005-11-05 19:55:28 +01:00
|
|
|
const char *sw_name,
|
2008-12-03 23:48:44 +01:00
|
|
|
struct audsettings *as
|
2005-10-30 19:58:22 +01:00
|
|
|
)
|
|
|
|
{
|
|
|
|
SW *sw;
|
|
|
|
HW *hw;
|
2008-12-03 23:48:44 +01:00
|
|
|
struct audsettings hw_as;
|
2019-03-08 23:34:15 +01:00
|
|
|
AudiodevPerDirectionOptions *pdo = glue(audio_get_pdo_, TYPE)(s->dev);
|
2005-10-30 19:58:22 +01:00
|
|
|
|
2019-03-08 23:34:15 +01:00
|
|
|
if (pdo->fixed_settings) {
|
|
|
|
hw_as = audiodev_to_audsettings(pdo);
|
2021-01-15 02:24:25 +01:00
|
|
|
} else {
|
2005-11-05 19:55:28 +01:00
|
|
|
hw_as = *as;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2023-01-21 10:47:32 +01:00
|
|
|
sw = g_new0(SW, 1);
|
2019-08-19 01:06:46 +02:00
|
|
|
sw->s = s;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
2019-08-19 01:06:46 +02:00
|
|
|
hw = glue(audio_pcm_hw_add_, TYPE)(s, &hw_as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (!hw) {
|
2023-01-21 10:47:26 +01:00
|
|
|
dolog("Could not create a backend for voice `%s'\n", sw_name);
|
2023-01-21 10:47:32 +01:00
|
|
|
goto err1;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
glue (audio_pcm_hw_add_sw_, TYPE) (hw, sw);
|
|
|
|
|
2006-07-04 23:47:22 +02:00
|
|
|
if (glue (audio_pcm_sw_init_, TYPE) (sw, hw, sw_name, as)) {
|
2023-01-21 10:47:32 +01:00
|
|
|
goto err2;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return sw;
|
|
|
|
|
2023-01-21 10:47:32 +01:00
|
|
|
err2:
|
2005-10-30 19:58:22 +01:00
|
|
|
glue (audio_pcm_hw_del_sw_, TYPE) (sw);
|
2009-05-14 01:11:35 +02:00
|
|
|
glue (audio_pcm_hw_gc_, TYPE) (&hw);
|
2005-10-30 19:58:22 +01:00
|
|
|
err1:
|
2023-01-21 10:47:32 +01:00
|
|
|
g_free(sw);
|
2005-10-30 19:58:22 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
static void glue (audio_close_, TYPE) (SW *sw)
|
2005-11-05 19:55:28 +01:00
|
|
|
{
|
|
|
|
glue (audio_pcm_sw_fini_, TYPE) (sw);
|
|
|
|
glue (audio_pcm_hw_del_sw_, TYPE) (sw);
|
2009-05-14 01:11:35 +02:00
|
|
|
glue (audio_pcm_hw_gc_, TYPE) (&sw->hw);
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (sw);
|
2005-11-05 19:55:28 +01:00
|
|
|
}
|
2005-11-20 17:24:34 +01:00
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
void glue (AUD_close_, TYPE) (QEMUSoundCard *card, SW *sw)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
|
|
|
if (sw) {
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, !card)) {
|
2009-05-14 01:11:35 +02:00
|
|
|
dolog ("card=%p\n", card);
|
2022-09-17 15:16:25 +02:00
|
|
|
return;
|
2005-11-05 19:55:28 +01:00
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
glue (audio_close_, TYPE) (sw);
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SW *glue (AUD_open_, TYPE) (
|
2005-11-05 19:55:28 +01:00
|
|
|
QEMUSoundCard *card,
|
2005-10-30 19:58:22 +01:00
|
|
|
SW *sw,
|
|
|
|
const char *name,
|
|
|
|
void *callback_opaque ,
|
2009-10-15 00:40:17 +02:00
|
|
|
audio_callback_fn callback_fn,
|
2008-12-03 23:48:44 +01:00
|
|
|
struct audsettings *as
|
2005-10-30 19:58:22 +01:00
|
|
|
)
|
|
|
|
{
|
2019-09-11 01:26:18 +02:00
|
|
|
AudioState *s;
|
|
|
|
AudiodevPerDirectionOptions *pdo;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, !card || !name || !callback_fn || !as)) {
|
2009-05-14 01:11:35 +02:00
|
|
|
dolog ("card=%p name=%p callback_fn=%p as=%p\n",
|
|
|
|
card, name, callback_fn, as);
|
2022-09-17 15:16:25 +02:00
|
|
|
goto fail;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2019-09-11 01:26:18 +02:00
|
|
|
s = card->state;
|
|
|
|
pdo = glue(audio_get_pdo_, TYPE)(s->dev);
|
|
|
|
|
2012-09-03 11:25:16 +02:00
|
|
|
ldebug ("open %s, freq %d, nchannels %d, fmt %d\n",
|
|
|
|
name, as->freq, as->nchannels, as->fmt);
|
|
|
|
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, audio_validate_settings(as))) {
|
2005-11-05 19:55:28 +01:00
|
|
|
audio_print_settings (as);
|
2022-09-17 15:16:25 +02:00
|
|
|
goto fail;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2018-02-03 09:43:02 +01:00
|
|
|
if (audio_bug(__func__, !s->drv)) {
|
2005-11-05 19:55:28 +01:00
|
|
|
dolog ("Can not open `%s' (no host audio driver)\n", name);
|
2022-09-17 15:16:25 +02:00
|
|
|
goto fail;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
if (sw && audio_pcm_info_eq (&sw->info, as)) {
|
2005-10-30 19:58:22 +01:00
|
|
|
return sw;
|
|
|
|
}
|
|
|
|
|
2019-03-08 23:34:15 +01:00
|
|
|
if (!pdo->fixed_settings && sw) {
|
2005-11-05 19:55:28 +01:00
|
|
|
glue (AUD_close_, TYPE) (card, sw);
|
2005-10-30 19:58:22 +01:00
|
|
|
sw = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sw) {
|
|
|
|
HW *hw = sw->hw;
|
|
|
|
|
|
|
|
if (!hw) {
|
2023-01-21 10:47:27 +01:00
|
|
|
dolog("Internal logic error: voice `%s' has no backend\n",
|
|
|
|
SW_NAME(sw));
|
2005-10-30 19:58:22 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
glue (audio_pcm_sw_fini_, TYPE) (sw);
|
2006-07-04 23:47:22 +02:00
|
|
|
if (glue (audio_pcm_sw_init_, TYPE) (sw, hw, name, as)) {
|
2005-10-30 19:58:22 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
2021-01-15 02:24:25 +01:00
|
|
|
} else {
|
2019-08-19 01:06:46 +02:00
|
|
|
sw = glue(audio_pcm_create_voice_pair_, TYPE)(s, name, as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (!sw) {
|
2005-11-20 17:24:34 +01:00
|
|
|
return NULL;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-18 17:15:19 +01:00
|
|
|
sw->card = card;
|
|
|
|
sw->vol = nominal_volume;
|
|
|
|
sw->callback.fn = callback_fn;
|
|
|
|
sw->callback.opaque = callback_opaque;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
|
|
|
#ifdef DEBUG_AUDIO
|
2009-11-18 17:15:19 +01:00
|
|
|
dolog ("%s\n", name);
|
|
|
|
audio_pcm_print_info ("hw", &sw->hw->info);
|
|
|
|
audio_pcm_print_info ("sw", &sw->info);
|
2005-10-30 19:58:22 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return sw;
|
|
|
|
|
|
|
|
fail:
|
2005-11-05 19:55:28 +01:00
|
|
|
glue (AUD_close_, TYPE) (card, sw);
|
2005-10-30 19:58:22 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int glue (AUD_is_active_, TYPE) (SW *sw)
|
|
|
|
{
|
|
|
|
return sw ? sw->active : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void glue (AUD_init_time_stamp_, TYPE) (SW *sw, QEMUAudioTimeStamp *ts)
|
|
|
|
{
|
|
|
|
if (!sw) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ts->old_ts = sw->hw->ts_helper;
|
|
|
|
}
|
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
uint64_t glue (AUD_get_elapsed_usec_, TYPE) (SW *sw, QEMUAudioTimeStamp *ts)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
|
|
|
uint64_t delta, cur_ts, old_ts;
|
|
|
|
|
|
|
|
if (!sw) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur_ts = sw->hw->ts_helper;
|
|
|
|
old_ts = ts->old_ts;
|
2010-05-22 10:02:12 +02:00
|
|
|
/* dolog ("cur %" PRId64 " old %" PRId64 "\n", cur_ts, old_ts); */
|
2005-10-30 19:58:22 +01:00
|
|
|
|
|
|
|
if (cur_ts >= old_ts) {
|
|
|
|
delta = cur_ts - old_ts;
|
2021-01-15 02:24:25 +01:00
|
|
|
} else {
|
2005-10-30 19:58:22 +01:00
|
|
|
delta = UINT64_MAX - old_ts + cur_ts;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!delta) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-09-18 06:16:03 +02:00
|
|
|
return muldiv64 (delta, sw->hw->info.freq, 1000000);
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef TYPE
|
|
|
|
#undef HW
|
|
|
|
#undef SW
|
2005-11-20 17:24:34 +01:00
|
|
|
#undef HWBUF
|
|
|
|
#undef NAME
|