sdlaudio.c 9.7 KB
Newer Older
B
bellard 已提交
1
/*
2 3 4 5
 * QEMU SDL audio driver
 *
 * Copyright (c) 2004-2005 Vassili Karpov (malc)
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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.
 */
B
bellard 已提交
24 25
#include <SDL.h>
#include <SDL_thread.h>
B
bellard 已提交
26 27
#include "vl.h"

28 29
#define AUDIO_CAP "sdl"
#include "audio_int.h"
B
bellard 已提交
30

31 32 33 34 35 36
typedef struct SDLVoiceOut {
    HWVoiceOut hw;
    int live;
    int rpos;
    int decr;
} SDLVoiceOut;
B
bellard 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

static struct {
    int nb_samples;
} conf = {
    1024
};

struct SDLAudioState {
    int exit;
    SDL_mutex *mutex;
    SDL_sem *sem;
    int initialized;
} glob_sdl;
typedef struct SDLAudioState SDLAudioState;

52
static void GCC_FMT_ATTR (1, 2) sdl_logerr (const char *fmt, ...)
B
bellard 已提交
53
{
54 55 56 57 58 59 60
    va_list ap;

    va_start (ap, fmt);
    AUD_vlog (AUDIO_CAP, fmt, ap);
    va_end (ap);

    AUD_log (AUDIO_CAP, "Reason: %s\n", SDL_GetError ());
B
bellard 已提交
61 62
}

63
static int sdl_lock (SDLAudioState *s, const char *forfn)
B
bellard 已提交
64 65
{
    if (SDL_LockMutex (s->mutex)) {
66
        sdl_logerr ("SDL_LockMutex for %s failed\n", forfn);
B
bellard 已提交
67 68 69 70 71
        return -1;
    }
    return 0;
}

72
static int sdl_unlock (SDLAudioState *s, const char *forfn)
B
bellard 已提交
73 74
{
    if (SDL_UnlockMutex (s->mutex)) {
75
        sdl_logerr ("SDL_UnlockMutex for %s failed\n", forfn);
B
bellard 已提交
76 77 78 79 80
        return -1;
    }
    return 0;
}

81
static int sdl_post (SDLAudioState *s, const char *forfn)
B
bellard 已提交
82 83
{
    if (SDL_SemPost (s->sem)) {
84
        sdl_logerr ("SDL_SemPost for %s failed\n", forfn);
B
bellard 已提交
85 86 87 88 89
        return -1;
    }
    return 0;
}

90
static int sdl_wait (SDLAudioState *s, const char *forfn)
B
bellard 已提交
91 92
{
    if (SDL_SemWait (s->sem)) {
93
        sdl_logerr ("SDL_SemWait for %s failed\n", forfn);
B
bellard 已提交
94 95 96 97 98
        return -1;
    }
    return 0;
}

99
static int sdl_unlock_and_post (SDLAudioState *s, const char *forfn)
B
bellard 已提交
100
{
101
    if (sdl_unlock (s, forfn)) {
B
bellard 已提交
102
        return -1;
103
    }
B
bellard 已提交
104

105
    return sdl_post (s, forfn);
B
bellard 已提交
106 107
}

108
static int aud_to_sdlfmt (audfmt_e fmt, int *shift)
B
bellard 已提交
109 110
{
    switch (fmt) {
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
    case AUD_FMT_S8:
        *shift = 0;
        return AUDIO_S8;

    case AUD_FMT_U8:
        *shift = 0;
        return AUDIO_U8;

    case AUD_FMT_S16:
        *shift = 1;
        return AUDIO_S16LSB;

    case AUD_FMT_U16:
        *shift = 1;
        return AUDIO_U16LSB;

B
bellard 已提交
127
    default:
128 129 130 131 132
        dolog ("Internal logic error: Bad audio format %d\n", fmt);
#ifdef DEBUG_AUDIO
        abort ();
#endif
        return AUDIO_U8;
B
bellard 已提交
133 134 135
    }
}

136
static int sdl_to_audfmt (int sdlfmt, audfmt_e *fmt, int *endianess)
B
bellard 已提交
137
{
138 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
    switch (sdlfmt) {
    case AUDIO_S8:
        *endianess = 0;
        *fmt = AUD_FMT_S8;
        break;

    case AUDIO_U8:
        *endianess = 0;
        *fmt = AUD_FMT_U8;
        break;

    case AUDIO_S16LSB:
        *endianess = 0;
        *fmt = AUD_FMT_S16;
        break;

    case AUDIO_U16LSB:
        *endianess = 0;
        *fmt = AUD_FMT_U16;
        break;

    case AUDIO_S16MSB:
        *endianess = 1;
        *fmt = AUD_FMT_S16;
        break;

    case AUDIO_U16MSB:
        *endianess = 1;
        *fmt = AUD_FMT_U16;
        break;

B
bellard 已提交
169
    default:
170 171
        dolog ("Unrecognized SDL audio format %d\n", sdlfmt);
        return -1;
B
bellard 已提交
172
    }
173 174

    return 0;
B
bellard 已提交
175 176 177 178 179 180 181 182
}

