audio_template.h 13.2 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 85 86 87 88
    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)
{
    HWBUF = audio_calloc (AUDIO_FUNC, hw->samples, sizeof (st_sample_t));
    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

B
bellard 已提交
119 120 121 122
    sw->buf = audio_calloc (AUDIO_FUNC, samples, sizeof (st_sample_t));
    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,
B
bellard 已提交
143
    audsettings_t *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]
B
bellard 已提交
167 168 169 170 171 172 173 174 175 176 177
        [sw->info.bits == 16];

    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,
B
bellard 已提交
232
    audsettings_t *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;
}

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

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

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

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

    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;
299 300 301
#ifdef DAC
    audio_attach_capture (s, hw);
#endif
B
bellard 已提交
302 303 304 305 306 307
    return hw;

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

B
bellard 已提交
311
static HW *glue (audio_pcm_hw_add_, TYPE) (AudioState *s, audsettings_t *as)
312 313 314
{
    HW *hw;

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

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

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

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

static SW *glue (audio_pcm_create_voice_pair_, TYPE) (
B
bellard 已提交
336 337
    AudioState *s,
    const char *sw_name,
B
bellard 已提交
338
    audsettings_t *as
339 340 341 342
    )
{
    SW *sw;
    HW *hw;
B
bellard 已提交
343
    audsettings_t hw_as;
344

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

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

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

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

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

    return sw;

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

B
bellard 已提交
381 382 383 384 385 386 387
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 已提交
388

B
bellard 已提交
389
void glue (AUD_close_, TYPE) (QEMUSoundCard *card, SW *sw)
390 391
{
    if (sw) {
B
bellard 已提交
392 393 394 395 396 397 398
        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);
399 400 401 402
    }
}

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

B
bellard 已提交
417 418 419 420 421 422 423
    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);
424 425 426
        goto fail;
    }

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

    if (audio_bug (AUDIO_FUNC, audio_validate_settigs (as))) {
        audio_print_settings (as);
431 432 433
        goto fail;
    }

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

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

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

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

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

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

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

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

B
bellard 已提交
480
        glue (audio_pcm_sw_fini_, TYPE) (sw);
B
bellard 已提交
481
        if (glue (audio_pcm_sw_init_, TYPE) (sw, hw, name, as)) {
482 483 484 485
            goto fail;
        }
    }
    else {
B
bellard 已提交
486
        sw = glue (audio_pcm_create_voice_pair_, TYPE) (s, name, as);
487
        if (!sw) {
B
bellard 已提交
488
            dolog ("Failed to create voice `%s'\n", name);
B
bellard 已提交
489
            return NULL;
490 491 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
        }
    }

    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 已提交
522
    glue (AUD_close_, TYPE) (card, sw);
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
    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 已提交
540
uint64_t glue (AUD_get_elapsed_usec_, TYPE) (SW *sw, QEMUAudioTimeStamp *ts)
541 542 543 544 545 546 547 548 549
{
    uint64_t delta, cur_ts, old_ts;

    if (!sw) {
        return 0;
    }

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

    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 已提交
569 570
#undef HWBUF
#undef NAME