]> git.proxmox.com Git - mirror_qemu.git/blame - audio/wavaudio.c
dsoundaudio: port to the new audio backend api
[mirror_qemu.git] / audio / wavaudio.c
CommitLineData
85571bc7 1/*
1d14ffa9
FB
2 * QEMU WAV audio driver
3 *
4 * Copyright (c) 2004-2005 Vassili Karpov (malc)
5 *
85571bc7
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 */
0b8fa32f 24
6086a565 25#include "qemu/osdep.h"
87776ab7 26#include "qemu/host-utils.h"
0b8fa32f 27#include "qemu/module.h"
1de7afc9 28#include "qemu/timer.h"
0927d166 29#include "qapi/opts-visitor.h"
87ecb68b 30#include "audio.h"
85571bc7 31
1d14ffa9
FB
32#define AUDIO_CAP "wav"
33#include "audio_int.h"
fb065187 34
1d14ffa9
FB
35typedef struct WAVVoiceOut {
36 HWVoiceOut hw;
27acf660 37 FILE *f;
fb065187
FB
38 int64_t old_ticks;
39 void *pcm_buf;
40 int total_samples;
1d14ffa9 41} WAVVoiceOut;
85571bc7 42
7520462b 43static size_t wav_run_out(HWVoiceOut *hw, size_t live)
85571bc7 44{
1d14ffa9 45 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
7520462b 46 size_t rpos, decr, samples;
85571bc7 47 uint8_t *dst;
1ea879e5 48 struct st_sample *src;
bc72ad67 49 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
85571bc7 50 int64_t ticks = now - wav->old_ticks;
4f4cc0ef 51 int64_t bytes =
73bcb24d 52 muldiv64(ticks, hw->info.bytes_per_second, NANOSECONDS_PER_SECOND);
85571bc7 53
1d14ffa9
FB
54 if (bytes > INT_MAX) {
55 samples = INT_MAX >> hw->info.shift;
56 }
57 else {
58 samples = bytes >> hw->info.shift;
59 }
85571bc7 60
7372f88d 61 wav->old_ticks = now;
58935915 62 decr = MIN (live, samples);
85571bc7
FB
63 samples = decr;
64 rpos = hw->rpos;
65 while (samples) {
66 int left_till_end_samples = hw->samples - rpos;
58935915 67 int convert_samples = MIN (samples, left_till_end_samples);
85571bc7 68
1d14ffa9
FB
69 src = hw->mix_buf + rpos;
70 dst = advance (wav->pcm_buf, rpos << hw->info.shift);
85571bc7
FB
71
72 hw->clip (dst, src, convert_samples);
27acf660
JQ
73 if (fwrite (dst, convert_samples << hw->info.shift, 1, wav->f) != 1) {
74 dolog ("wav_run_out: fwrite of %d bytes failed\nReaons: %s\n",
75 convert_samples << hw->info.shift, strerror (errno));
76 }
85571bc7
FB
77
78 rpos = (rpos + convert_samples) % hw->samples;
79 samples -= convert_samples;
80 wav->total_samples += convert_samples;
81 }
82
85571bc7 83 hw->rpos = rpos;
1d14ffa9 84 return decr;
85571bc7
FB
85}
86
85571bc7
FB
87/* VICE code: Store number as little endian. */
88static void le_store (uint8_t *buf, uint32_t val, int len)
89{
90 int i;
91 for (i = 0; i < len; i++) {
92 buf[i] = (uint8_t) (val & 0xff);
93 val >>= 8;
94 }
95}
96
5706db1d
KZ
97static int wav_init_out(HWVoiceOut *hw, struct audsettings *as,
98 void *drv_opaque)
85571bc7 99{
1d14ffa9 100 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
c0fe3827 101 int bits16 = 0, stereo = 0;
85571bc7
FB
102 uint8_t hdr[] = {
103 0x52, 0x49, 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, 0x57, 0x41, 0x56,
104 0x45, 0x66, 0x6d, 0x74, 0x20, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00,
105 0x02, 0x00, 0x44, 0xac, 0x00, 0x00, 0x10, 0xb1, 0x02, 0x00, 0x04,
106 0x00, 0x10, 0x00, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x00, 0x00
107 };
0927d166
KZ
108 Audiodev *dev = drv_opaque;
109 AudiodevWavOptions *wopts = &dev->u.wav;
110 struct audsettings wav_as = audiodev_to_audsettings(dev->u.wav.out);
111 const char *wav_path = wopts->has_path ? wopts->path : "qemu.wav";
85571bc7 112
c0fe3827
FB
113 stereo = wav_as.nchannels == 2;
114 switch (wav_as.fmt) {
85bc5852
KZ
115 case AUDIO_FORMAT_S8:
116 case AUDIO_FORMAT_U8:
1d14ffa9 117 bits16 = 0;
85571bc7
FB
118 break;
119
85bc5852
KZ
120 case AUDIO_FORMAT_S16:
121 case AUDIO_FORMAT_U16:
85571bc7
FB
122 bits16 = 1;
123 break;
f941aa25 124
85bc5852
KZ
125 case AUDIO_FORMAT_S32:
126 case AUDIO_FORMAT_U32:
f941aa25
TS
127 dolog ("WAVE files can not handle 32bit formats\n");
128 return -1;
85bc5852
KZ
129
130 default:
131 abort();
85571bc7
FB
132 }
133
134 hdr[34] = bits16 ? 0x10 : 0x08;
c0fe3827 135
d929eba5
FB
136 wav_as.endianness = 0;
137 audio_pcm_init_info (&hw->info, &wav_as);
c0fe3827
FB
138
139 hw->samples = 1024;
470bcabd 140 wav->pcm_buf = audio_calloc(__func__, hw->samples, 1 << hw->info.shift);
1d14ffa9 141 if (!wav->pcm_buf) {
7520462b
KZ
142 dolog("Could not allocate buffer (%zu bytes)\n",
143 hw->samples << hw->info.shift);
85571bc7 144 return -1;
1d14ffa9 145 }
85571bc7 146
1d14ffa9
FB
147 le_store (hdr + 22, hw->info.nchannels, 2);
148 le_store (hdr + 24, hw->info.freq, 4);
c0fe3827
FB
149 le_store (hdr + 28, hw->info.freq << (bits16 + stereo), 4);
150 le_store (hdr + 32, 1 << (bits16 + stereo), 2);
85571bc7 151
0927d166 152 wav->f = fopen(wav_path, "wb");
85571bc7 153 if (!wav->f) {
1d14ffa9 154 dolog ("Failed to open wave file `%s'\nReason: %s\n",
0927d166 155 wav_path, strerror(errno));
7267c094 156 g_free (wav->pcm_buf);
7372f88d 157 wav->pcm_buf = NULL;
85571bc7
FB
158 return -1;
159 }
160
27acf660
JQ
161 if (fwrite (hdr, sizeof (hdr), 1, wav->f) != 1) {
162 dolog ("wav_init_out: failed to write header\nReason: %s\n",
163 strerror(errno));
164 return -1;
165 }
85571bc7
FB
166 return 0;
167}
168
1d14ffa9 169static void wav_fini_out (HWVoiceOut *hw)
85571bc7 170{
1d14ffa9 171 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
85571bc7
FB
172 uint8_t rlen[4];
173 uint8_t dlen[4];
50903530
FB
174 uint32_t datalen = wav->total_samples << hw->info.shift;
175 uint32_t rifflen = datalen + 36;
85571bc7 176
c0fe3827 177 if (!wav->f) {
85571bc7 178 return;
1d14ffa9 179 }
85571bc7
FB
180
181 le_store (rlen, rifflen, 4);
182 le_store (dlen, datalen, 4);
183
27acf660
JQ
184 if (fseek (wav->f, 4, SEEK_SET)) {
185 dolog ("wav_fini_out: fseek to rlen failed\nReason: %s\n",
186 strerror(errno));
187 goto doclose;
188 }
189 if (fwrite (rlen, 4, 1, wav->f) != 1) {
190 dolog ("wav_fini_out: failed to write rlen\nReason: %s\n",
191 strerror (errno));
192 goto doclose;
193 }
194 if (fseek (wav->f, 32, SEEK_CUR)) {
195 dolog ("wav_fini_out: fseek to dlen failed\nReason: %s\n",
196 strerror (errno));
197 goto doclose;
198 }
199 if (fwrite (dlen, 4, 1, wav->f) != 1) {
200 dolog ("wav_fini_out: failed to write dlen\nReaons: %s\n",
201 strerror (errno));
202 goto doclose;
203 }
85571bc7 204
27acf660
JQ
205 doclose:
206 if (fclose (wav->f)) {
207 dolog ("wav_fini_out: fclose %p failed\nReason: %s\n",
208 wav->f, strerror (errno));
209 }
85571bc7 210 wav->f = NULL;
7372f88d 211
7267c094 212 g_free (wav->pcm_buf);
7372f88d 213 wav->pcm_buf = NULL;
85571bc7
FB
214}
215
1d14ffa9 216static int wav_ctl_out (HWVoiceOut *hw, int cmd, ...)
85571bc7
FB
217{
218 (void) hw;
219 (void) cmd;
220 return 0;
221}
222
71830221 223static void *wav_audio_init(Audiodev *dev)
85571bc7 224{
0927d166
KZ
225 assert(dev->driver == AUDIODEV_DRIVER_WAV);
226 return dev;
85571bc7
FB
227}
228
229static void wav_audio_fini (void *opaque)
230{
231 ldebug ("wav_fini");
232}
233
35f4b58c 234static struct audio_pcm_ops wav_pcm_ops = {
1dd3e4d1
JQ
235 .init_out = wav_init_out,
236 .fini_out = wav_fini_out,
237 .run_out = wav_run_out,
1dd3e4d1 238 .ctl_out = wav_ctl_out,
85571bc7
FB
239};
240
d3893a39 241static struct audio_driver wav_audio_driver = {
bee37f32
JQ
242 .name = "wav",
243 .descr = "WAV renderer http://wikipedia.org/wiki/WAV",
bee37f32
JQ
244 .init = wav_audio_init,
245 .fini = wav_audio_fini,
98f9f48c 246 .pcm_ops = &wav_pcm_ops,
bee37f32
JQ
247 .can_be_default = 0,
248 .max_voices_out = 1,
249 .max_voices_in = 0,
250 .voice_size_out = sizeof (WAVVoiceOut),
251 .voice_size_in = 0
85571bc7 252};
d3893a39
GH
253
254static void register_audio_wav(void)
255{
256 audio_driver_register(&wav_audio_driver);
257}
258type_init(register_audio_wav);