audio_template.h 13.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * 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
B
bellard 已提交
26 27
#define NAME "playback"
#define HWBUF hw->mix_buf
28
#define TYPE out
B
bellard 已提交
29 30
#define HW HWVoiceOut
#define SW SWVoiceOut
31
#else
B
bellard 已提交
32
#define NAME "capture"
33
#define TYPE in
B
bellard 已提交
34 35 36
#define HW HWVoiceIn
#define SW SWVoiceIn
#define HWBUF hw->conv_buf
37 38
#endif

B
bellard 已提交
39 40 41
static void glue (audio_init_nb_voices_, TYPE) (
    AudioState *s,
    struct audio_driver *drv
B
bellard 已提交
42 43
    )
{
B
bellard 已提交
44 45
    int max_voices = glue (drv->max_voices_, TYPE);
    int voice_size = glue (drv->voice_size_, TYPE);
B
bellard 已提交
46

B
bellard 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59
    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;
B
bellard 已提交
60 61
    }

B
bellard 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
    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) {
        qemu_free (HWBUF);
    }

    HWBUF = NULL;
}

static int glue (audio_pcm_hw_alloc_resources_, TYPE) (HW *hw)
{
M
malc 已提交
85
    HWBUF = audio_calloc (AUDIO_FUNC, hw->samples, sizeof (struct st_sample));
B
bellard 已提交
86 87 88
    if (!HWBUF) {
        dolog ("Could not allocate " NAME " buffer (%d samples)\n",
               hw->samples);
B
bellard 已提交
89 90 91
        return -1;
    }

B
bellard 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
    return 0;
}

static void glue (audio_pcm_sw_free_resources_, TYPE) (SW *sw)
{
    if (sw->buf) {
        qemu_free (sw->buf);
    }

    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;

B
bellard 已提交
113
#ifdef DAC
B
bellard 已提交
114
    samples = sw->hw->samples;
B
bellard 已提交
115
#else
B
bellard 已提交
116
    samples = ((int64_t) sw->hw->samples << 32) / sw->ratio;
B
bellard 已提交
117 118
#endif

M
malc 已提交
119
    sw->buf = audio_calloc (AUDIO_FUNC, samples, sizeof (struct st_sample));
B
bellard 已提交
120 121 122
    if (!sw->buf) {
        dolog ("Could not allocate buffer for `%s' (%d samples)\n",
               SW_NAME (sw), samples);
B
bellard 已提交
123 124 125
        return -1;
    }

B
bellard 已提交
126 127 128 129 130 131 132 133 134 135
#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) {
        qemu_free (sw->buf);
        sw->buf = NULL;
        return -1;
    }
B
bellard 已提交
136 137 138
    return 0;
}

B
bellard 已提交
139 140 141 142
static int glue (audio_pcm_sw_init_, TYPE) (
    SW *sw,
    HW *hw,
    const char *name,
M
malc 已提交
143
    struct audsettings *as
B
bellard 已提交
144 145 146 147
    )
{
    int err;

B
bellard 已提交
148
    audio_pcm_init_info (&sw->info, as);
B
bellard 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
    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]
B
bellard 已提交
166
        [sw->info.swap_endianness]
167
        [audio_bits_to_index (sw->info.bits)];
B
bellard 已提交
168 169 170 171 172 173 174 175 176 177

    sw->name = qemu_strdup (name);
    err = glue (audio_pcm_sw_alloc_resources_, TYPE) (sw);
    if (err) {
        qemu_free (sw->name);
        sw->name = NULL;
    }
    return err;
}

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
static void glue (audio_pcm_sw_fini_, TYPE) (SW *sw)
{
    glue (audio_pcm_sw_free_resources_, TYPE) (sw);
    if (sw->name) {
        qemu_free (sw->name);
        sw->name = NULL;
    }
}

static void glue (audio_pcm_hw_add_sw_, TYPE) (HW *hw, SW *sw)
{
    LIST_INSERT_HEAD (&hw->sw_head, sw, entries);
}

static void glue (audio_pcm_hw_del_sw_, TYPE) (SW *sw)
{
    LIST_REMOVE (sw, entries);
}

