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 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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
static int glue (audio_pcm_sw_init_, TYPE) (
    SW *sw,
    HW *hw,
    const char *name,
    audsettings_t *as,
    int endian
    )
{
    int err;

    audio_pcm_init_info (&sw->info, as, audio_need_to_swap_endian (endian));
    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]
        [sw->info.swap_endian]
        [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;
}

179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
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 已提交
198
static void glue (audio_pcm_hw_gc_, TYPE) (AudioState *s, HW **hwp)
199
{
B
bellard 已提交
200
    HW *hw = *hwp;
201 202

    if (!hw->sw_head.lh_first) {
203 204 205
#ifdef DAC
        audio_detach_capture (hw);
#endif
B
bellard 已提交
206 207 208 209 210 211
        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;
212 213 214
    }
}

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

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

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

B
bellard 已提交
244
static HW *glue (audio_pcm_hw_add_new_, TYPE) (AudioState *s, audsettings_t *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 273 274
#ifdef DAC
    LIST_INIT (&hw->sw_cap_head);
#endif
B
bellard 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
    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]
        [hw->info.swap_endian]
        [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;
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;
}

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

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

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

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

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

static SW *glue (audio_pcm_create_voice_pair_, TYPE) (
B
bellard 已提交
337 338
    AudioState *s,
    const char *sw_name,
B
bellard 已提交
339 340
    audsettings_t *as,
    int sw_endian
341 342 343 344
    )
{
    SW *sw;
    HW *hw;
B
bellard 已提交
345
    audsettings_t 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, sw_endian)) {
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,
B
bellard 已提交
410 411
    audsettings_t *as,
    int sw_endian
412 413
    )
{
B
bellard 已提交
414
    AudioState *s;
415 416 417 418 419
#ifdef DAC
    int live = 0;
    SW *old_sw = NULL;
#endif

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

B
bellard 已提交
430 431 432 433
    s = card->audio;

    if (audio_bug (AUDIO_FUNC, audio_validate_settigs (as))) {
        audio_print_settings (as);
434 435 436
        goto fail;
    }

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

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

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

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

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

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

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

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

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

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

    if (!sw) {
        return 0;
    }

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

    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 已提交
572 573
#undef HWBUF
#undef NAME