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
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
static void glue (audio_init_nb_voices_, TYPE) (struct audio_driver *drv)
|
2005-11-05 19:55:28 +01:00
|
|
|
{
|
2009-05-14 01:11:35 +02:00
|
|
|
AudioState *s = &glob_audio_state;
|
2005-11-20 17:24:34 +01:00
|
|
|
int max_voices = glue (drv->max_voices_, TYPE);
|
|
|
|
int voice_size = glue (drv->voice_size_, TYPE);
|
2005-11-05 19:55:28 +01:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
if (audio_bug (AUDIO_FUNC, !voice_size && max_voices)) {
|
|
|
|
dolog ("drv=`%s' voice_size=0 max_voices=%d\n",
|
|
|
|
drv->name, max_voices);
|
|
|
|
glue (s->nb_hw_voices_, TYPE) = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (audio_bug (AUDIO_FUNC, voice_size && !max_voices)) {
|
|
|
|
dolog ("drv=`%s' voice_size=%d max_voices=0\n",
|
|
|
|
drv->name, voice_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void glue (audio_pcm_hw_free_resources_, TYPE) (HW *hw)
|
|
|
|
{
|
|
|
|
if (HWBUF) {
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (HWBUF);
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
HWBUF = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int glue (audio_pcm_hw_alloc_resources_, TYPE) (HW *hw)
|
|
|
|
{
|
2008-12-03 23:48:44 +01:00
|
|
|
HWBUF = audio_calloc (AUDIO_FUNC, hw->samples, sizeof (struct st_sample));
|
2005-11-20 17:24:34 +01:00
|
|
|
if (!HWBUF) {
|
|
|
|
dolog ("Could not allocate " NAME " buffer (%d samples)\n",
|
|
|
|
hw->samples);
|
2005-11-05 19:55:28 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void glue (audio_pcm_sw_free_resources_, TYPE) (SW *sw)
|
|
|
|
{
|
|
|
|
if (sw->buf) {
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (sw->buf);
|
2005-11-20 17:24:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (sw->rate) {
|
|
|
|
st_rate_stop (sw->rate);
|
|
|
|
}
|
|
|
|
|
|
|
|
sw->buf = NULL;
|
|
|
|
sw->rate = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int glue (audio_pcm_sw_alloc_resources_, TYPE) (SW *sw)
|
|
|
|
{
|
|
|
|
int samples;
|
|
|
|
|
|
|
|
samples = ((int64_t) sw->hw->samples << 32) / sw->ratio;
|
2005-11-05 19:55:28 +01:00
|
|
|
|
2008-12-03 23:48:44 +01:00
|
|
|
sw->buf = audio_calloc (AUDIO_FUNC, samples, sizeof (struct st_sample));
|
2005-11-20 17:24:34 +01:00
|
|
|
if (!sw->buf) {
|
|
|
|
dolog ("Could not allocate buffer for `%s' (%d samples)\n",
|
|
|
|
SW_NAME (sw), samples);
|
2005-11-05 19:55:28 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
#ifdef DAC
|
|
|
|
sw->rate = st_rate_start (sw->info.freq, sw->hw->info.freq);
|
|
|
|
#else
|
|
|
|
sw->rate = st_rate_start (sw->hw->info.freq, sw->info.freq);
|
|
|
|
#endif
|
|
|
|
if (!sw->rate) {
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (sw->buf);
|
2005-11-20 17:24:34 +01:00
|
|
|
sw->buf = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
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->ratio = ((int64_t) sw->hw->info.freq << 32) / sw->info.freq;
|
|
|
|
sw->total_hw_samples_mixed = 0;
|
|
|
|
sw->empty = 1;
|
|
|
|
#else
|
|
|
|
sw->ratio = ((int64_t) sw->info.freq << 32) / sw->hw->info.freq;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DAC
|
|
|
|
sw->conv = mixeng_conv
|
|
|
|
#else
|
|
|
|
sw->clip = mixeng_clip
|
|
|
|
#endif
|
|
|
|
[sw->info.nchannels == 2]
|
|
|
|
[sw->info.sign]
|
2006-07-04 23:47:22 +02:00
|
|
|
[sw->info.swap_endianness]
|
2007-02-17 23:19:29 +01:00
|
|
|
[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);
|
|
|
|
if (sw->name) {
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (sw->name);
|
2005-10-30 19:58:22 +01:00
|
|
|
sw->name = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2009-05-14 01:11:35 +02:00
|
|
|
AudioState *s = &glob_audio_state;
|
2005-11-05 19:55:28 +01:00
|
|
|
HW *hw = *hwp;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
|
|
|
if (!hw->sw_head.lh_first) {
|
2006-07-04 18:51:32 +02:00
|
|
|
#ifdef DAC
|
|
|
|
audio_detach_capture (hw);
|
|
|
|
#endif
|
2009-09-12 09:36:22 +02:00
|
|
|
QLIST_REMOVE (hw, entries);
|
2005-11-05 19:55:28 +01:00
|
|
|
glue (s->nb_hw_voices_, TYPE) += 1;
|
|
|
|
glue (audio_pcm_hw_free_resources_ ,TYPE) (hw);
|
|
|
|
glue (hw->pcm_ops->fini_, TYPE) (hw);
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (hw);
|
2005-11-05 19:55:28 +01:00
|
|
|
*hwp = NULL;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
static HW *glue (audio_pcm_hw_find_any_, TYPE) (HW *hw)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
2009-05-14 01:11:35 +02:00
|
|
|
AudioState *s = &glob_audio_state;
|
|
|
|
return hw ? hw->entries.le_next : glue (s->hw_head_, TYPE).lh_first;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
static HW *glue (audio_pcm_hw_find_any_enabled_, TYPE) (HW *hw)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
2009-05-14 01:11:35 +02:00
|
|
|
while ((hw = glue (audio_pcm_hw_find_any_, TYPE) (hw))) {
|
2005-11-05 19:55:28 +01:00
|
|
|
if (hw->enabled) {
|
2005-10-30 19:58:22 +01:00
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HW *glue (audio_pcm_hw_find_specific_, TYPE) (
|
|
|
|
HW *hw,
|
2008-12-03 23:48:44 +01:00
|
|
|
struct audsettings *as
|
2005-10-30 19:58:22 +01:00
|
|
|
)
|
|
|
|
{
|
2009-05-14 01:11:35 +02:00
|
|
|
while ((hw = glue (audio_pcm_hw_find_any_, TYPE) (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;
|
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
static HW *glue (audio_pcm_hw_add_new_, TYPE) (struct audsettings *as)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
|
|
|
HW *hw;
|
2009-05-14 01:11:35 +02:00
|
|
|
AudioState *s = &glob_audio_state;
|
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
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
if (audio_bug (AUDIO_FUNC, !drv)) {
|
|
|
|
dolog ("No host audio driver\n");
|
|
|
|
return NULL;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2005-11-20 17:24:34 +01:00
|
|
|
if (audio_bug (AUDIO_FUNC, !drv->pcm_ops)) {
|
|
|
|
dolog ("Host audio driver without pcm_ops\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hw = audio_calloc (AUDIO_FUNC, 1, glue (drv->voice_size_, TYPE));
|
|
|
|
if (!hw) {
|
|
|
|
dolog ("Can not allocate voice `%s' size %d\n",
|
|
|
|
drv->name, glue (drv->voice_size_, TYPE));
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hw->pcm_ops = drv->pcm_ops;
|
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
|
2005-11-20 17:24:34 +01:00
|
|
|
if (glue (hw->pcm_ops->init_, TYPE) (hw, as)) {
|
|
|
|
goto err0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (audio_bug (AUDIO_FUNC, hw->samples <= 0)) {
|
|
|
|
dolog ("hw->samples=%d\n", hw->samples);
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DAC
|
|
|
|
hw->clip = mixeng_clip
|
|
|
|
#else
|
|
|
|
hw->conv = mixeng_conv
|
|
|
|
#endif
|
|
|
|
[hw->info.nchannels == 2]
|
|
|
|
[hw->info.sign]
|
2006-07-04 23:47:22 +02:00
|
|
|
[hw->info.swap_endianness]
|
2007-02-17 23:19:29 +01:00
|
|
|
[audio_bits_to_index (hw->info.bits)];
|
2005-11-20 17:24:34 +01:00
|
|
|
|
|
|
|
if (glue (audio_pcm_hw_alloc_resources_, TYPE) (hw)) {
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
err1:
|
|
|
|
glue (hw->pcm_ops->fini_, TYPE) (hw);
|
|
|
|
err0:
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (hw);
|
2005-10-30 19:58:22 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
static HW *glue (audio_pcm_hw_add_, TYPE) (struct audsettings *as)
|
2005-10-30 19:58:22 +01:00
|
|
|
{
|
|
|
|
HW *hw;
|
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
if (glue (conf.fixed_, TYPE).enabled && glue (conf.fixed_, TYPE).greedy) {
|
2009-05-14 01:11:35 +02:00
|
|
|
hw = glue (audio_pcm_hw_add_new_, TYPE) (as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (hw) {
|
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
hw = glue (audio_pcm_hw_find_specific_, TYPE) (NULL, as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (hw) {
|
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
hw = glue (audio_pcm_hw_add_new_, TYPE) (as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (hw) {
|
|
|
|
return hw;
|
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
return glue (audio_pcm_hw_find_any_, TYPE) (NULL);
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static SW *glue (audio_pcm_create_voice_pair_, TYPE) (
|
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;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
if (glue (conf.fixed_, TYPE).enabled) {
|
|
|
|
hw_as = glue (conf.fixed_, TYPE).settings;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
hw_as = *as;
|
2005-10-30 19:58:22 +01:00
|
|
|
}
|
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
sw = audio_calloc (AUDIO_FUNC, 1, sizeof (*sw));
|
2005-10-30 19:58:22 +01:00
|
|
|
if (!sw) {
|
2005-11-11 01:03:36 +01:00
|
|
|
dolog ("Could not allocate soft voice `%s' (%zu bytes)\n",
|
2005-11-05 19:55:28 +01:00
|
|
|
sw_name ? sw_name : "unknown", sizeof (*sw));
|
2005-10-30 19:58:22 +01:00
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
hw = glue (audio_pcm_hw_add_, TYPE) (&hw_as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (!hw) {
|
|
|
|
goto err2;
|
|
|
|
}
|
|
|
|
|
|
|
|
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)) {
|
2005-10-30 19:58:22 +01:00
|
|
|
goto err3;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sw;
|
|
|
|
|
|
|
|
err3:
|
|
|
|
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
|
|
|
err2:
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free (sw);
|
2005-10-30 19:58:22 +01:00
|
|
|
err1:
|
|
|
|
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) {
|
2009-05-14 01:11:35 +02:00
|
|
|
if (audio_bug (AUDIO_FUNC, !card)) {
|
|
|
|
dolog ("card=%p\n", card);
|
2005-11-05 19:55:28 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
)
|
|
|
|
{
|
2009-05-14 01:11:35 +02:00
|
|
|
AudioState *s = &glob_audio_state;
|
2005-10-30 19:58:22 +01:00
|
|
|
#ifdef DAC
|
|
|
|
int live = 0;
|
|
|
|
SW *old_sw = NULL;
|
|
|
|
#endif
|
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
ldebug ("open %s, freq %d, nchannels %d, fmt %d\n",
|
|
|
|
name, as->freq, as->nchannels, as->fmt);
|
|
|
|
|
2009-05-14 01:11:35 +02:00
|
|
|
if (audio_bug (AUDIO_FUNC, !card || !name || !callback_fn || !as)) {
|
|
|
|
dolog ("card=%p name=%p callback_fn=%p as=%p\n",
|
|
|
|
card, name, callback_fn, as);
|
2005-10-30 19:58:22 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2006-07-16 20:57:03 +02:00
|
|
|
if (audio_bug (AUDIO_FUNC, audio_validate_settings (as))) {
|
2005-11-05 19:55:28 +01:00
|
|
|
audio_print_settings (as);
|
2005-10-30 19:58:22 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
if (audio_bug (AUDIO_FUNC, !s->drv)) {
|
|
|
|
dolog ("Can not open `%s' (no host audio driver)\n", name);
|
2005-10-30 19:58:22 +01:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DAC
|
2005-11-05 19:55:28 +01:00
|
|
|
if (conf.plive && sw && (!sw->active && !sw->empty)) {
|
2005-10-30 19:58:22 +01:00
|
|
|
live = sw->total_hw_samples_mixed;
|
|
|
|
|
|
|
|
#ifdef DEBUG_PLIVE
|
2005-11-05 19:55:28 +01:00
|
|
|
dolog ("Replacing voice %s with %d live samples\n", SW_NAME (sw), live);
|
2005-10-30 19:58:22 +01:00
|
|
|
dolog ("Old %s freq %d, bits %d, channels %d\n",
|
2005-11-05 19:55:28 +01:00
|
|
|
SW_NAME (sw), sw->info.freq, sw->info.bits, sw->info.nchannels);
|
2005-10-30 19:58:22 +01:00
|
|
|
dolog ("New %s freq %d, bits %d, channels %d\n",
|
2005-11-05 19:55:28 +01:00
|
|
|
name,
|
2009-12-02 11:49:33 +01:00
|
|
|
as->freq,
|
|
|
|
(as->fmt == AUD_FMT_S16 || as->fmt == AUD_FMT_U16) ? 16 : 8,
|
|
|
|
as->nchannels);
|
2005-10-30 19:58:22 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (live) {
|
|
|
|
old_sw = sw;
|
|
|
|
old_sw->callback.fn = NULL;
|
|
|
|
sw = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-11-05 19:55:28 +01:00
|
|
|
if (!glue (conf.fixed_, TYPE).enabled && sw) {
|
|
|
|
glue (AUD_close_, TYPE) (card, sw);
|
2005-10-30 19:58:22 +01:00
|
|
|
sw = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sw) {
|
|
|
|
HW *hw = sw->hw;
|
|
|
|
|
|
|
|
if (!hw) {
|
2005-11-05 19:55:28 +01:00
|
|
|
dolog ("Internal logic error voice `%s' has no hardware store\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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-05-14 01:11:35 +02:00
|
|
|
sw = glue (audio_pcm_create_voice_pair_, TYPE) (name, as);
|
2005-10-30 19:58:22 +01:00
|
|
|
if (!sw) {
|
2005-11-05 19:55:28 +01:00
|
|
|
dolog ("Failed to create voice `%s'\n", name);
|
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 DAC
|
2009-11-18 17:15:19 +01:00
|
|
|
if (live) {
|
|
|
|
int mixed =
|
|
|
|
(live << old_sw->info.shift)
|
|
|
|
* old_sw->info.bytes_per_second
|
|
|
|
/ sw->info.bytes_per_second;
|
2005-10-30 19:58:22 +01:00
|
|
|
|
|
|
|
#ifdef DEBUG_PLIVE
|
2009-11-18 17:15:19 +01:00
|
|
|
dolog ("Silence will be mixed %d\n", mixed);
|
2005-10-30 19:58:22 +01:00
|
|
|
#endif
|
2009-11-18 17:15:19 +01:00
|
|
|
sw->total_hw_samples_mixed += mixed;
|
|
|
|
}
|
2005-10-30 19:58:22 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
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
|