B
bellard 已提交
197
static void glue (audio_pcm_hw_gc_, TYPE) (AudioState *s, HW **hwp)
198
{
B
bellard 已提交
199
    HW *hw = *hwp;
200 201

    if (!hw->sw_head.lh_first) {
202 203 204
#ifdef DAC
        audio_detach_capture (hw);
#endif
B
bellard 已提交
205 206 207 208 209 210
        LIST_REMOVE (hw, entries);
        glue (s->nb_hw_voices_, TYPE) += 1;
        glue (audio_pcm_hw_free_resources_ ,TYPE) (hw);
        glue (hw->pcm_ops->fini_, TYPE) (hw);
        qemu_free (hw);
        *hwp = NULL;
211 212 213
    }
}

B
bellard 已提交
214
static HW *glue (audio_pcm_hw_find_any_, TYPE) (AudioState *s, HW *hw)
215
{
B
bellard 已提交
216
    return hw ? hw->entries.le_next : s->glue (hw_head_, TYPE).lh_first;
217 218
}

B
bellard 已提交
219
static HW *glue (audio_pcm_hw_find_any_enabled_, TYPE) (AudioState *s, HW *hw)
220
{
B
bellard 已提交
221 222
    while ((hw = glue (audio_pcm_hw_find_any_, TYPE) (s, hw))) {
        if (hw->enabled) {
223 224 225 226 227 228 229
            return hw;
        }
    }
    return NULL;
}

static HW *glue (audio_pcm_hw_find_specific_, TYPE) (
B
bellard 已提交
230
    AudioState *s,
231
    HW *hw,
M
malc 已提交
232
    struct audsettings *as
233 234
    )
{
B
bellard 已提交
235 236
    while ((hw = glue (audio_pcm_hw_find_any_, TYPE) (s, hw))) {
        if (audio_pcm_info_eq (&hw->info, as)) {
237 238 239 240 241 242
            return hw;
        }
    }
    return NULL;
}

M
malc 已提交
243 244
static HW *glue (audio_pcm_hw_add_new_, TYPE) (AudioState *s,
                                               struct audsettings *as)
245 246
{
    HW *hw;
B
bellard 已提交
247
    struct audio_driver *drv = s->drv;
248

B
bellard 已提交
249 250 251
    if (!glue (s->nb_hw_voices_, TYPE)) {
        return NULL;
    }
252

B
bellard 已提交
253 254 255
    if (audio_bug (AUDIO_FUNC, !drv)) {
        dolog ("No host audio driver\n");
        return NULL;
256 257
    }

B
bellard 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271
    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;
    LIST_INIT (&hw->sw_head);
272
#ifdef DAC
B
bellard 已提交
273
    LIST_INIT (&hw->cap_head);
274
#endif
B
bellard 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
    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]
B
bellard 已提交
291
        [hw->info.swap_endianness]
292
        [audio_bits_to_index (hw->info.bits)];
B
bellard 已提交
293 294 295 296 297 298 299

    if (glue (audio_pcm_hw_alloc_resources_, TYPE) (hw)) {
        goto err1;
    }

    LIST_INSERT_HEAD (&s->glue (hw_head_, TYPE), hw, entries);
    glue (s->nb_hw_voices_, TYPE) -= 1;
300 301 302
#ifdef DAC
    audio_attach_capture (s, hw);
#endif
B
bellard 已提交
303 304 305 306 307 308
    return hw;

 err1:
    glue (hw->pcm_ops->fini_, TYPE) (hw);
 err0:
    qemu_free (hw);
309 310 311
    return NULL;
}

M
malc 已提交
312 313
static HW *glue (audio_pcm_hw_add_, TYPE) (AudioState *s,
                                           struct audsettings *as)
314 315 316
{
    HW *hw;

B
bellard 已提交
317 318
    if (glue (conf.fixed_, TYPE).enabled && glue (conf.fixed_, TYPE).greedy) {
        hw = glue (audio_pcm_hw_add_new_, TYPE) (s, as);
319 320 321 322 323
        if (hw) {
            return hw;
        }
    }

B
bellard 已提交
324
    hw = glue (audio_pcm_hw_find_specific_, TYPE) (s, NULL, as);
325 326 327 328
    if (hw) {
        return hw;
    }

B
bellard 已提交
329
    hw = glue (audio_pcm_hw_add_new_, TYPE) (s, as);
330 331 332 333
    if (hw) {
        return hw;
    }

B
bellard 已提交
334
    return glue (audio_pcm_hw_find_any_, TYPE) (s, NULL);
335 336 337
}