static int sdl_open (SDL_AudioSpec *req, SDL_AudioSpec *obt)
{
    int status;

    status = SDL_OpenAudio (req, obt);
    if (status) {
183
        sdl_logerr ("SDL_OpenAudio failed\n");
B
bellard 已提交
184 185 186 187 188 189 190
    }
    return status;
}

static void sdl_close (SDLAudioState *s)
{
    if (s->initialized) {
191
        sdl_lock (s, "sdl_close");
B
bellard 已提交
192
        s->exit = 1;
193
        sdl_unlock_and_post (s, "sdl_close");
B
bellard 已提交
194 195 196 197 198 199 200 201
        SDL_PauseAudio (1);
        SDL_CloseAudio ();
        s->initialized = 0;
    }
}

static void sdl_callback (void *opaque, Uint8 *buf, int len)
{
202
    SDLVoiceOut *sdl = opaque;
B
bellard 已提交
203
    SDLAudioState *s = &glob_sdl;
204 205
    HWVoiceOut *hw = &sdl->hw;
    int samples = len >> hw->info.shift;
B
bellard 已提交
206 207 208 209 210 211

    if (s->exit) {
        return;
    }

    while (samples) {
212
        int to_mix, decr;
B
bellard 已提交
213 214

        /* dolog ("in callback samples=%d\n", samples); */
215
        sdl_wait (s, "sdl_callback");
B
bellard 已提交
216 217 218 219
        if (s->exit) {
            return;
        }

220 221 222 223 224 225 226 227 228 229 230
        if (sdl_lock (s, "sdl_callback")) {
            return;
        }

        if (audio_bug (AUDIO_FUNC, sdl->live < 0 || sdl->live > hw->samples)) {
            dolog ("sdl->live=%d hw->samples=%d\n",
                   sdl->live, hw->samples);
            return;
        }

        if (!sdl->live) {
B
bellard 已提交
231
            goto again;
232
        }
B
bellard 已提交
233 234

        /* dolog ("in callback live=%d\n", live); */
235
        to_mix = audio_MIN (samples, sdl->live);
B
bellard 已提交
236 237 238 239 240 241 242
        decr = to_mix;
        while (to_mix) {
            int chunk = audio_MIN (to_mix, hw->samples - hw->rpos);
            st_sample_t *src = hw->mix_buf + hw->rpos;

            /* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
            hw->clip (buf, src, chunk);
243
            sdl->rpos = (sdl->rpos + chunk) % hw->samples;
B
bellard 已提交
244
            to_mix -= chunk;
245
            buf += chunk << hw->info.shift;
B
bellard 已提交
246 247
        }
        samples -= decr;
248 249
        sdl->live -= decr;
        sdl->decr += decr;
B
bellard 已提交
250 251

    again:
252 253 254
        if (sdl_unlock (s, "sdl_callback")) {
            return;
        }
B
bellard 已提交
255 256 257 258
    }
    /* dolog ("done len=%d\n", len); */
}

259
static int sdl_write_out (SWVoiceOut *sw, void *buf, int len)
B
bellard 已提交
260
{
261 262 263 264 265 266 267 268 269 270 271 272 273 274 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 300 301
    return audio_pcm_sw_write (sw, buf, len);
}

static int sdl_run_out (HWVoiceOut *hw)
{
    int decr, live;
    SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
    SDLAudioState *s = &glob_sdl;

    if (sdl_lock (s, "sdl_callback")) {
        return 0;
    }

    live = audio_pcm_hw_get_live_out (hw);

    if (sdl->decr > live) {
        ldebug ("sdl->decr %d live %d sdl->live %d\n",
                sdl->decr,
                live,
                sdl->live);
    }

    decr = audio_MIN (sdl->decr, live);
    sdl->decr -= decr;

    sdl->live = live - decr;
    hw->rpos = sdl->rpos;

    if (sdl->live > 0) {
        sdl_unlock_and_post (s, "sdl_callback");
    }
    else {
        sdl_unlock (s, "sdl_callback");
    }
    return decr;
}

static void sdl_fini_out (HWVoiceOut *hw)
{
    (void) hw;

B
bellard 已提交
302 303 304
    sdl_close (&glob_sdl);
}

B
bellard 已提交
305
static int sdl_init_out (HWVoiceOut *hw, audsettings_t *as)
B
bellard 已提交
306
{
307
    SDLVoiceOut *sdl = (SDLVoiceOut *) hw;
B
bellard 已提交
308 309 310
    SDLAudioState *s = &glob_sdl;
    SDL_AudioSpec req, obt;
    int shift;
311 312 313
    int endianess;
    int err;
    audfmt_e effective_fmt;
B
bellard 已提交
314
    audsettings_t obt_as;
B
bellard 已提交
315

B
bellard 已提交
316
    shift <<= as->nchannels == 2;
B
bellard 已提交
317

B
bellard 已提交
318 319 320
    req.freq = as->freq;
    req.format = aud_to_sdlfmt (as->fmt, &shift);
    req.channels = as->nchannels;
B
bellard 已提交
321 322 323 324
    req.samples = conf.nb_samples;
    req.callback = sdl_callback;
    req.userdata = sdl;

325 326 327 328 329 330 331
    if (sdl_open (&req, &obt)) {
        return -1;
    }

    err = sdl_to_audfmt (obt.format, &effective_fmt, &endianess);
    if (err) {
        sdl_close (s);
B
bellard 已提交
332
        return -1;
333
    }
B
bellard 已提交
334

B
bellard 已提交
335 336 337 338
    obt_as.freq = obt.freq;
    obt_as.nchannels = obt.channels;
    obt_as.fmt = effective_fmt;

339 340
    audio_pcm_init_info (
        &hw->info,
B
bellard 已提交
341
        &obt_as,
342 343
        audio_need_to_swap_endian (endianess)
        );
B
bellard 已提交
344
    hw->samples = obt.samples;
B
bellard 已提交
345 346 347 348 349 350 351

    s->initialized = 1;
    s->exit = 0;
    SDL_PauseAudio (0);
    return 0;
}

352
static int sdl_ctl_out (HWVoiceOut *hw, int cmd, ...)
B
bellard 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
{
    (void) hw;

    switch (cmd) {
    case VOICE_ENABLE:
        SDL_PauseAudio (0);
        break;

    case VOICE_DISABLE:
        SDL_PauseAudio (1);
        break;
    }
    return 0;
}

static void *sdl_audio_init (void)
{
    SDLAudioState *s = &glob_sdl;

    if (SDL_InitSubSystem (SDL_INIT_AUDIO)) {
373
        sdl_logerr ("SDL failed to initialize audio subsystem\n");
B
bellard 已提交
374 375 376 377 378
        return NULL;
    }

    s->mutex = SDL_CreateMutex ();
    if (!s->mutex) {
379
        sdl_logerr ("Failed to create SDL mutex\n");
B
bellard 已提交
380 381 382 383 384 385
        SDL_QuitSubSystem (SDL_INIT_AUDIO);
        return NULL;
    }

    s->sem = SDL_CreateSemaphore (0);
    if (!s->sem) {
386
        sdl_logerr ("Failed to create SDL semaphore\n");
B
bellard 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
        SDL_DestroyMutex (s->mutex);
        SDL_QuitSubSystem (SDL_INIT_AUDIO);
        return NULL;
    }

    return s;
}

static void sdl_audio_fini (void *opaque)
{
    SDLAudioState *s = opaque;
    sdl_close (s);
    SDL_DestroySemaphore (s->sem);
    SDL_DestroyMutex (s->mutex);
    SDL_QuitSubSystem (SDL_INIT_AUDIO);
}

404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
static struct audio_option sdl_options[] = {
    {"SAMPLES", AUD_OPT_INT, &conf.nb_samples,
     "Size of SDL buffer in samples", NULL, 0},
    {NULL, 0, NULL, NULL, NULL, 0}
};

static struct audio_pcm_ops sdl_pcm_ops = {
    sdl_init_out,
    sdl_fini_out,
    sdl_run_out,
    sdl_write_out,
    sdl_ctl_out,

    NULL,
    NULL,
    NULL,
    NULL,
    NULL
B
bellard 已提交
422 423
};

424 425 426 427 428 429 430 431 432 433 434 435
struct audio_driver sdl_audio_driver = {
    INIT_FIELD (name           = ) "sdl",
    INIT_FIELD (descr          = ) "SDL http://www.libsdl.org",
    INIT_FIELD (options        = ) sdl_options,
    INIT_FIELD (init           = ) sdl_audio_init,
    INIT_FIELD (fini           = ) sdl_audio_fini,
    INIT_FIELD (pcm_ops        = ) &sdl_pcm_ops,
    INIT_FIELD (can_be_default = ) 1,
    INIT_FIELD (max_voices_out = ) 1,
    INIT_FIELD (max_voices_in  = ) 0,
    INIT_FIELD (voice_size_out = ) sizeof (SDLVoiceOut),
    INIT_FIELD (voice_size_in  = ) 0
B
bellard 已提交
436
};