]> git.proxmox.com Git - mirror_qemu.git/blame - audio/noaudio.c
iotests: Fix test 200 on s390x without virtio-pci
[mirror_qemu.git] / audio / noaudio.c
CommitLineData
7372f88d 1/*
1d14ffa9
FB
2 * QEMU Timer based audio emulation
3 *
4 * Copyright (c) 2004-2005 Vassili Karpov (malc)
5 *
7372f88d
FB
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
6086a565 24#include "qemu/osdep.h"
87ecb68b 25#include "qemu-common.h"
87776ab7 26#include "qemu/host-utils.h"
87ecb68b 27#include "audio.h"
1de7afc9 28#include "qemu/timer.h"
7372f88d 29
1d14ffa9
FB
30#define AUDIO_CAP "noaudio"
31#include "audio_int.h"
7372f88d 32
1d14ffa9
FB
33typedef struct NoVoiceOut {
34 HWVoiceOut hw;
7372f88d 35 int64_t old_ticks;
1d14ffa9 36} NoVoiceOut;
7372f88d 37
1d14ffa9
FB
38typedef struct NoVoiceIn {
39 HWVoiceIn hw;
40 int64_t old_ticks;
41} NoVoiceIn;
7372f88d 42
bdff253c 43static int no_run_out (HWVoiceOut *hw, int live)
7372f88d 44{
1d14ffa9 45 NoVoiceOut *no = (NoVoiceOut *) hw;
bdff253c 46 int decr, samples;
8ead62cf
FB
47 int64_t now;
48 int64_t ticks;
49 int64_t bytes;
7372f88d 50
bc72ad67 51 now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
8ead62cf 52 ticks = now - no->old_ticks;
73bcb24d
RS
53 bytes = muldiv64(ticks, hw->info.bytes_per_second, NANOSECONDS_PER_SECOND);
54 bytes = audio_MIN(bytes, INT_MAX);
8ead62cf
FB
55 samples = bytes >> hw->info.shift;
56
7372f88d
FB
57 no->old_ticks = now;
58 decr = audio_MIN (live, samples);
1d14ffa9
FB
59 hw->rpos = (hw->rpos + decr) % hw->samples;
60 return decr;
61}
7372f88d 62
1d14ffa9
FB
63static int no_write (SWVoiceOut *sw, void *buf, int len)
64{
73bcb24d 65 return audio_pcm_sw_write(sw, buf, len);
1d14ffa9 66}
7372f88d 67
5706db1d 68static int no_init_out(HWVoiceOut *hw, struct audsettings *as, void *drv_opaque)
1d14ffa9 69{
d929eba5 70 audio_pcm_init_info (&hw->info, as);
c0fe3827 71 hw->samples = 1024;
1d14ffa9
FB
72 return 0;
73}
7372f88d 74
1d14ffa9
FB
75static void no_fini_out (HWVoiceOut *hw)
76{
77 (void) hw;
7372f88d
FB
78}
79
1d14ffa9 80static int no_ctl_out (HWVoiceOut *hw, int cmd, ...)
7372f88d 81{
1d14ffa9
FB
82 (void) hw;
83 (void) cmd;
84 return 0;
7372f88d
FB
85}
86
5706db1d 87static int no_init_in(HWVoiceIn *hw, struct audsettings *as, void *drv_opaque)
7372f88d 88{
d929eba5 89 audio_pcm_init_info (&hw->info, as);
c0fe3827 90 hw->samples = 1024;
7372f88d
FB
91 return 0;
92}
93
1d14ffa9 94static void no_fini_in (HWVoiceIn *hw)
7372f88d
FB
95{
96 (void) hw;
97}
98
1d14ffa9
FB
99static int no_run_in (HWVoiceIn *hw)
100{
101 NoVoiceIn *no = (NoVoiceIn *) hw;
1d14ffa9
FB
102 int live = audio_pcm_hw_get_live_in (hw);
103 int dead = hw->samples - live;
ec36b695 104 int samples = 0;
1d14ffa9 105
8ead62cf 106 if (dead) {
bc72ad67 107 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
8ead62cf 108 int64_t ticks = now - no->old_ticks;
4f4cc0ef 109 int64_t bytes =
73bcb24d 110 muldiv64(ticks, hw->info.bytes_per_second, NANOSECONDS_PER_SECOND);
1d14ffa9 111
8ead62cf
FB
112 no->old_ticks = now;
113 bytes = audio_MIN (bytes, INT_MAX);
114 samples = bytes >> hw->info.shift;
115 samples = audio_MIN (samples, dead);
116 }
1d14ffa9
FB
117 return samples;
118}
119
120static int no_read (SWVoiceIn *sw, void *buf, int size)
121{
8a7d0890
MW
122 /* use custom code here instead of audio_pcm_sw_read() to avoid
123 * useless resampling/mixing */
1d14ffa9
FB
124 int samples = size >> sw->info.shift;
125 int total = sw->hw->total_samples_captured - sw->total_hw_samples_acquired;
126 int to_clear = audio_MIN (samples, total);
8a7d0890 127 sw->total_hw_samples_acquired += total;
1d14ffa9 128 audio_pcm_info_clear_buf (&sw->info, buf, to_clear);
85882c71 129 return to_clear << sw->info.shift;
1d14ffa9
FB
130}
131
132static int no_ctl_in (HWVoiceIn *hw, int cmd, ...)
7372f88d
FB
133{
134 (void) hw;
135 (void) cmd;
136 return 0;
137}
138
71830221 139static void *no_audio_init(Audiodev *dev)
7372f88d
FB
140{
141 return &no_audio_init;
142}
143
144static void no_audio_fini (void *opaque)
145{
1d14ffa9 146 (void) opaque;
7372f88d
FB
147}
148
35f4b58c 149static struct audio_pcm_ops no_pcm_ops = {
1dd3e4d1
JQ
150 .init_out = no_init_out,
151 .fini_out = no_fini_out,
152 .run_out = no_run_out,
153 .write = no_write,
154 .ctl_out = no_ctl_out,
155
156 .init_in = no_init_in,
157 .fini_in = no_fini_in,
158 .run_in = no_run_in,
159 .read = no_read,
160 .ctl_in = no_ctl_in
7372f88d
FB
161};
162
d3893a39 163static struct audio_driver no_audio_driver = {
bee37f32
JQ
164 .name = "none",
165 .descr = "Timer based audio emulation",
bee37f32
JQ
166 .init = no_audio_init,
167 .fini = no_audio_fini,
168 .pcm_ops = &no_pcm_ops,
169 .can_be_default = 1,
170 .max_voices_out = INT_MAX,
171 .max_voices_in = INT_MAX,
172 .voice_size_out = sizeof (NoVoiceOut),
173 .voice_size_in = sizeof (NoVoiceIn)
7372f88d 174};
d3893a39
GH
175
176static void register_audio_none(void)
177{
178 audio_driver_register(&no_audio_driver);
179}
180type_init(register_audio_none);