static SW *glue (audio_pcm_create_voice_pair_, TYPE) (
B
bellard 已提交
338 339
    AudioState *s,
    const char *sw_name,
M
malc 已提交
340
    struct audsettings *as
341 342 343 344
    )
{
    SW *sw;
    HW *hw;
M
malc 已提交
345
    struct audsettings hw_as;
346

B
bellard 已提交
347 348 349 350 351
    if (glue (conf.fixed_, TYPE).enabled) {
        hw_as = glue (conf.fixed_, TYPE).settings;
    }
    else {
        hw_as = *as;
352 353
    }

B
bellard 已提交
354
    sw = audio_calloc (AUDIO_FUNC, 1, sizeof (*sw));
355
    if (!sw) {
B
bellard 已提交
356
        dolog ("Could not allocate soft voice `%s' (%zu bytes)\n",
B
bellard 已提交
357
               sw_name ? sw_name : "unknown", sizeof (*sw));
358 359 360
        goto err1;
    }

B
bellard 已提交
361
    hw = glue (audio_pcm_hw_add_, TYPE) (s, &hw_as);
362 363 364 365 366 367
    if (!hw) {
        goto err2;
    }

    glue (audio_pcm_hw_add_sw_, TYPE) (hw, sw);

B
bellard 已提交
368
    if (glue (audio_pcm_sw_init_, TYPE) (sw, hw, sw_name, as)) {
369 370 371 372 373 374 375
        goto err3;
    }

    return sw;

err3:
    glue (audio_pcm_hw_del_sw_, TYPE) (sw);
B
bellard 已提交
376
    glue (audio_pcm_hw_gc_, TYPE) (s, &hw);
377 378 379 380 381 382
err2:
    qemu_free (sw);
err1:
    return NULL;
}

B
bellard 已提交
383 384 385 386 387 388 389
static void glue (audio_close_, TYPE) (AudioState *s, SW *sw)
{
    glue (audio_pcm_sw_fini_, TYPE) (sw);
    glue (audio_pcm_hw_del_sw_, TYPE) (sw);
    glue (audio_pcm_hw_gc_, TYPE) (s, &sw->hw);
    qemu_free (sw);
}
B
bellard 已提交
390

B
bellard 已提交
391
void glue (AUD_close_, TYPE) (QEMUSoundCard *card, SW *sw)
392 393
{
    if (sw) {
B
bellard 已提交
394 395 396 397 398 399 400
        if (audio_bug (AUDIO_FUNC, !card || !card->audio)) {
            dolog ("card=%p card->audio=%p\n",
                   card, card ? card->audio : NULL);
            return;
        }

        glue (audio_close_, TYPE) (card->audio, sw);
401 402 403 404
    }
}

