noaudio.c 4.5 KB
Newer Older
B
bellard 已提交
1
/*
2 3 4 5
 * QEMU Timer based audio emulation
 *
 * 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.
 */
P
pbrook 已提交
24 25 26
#include "qemu-common.h"
#include "audio.h"
#include "qemu-timer.h"
B
bellard 已提交
27

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

31 32
typedef struct NoVoiceOut {
    HWVoiceOut hw;
B
bellard 已提交
33
    int64_t old_ticks;
34
} NoVoiceOut;
B
bellard 已提交
35

36 37 38 39
typedef struct NoVoiceIn {
    HWVoiceIn hw;
    int64_t old_ticks;
} NoVoiceIn;
B
bellard 已提交
40

M
malc 已提交
41
static int no_run_out (HWVoiceOut *hw, int live)
B
bellard 已提交
42
{
43
    NoVoiceOut *no = (NoVoiceOut *) hw;
M
malc 已提交
44
    int decr, samples;
45 46 47
    int64_t now;
    int64_t ticks;
    int64_t bytes;
B
bellard 已提交
48

49 50
    now = qemu_get_clock (vm_clock);
    ticks = now - no->old_ticks;
M
malc 已提交
51
    bytes = muldiv64 (ticks, hw->info.bytes_per_second, get_ticks_per_sec ());
52 53 54
    bytes = audio_MIN (bytes, INT_MAX);
    samples = bytes >> hw->info.shift;

B
bellard 已提交
55 56
    no->old_ticks = now;
    decr = audio_MIN (live, samples);
57 58 59
    hw->rpos = (hw->rpos + decr) % hw->samples;
    return decr;
}
B
bellard 已提交
60

61 62 63 64
static int no_write (SWVoiceOut *sw, void *buf, int len)
{
    return audio_pcm_sw_write (sw, buf, len);
}
B
bellard 已提交
65

M
malc 已提交
66
static int no_init_out (HWVoiceOut *hw, struct audsettings *as)
67
{
B
bellard 已提交
68
    audio_pcm_init_info (&hw->info, as);
B
bellard 已提交
69
    hw->samples = 1024;
70 71
    return 0;
}
B
bellard 已提交
72

73 74 75
static void no_fini_out (HWVoiceOut *hw)
{
    (void) hw;
B
bellard 已提交
76 77
}

78
static int no_ctl_out (HWVoiceOut *hw, int cmd, ...)
B
bellard 已提交
79
{
80 81 82
    (void) hw;
    (void) cmd;
    return 0;
B
bellard 已提交
83 84
}

M
malc 已提交
85
static int no_init_in (HWVoiceIn *hw, struct audsettings *as)
B
bellard 已提交
86
{
B
bellard 已提交
87
    audio_pcm_init_info (&hw->info, as);
B
bellard 已提交
88
    hw->samples = 1024;
B
bellard 已提交
89 90 91
    return 0;
}

92
static void no_fini_in (HWVoiceIn *hw)
B
bellard 已提交
93 94 95 96
{
    (void) hw;
}

97 98 99 100 101
static int no_run_in (HWVoiceIn *hw)
{
    NoVoiceIn *no = (NoVoiceIn *) hw;
    int live = audio_pcm_hw_get_live_in (hw);
    int dead = hw->samples - live;
B
bellard 已提交
102
    int samples = 0;
103

104 105 106
    if (dead) {
        int64_t now = qemu_get_clock (vm_clock);
        int64_t ticks = now - no->old_ticks;
M
malc 已提交
107 108
        int64_t bytes =
            muldiv64 (ticks, hw->info.bytes_per_second, get_ticks_per_sec ());
109

110 111 112 113 114
        no->old_ticks = now;
        bytes = audio_MIN (bytes, INT_MAX);
        samples = bytes >> hw->info.shift;
        samples = audio_MIN (samples, dead);
    }
115 116 117 118 119
    return samples;
}

static int no_read (SWVoiceIn *sw, void *buf, int size)
{
120 121
    /* use custom code here instead of audio_pcm_sw_read() to avoid
     * useless resampling/mixing */
122 123 124
    int samples = size >> sw->info.shift;
    int total = sw->hw->total_samples_captured - sw->total_hw_samples_acquired;
    int to_clear = audio_MIN (samples, total);
125
    sw->total_hw_samples_acquired += total;
126
    audio_pcm_info_clear_buf (&sw->info, buf, to_clear);
127
    return to_clear << sw->info.shift;
128 129 130
}

static int no_ctl_in (HWVoiceIn *hw, int cmd, ...)
B
bellard 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143
{
    (void) hw;
    (void) cmd;
    return 0;
}

static void *no_audio_init (void)
{
    return &no_audio_init;
}

static void no_audio_fini (void *opaque)
{
144
    (void) opaque;
B
bellard 已提交
145 146
}

147
static struct audio_pcm_ops no_pcm_ops = {
148 149 150 151 152 153 154 155 156 157 158
    .init_out = no_init_out,
    .fini_out = no_fini_out,
    .run_out  = no_run_out,
    .write    = no_write,
    .ctl_out  = no_ctl_out,

    .init_in  = no_init_in,
    .fini_in  = no_fini_in,
    .run_in   = no_run_in,
    .read     = no_read,
    .ctl_in   = no_ctl_in
B
bellard 已提交
159 160
};

161
struct audio_driver no_audio_driver = {
162 163 164 165 166 167 168 169 170 171 172
    .name           = "none",
    .descr          = "Timer based audio emulation",
    .options        = NULL,
    .init           = no_audio_init,
    .fini           = no_audio_fini,
    .pcm_ops        = &no_pcm_ops,
    .can_be_default = 1,
    .max_voices_out = INT_MAX,
    .max_voices_in  = INT_MAX,
    .voice_size_out = sizeof (NoVoiceOut),
    .voice_size_in  = sizeof (NoVoiceIn)
B
bellard 已提交
173
};