SW *glue (AUD_open_, TYPE) (
B
bellard 已提交
405
    QEMUSoundCard *card,
406 407 408 409
    SW *sw,
    const char *name,
    void *callback_opaque ,
    audio_callback_fn_t callback_fn,
M
malc 已提交
410
    struct audsettings *as
411 412
    )
{
B
bellard 已提交
413
    AudioState *s;
414 415 416 417 418
#ifdef DAC
    int live = 0;
    SW *old_sw = NULL;
#endif

B
bellard 已提交
419 420 421 422 423 424 425
    ldebug ("open %s, freq %d, nchannels %d, fmt %d\n",
            name, as->freq, as->nchannels, as->fmt);

    if (audio_bug (AUDIO_FUNC,
                   !card || !card->audio || !name || !callback_fn || !as)) {
        dolog ("card=%p card->audio=%p name=%p callback_fn=%p as=%p\n",
               card, card ? card->audio : NULL, name, callback_fn, as);
426 427 428
        goto fail;
    }

B
bellard 已提交
429 430
    s = card->audio;

B
bellard 已提交
431
    if (audio_bug (AUDIO_FUNC, audio_validate_settings (as))) {
B
bellard 已提交
432
        audio_print_settings (as);
433 434 435
        goto fail;
    }

B
bellard 已提交
436 437
    if (audio_bug (AUDIO_FUNC, !s->drv)) {
        dolog ("Can not open `%s' (no host audio driver)\n", name);
438 439 440
        goto fail;
    }

B
bellard 已提交
441
    if (sw && audio_pcm_info_eq (&sw->info, as)) {
442 443 444 445
        return sw;
    }

#ifdef DAC
B
bellard 已提交
446
    if (conf.plive && sw && (!sw->active && !sw->empty)) {
447 448 449
        live = sw->total_hw_samples_mixed;

#ifdef DEBUG_PLIVE
B
bellard 已提交
450
        dolog ("Replacing voice %s with %d live samples\n", SW_NAME (sw), live);
451
        dolog ("Old %s freq %d, bits %d, channels %d\n",
B
bellard 已提交
452
               SW_NAME (sw), sw->info.freq, sw->info.bits, sw->info.nchannels);
453
        dolog ("New %s freq %d, bits %d, channels %d\n",
B
bellard 已提交
454 455 456
               name,
               freq,
               (fmt == AUD_FMT_S16 || fmt == AUD_FMT_U16) ? 16 : 8,
457 458 459 460 461 462 463 464 465 466 467
               nchannels);
#endif

        if (live) {
            old_sw = sw;
            old_sw->callback.fn = NULL;
            sw = NULL;
        }
    }
#endif

B
bellard 已提交
468 469
    if (!glue (conf.fixed_, TYPE).enabled && sw) {
        glue (AUD_close_, TYPE) (card, sw);
470 471 472 473 474 475 476
        sw = NULL;
    }

    if (sw) {
        HW *hw = sw->hw;

        if (!hw) {
B
bellard 已提交
477 478
            dolog ("Internal logic error voice `%s' has no hardware store\n",
                   SW_NAME (sw));
479 480 481
            goto fail;
        }

B
bellard 已提交
482
        glue (audio_pcm_sw_fini_, TYPE) (sw);
B
bellard 已提交
483
        if (glue (audio_pcm_sw_init_, TYPE) (sw, hw, name, as)) {
484 485 486 487
            goto fail;
        }
    }
    else {
B
bellard 已提交
488
        sw = glue (audio_pcm_create_voice_pair_, TYPE) (s, name, as);
489
        if (!sw) {
B
bellard 已提交
490
            dolog ("Failed to create voice `%s'\n", name);
B
bellard 已提交
491
            return NULL;
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
        }
    }

    if (sw) {
        sw->vol = nominal_volume;
        sw->callback.fn = callback_fn;
        sw->callback.opaque = callback_opaque;

#ifdef DAC
        if (live) {
            int mixed =
                (live << old_sw->info.shift)
                * old_sw->info.bytes_per_second
                / sw->info.bytes_per_second;

#ifdef DEBUG_PLIVE
            dolog ("Silence will be mixed %d\n", mixed);
#endif
            sw->total_hw_samples_mixed += mixed;
        }
#endif

#ifdef DEBUG_AUDIO
        dolog ("%s\n", name);
        audio_pcm_print_info ("hw", &sw->hw->info);
        audio_pcm_print_info ("sw", &sw->info);
#endif
    }

    return sw;

 fail:
B
bellard 已提交
524
    glue (AUD_close_, TYPE) (card, sw);
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
    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;
}

B
bellard 已提交
542
uint64_t glue (AUD_get_elapsed_usec_, TYPE) (SW *sw, QEMUAudioTimeStamp *ts)
543 544 545 546 547 548 549 550 551
{
    uint64_t delta, cur_ts, old_ts;

    if (!sw) {
        return 0;
    }

    cur_ts = sw->hw->ts_helper;
    old_ts = ts->old_ts;
552
    /* dolog ("cur %lld old %lld\n", cur_ts, old_ts); */
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570

    if (cur_ts >= old_ts) {
        delta = cur_ts - old_ts;
    }
    else {
        delta = UINT64_MAX - old_ts + cur_ts;
    }

    if (!delta) {
        return 0;
    }

    return (delta * sw->hw->info.freq) / 1000000;
}

#undef TYPE
#undef HW
#undef SW
B
bellard 已提交
571 572
#undef HWBUF
#undef NAME