blob: c522be4531f2831b44b00cf88596a59afcaad04a [file] [log] [blame]
bellard85571bc2004-11-07 18:04:02 +00001/*
bellard1d14ffa2005-10-30 18:58:22 +00002 * QEMU WAV audio driver
3 *
4 * Copyright (c) 2004-2005 Vassili Karpov (malc)
5 *
bellard85571bc2004-11-07 18:04:02 +00006 * 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 */
pbrook87ecb682007-11-17 17:14:51 +000024#include "hw/hw.h"
25#include "qemu-timer.h"
26#include "audio.h"
bellard85571bc2004-11-07 18:04:02 +000027
bellard1d14ffa2005-10-30 18:58:22 +000028#define AUDIO_CAP "wav"
29#include "audio_int.h"
bellardfb065182004-11-09 23:09:44 +000030
bellard1d14ffa2005-10-30 18:58:22 +000031typedef struct WAVVoiceOut {
32 HWVoiceOut hw;
bellardfb065182004-11-09 23:09:44 +000033 QEMUFile *f;
34 int64_t old_ticks;
35 void *pcm_buf;
36 int total_samples;
bellard1d14ffa2005-10-30 18:58:22 +000037} WAVVoiceOut;
bellard85571bc2004-11-07 18:04:02 +000038
39static struct {
malc1ea879e2008-12-03 22:48:44 +000040 struct audsettings settings;
bellard85571bc2004-11-07 18:04:02 +000041 const char *wav_path;
42} conf = {
Juan Quintela1a40d5e2009-08-11 02:31:17 +020043 .settings.freq = 44100,
44 .settings.nchannels = 2,
45 .settings.fmt = AUD_FMT_S16,
46 .wav_path = "qemu.wav"
bellard85571bc2004-11-07 18:04:02 +000047};
48
malcbdff2532009-09-18 11:37:39 +040049static int wav_run_out (HWVoiceOut *hw, int live)
bellard85571bc2004-11-07 18:04:02 +000050{
bellard1d14ffa2005-10-30 18:58:22 +000051 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
malcbdff2532009-09-18 11:37:39 +040052 int rpos, decr, samples;
bellard85571bc2004-11-07 18:04:02 +000053 uint8_t *dst;
malc1ea879e2008-12-03 22:48:44 +000054 struct st_sample *src;
bellard85571bc2004-11-07 18:04:02 +000055 int64_t now = qemu_get_clock (vm_clock);
56 int64_t ticks = now - wav->old_ticks;
malc4f4cc0e2009-09-18 08:16:03 +040057 int64_t bytes =
58 muldiv64 (ticks, hw->info.bytes_per_second, get_ticks_per_sec ());
bellard85571bc2004-11-07 18:04:02 +000059
bellard1d14ffa2005-10-30 18:58:22 +000060 if (bytes > INT_MAX) {
61 samples = INT_MAX >> hw->info.shift;
62 }
63 else {
64 samples = bytes >> hw->info.shift;
65 }
bellard85571bc2004-11-07 18:04:02 +000066
bellard7372f882004-11-11 16:55:09 +000067 wav->old_ticks = now;
bellard85571bc2004-11-07 18:04:02 +000068 decr = audio_MIN (live, samples);
69 samples = decr;
70 rpos = hw->rpos;
71 while (samples) {
72 int left_till_end_samples = hw->samples - rpos;
73 int convert_samples = audio_MIN (samples, left_till_end_samples);
74
bellard1d14ffa2005-10-30 18:58:22 +000075 src = hw->mix_buf + rpos;
76 dst = advance (wav->pcm_buf, rpos << hw->info.shift);
bellard85571bc2004-11-07 18:04:02 +000077
78 hw->clip (dst, src, convert_samples);
bellard1d14ffa2005-10-30 18:58:22 +000079 qemu_put_buffer (wav->f, dst, convert_samples << hw->info.shift);
bellard85571bc2004-11-07 18:04:02 +000080
81 rpos = (rpos + convert_samples) % hw->samples;
82 samples -= convert_samples;
83 wav->total_samples += convert_samples;
84 }
85
bellard85571bc2004-11-07 18:04:02 +000086 hw->rpos = rpos;
bellard1d14ffa2005-10-30 18:58:22 +000087 return decr;
bellard85571bc2004-11-07 18:04:02 +000088}
89
bellard1d14ffa2005-10-30 18:58:22 +000090static int wav_write_out (SWVoiceOut *sw, void *buf, int len)
bellard85571bc2004-11-07 18:04:02 +000091{
bellard1d14ffa2005-10-30 18:58:22 +000092 return audio_pcm_sw_write (sw, buf, len);
bellard85571bc2004-11-07 18:04:02 +000093}
94
bellard85571bc2004-11-07 18:04:02 +000095/* VICE code: Store number as little endian. */
96static void le_store (uint8_t *buf, uint32_t val, int len)
97{
98 int i;
99 for (i = 0; i < len; i++) {
100 buf[i] = (uint8_t) (val & 0xff);
101 val >>= 8;
102 }
103}
104
malc1ea879e2008-12-03 22:48:44 +0000105static int wav_init_out (HWVoiceOut *hw, struct audsettings *as)
bellard85571bc2004-11-07 18:04:02 +0000106{
bellard1d14ffa2005-10-30 18:58:22 +0000107 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
bellardc0fe3822005-11-05 18:55:28 +0000108 int bits16 = 0, stereo = 0;
bellard85571bc2004-11-07 18:04:02 +0000109 uint8_t hdr[] = {
110 0x52, 0x49, 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, 0x57, 0x41, 0x56,
111 0x45, 0x66, 0x6d, 0x74, 0x20, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00,
112 0x02, 0x00, 0x44, 0xac, 0x00, 0x00, 0x10, 0xb1, 0x02, 0x00, 0x04,
113 0x00, 0x10, 0x00, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x00, 0x00
114 };
malc1ea879e2008-12-03 22:48:44 +0000115 struct audsettings wav_as = conf.settings;
bellard85571bc2004-11-07 18:04:02 +0000116
bellardc0fe3822005-11-05 18:55:28 +0000117 (void) as;
bellard1d14ffa2005-10-30 18:58:22 +0000118
bellardc0fe3822005-11-05 18:55:28 +0000119 stereo = wav_as.nchannels == 2;
120 switch (wav_as.fmt) {
bellard85571bc2004-11-07 18:04:02 +0000121 case AUD_FMT_S8:
122 case AUD_FMT_U8:
bellard1d14ffa2005-10-30 18:58:22 +0000123 bits16 = 0;
bellard85571bc2004-11-07 18:04:02 +0000124 break;
125
126 case AUD_FMT_S16:
127 case AUD_FMT_U16:
128 bits16 = 1;
129 break;
thsf941aa22007-02-17 22:19:29 +0000130
131 case AUD_FMT_S32:
132 case AUD_FMT_U32:
133 dolog ("WAVE files can not handle 32bit formats\n");
134 return -1;
bellard85571bc2004-11-07 18:04:02 +0000135 }
136
137 hdr[34] = bits16 ? 0x10 : 0x08;
bellardc0fe3822005-11-05 18:55:28 +0000138
bellardd929eba2006-07-04 21:47:22 +0000139 wav_as.endianness = 0;
140 audio_pcm_init_info (&hw->info, &wav_as);
bellardc0fe3822005-11-05 18:55:28 +0000141
142 hw->samples = 1024;
143 wav->pcm_buf = audio_calloc (AUDIO_FUNC, hw->samples, 1 << hw->info.shift);
bellard1d14ffa2005-10-30 18:58:22 +0000144 if (!wav->pcm_buf) {
bellardc0fe3822005-11-05 18:55:28 +0000145 dolog ("Could not allocate buffer (%d bytes)\n",
146 hw->samples << hw->info.shift);
bellard85571bc2004-11-07 18:04:02 +0000147 return -1;
bellard1d14ffa2005-10-30 18:58:22 +0000148 }
bellard85571bc2004-11-07 18:04:02 +0000149
bellard1d14ffa2005-10-30 18:58:22 +0000150 le_store (hdr + 22, hw->info.nchannels, 2);
151 le_store (hdr + 24, hw->info.freq, 4);
bellardc0fe3822005-11-05 18:55:28 +0000152 le_store (hdr + 28, hw->info.freq << (bits16 + stereo), 4);
153 le_store (hdr + 32, 1 << (bits16 + stereo), 2);
bellard85571bc2004-11-07 18:04:02 +0000154
bellarde70332b2006-08-05 21:31:46 +0000155 wav->f = qemu_fopen (conf.wav_path, "wb");
bellard85571bc2004-11-07 18:04:02 +0000156 if (!wav->f) {
bellard1d14ffa2005-10-30 18:58:22 +0000157 dolog ("Failed to open wave file `%s'\nReason: %s\n",
bellard85571bc2004-11-07 18:04:02 +0000158 conf.wav_path, strerror (errno));
bellard7372f882004-11-11 16:55:09 +0000159 qemu_free (wav->pcm_buf);
160 wav->pcm_buf = NULL;
bellard85571bc2004-11-07 18:04:02 +0000161 return -1;
162 }
163
164 qemu_put_buffer (wav->f, hdr, sizeof (hdr));
165 return 0;
166}
167
bellard1d14ffa2005-10-30 18:58:22 +0000168static void wav_fini_out (HWVoiceOut *hw)
bellard85571bc2004-11-07 18:04:02 +0000169{
bellard1d14ffa2005-10-30 18:58:22 +0000170 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
bellard85571bc2004-11-07 18:04:02 +0000171 uint8_t rlen[4];
172 uint8_t dlen[4];
bellard50903532005-11-20 16:22:16 +0000173 uint32_t datalen = wav->total_samples << hw->info.shift;
174 uint32_t rifflen = datalen + 36;
bellard85571bc2004-11-07 18:04:02 +0000175
bellardc0fe3822005-11-05 18:55:28 +0000176 if (!wav->f) {
bellard85571bc2004-11-07 18:04:02 +0000177 return;
bellard1d14ffa2005-10-30 18:58:22 +0000178 }
bellard85571bc2004-11-07 18:04:02 +0000179
180 le_store (rlen, rifflen, 4);
181 le_store (dlen, datalen, 4);
182
183 qemu_fseek (wav->f, 4, SEEK_SET);
184 qemu_put_buffer (wav->f, rlen, 4);
185
186 qemu_fseek (wav->f, 32, SEEK_CUR);
187 qemu_put_buffer (wav->f, dlen, 4);
188
bellarde70332b2006-08-05 21:31:46 +0000189 qemu_fclose (wav->f);
bellard85571bc2004-11-07 18:04:02 +0000190 wav->f = NULL;
bellard7372f882004-11-11 16:55:09 +0000191
192 qemu_free (wav->pcm_buf);
193 wav->pcm_buf = NULL;
bellard85571bc2004-11-07 18:04:02 +0000194}
195
bellard1d14ffa2005-10-30 18:58:22 +0000196static int wav_ctl_out (HWVoiceOut *hw, int cmd, ...)
bellard85571bc2004-11-07 18:04:02 +0000197{
198 (void) hw;
199 (void) cmd;
200 return 0;
201}
202
203static void *wav_audio_init (void)
204{
205 return &conf;
206}
207
208static void wav_audio_fini (void *opaque)
209{
bellard1d14ffa2005-10-30 18:58:22 +0000210 (void) opaque;
bellard85571bc2004-11-07 18:04:02 +0000211 ldebug ("wav_fini");
212}
213
blueswir18869def2008-10-05 10:01:05 +0000214static struct audio_option wav_options[] = {
malc98f9f482009-08-11 20:48:02 +0400215 {
216 .name = "FREQUENCY",
217 .tag = AUD_OPT_INT,
218 .valp = &conf.settings.freq,
219 .descr = "Frequency"
220 },
221 {
222 .name = "FORMAT",
223 .tag = AUD_OPT_FMT,
224 .valp = &conf.settings.fmt,
225 .descr = "Format"
226 },
227 {
228 .name = "DAC_FIXED_CHANNELS",
229 .tag = AUD_OPT_INT,
230 .valp = &conf.settings.nchannels,
231 .descr = "Number of channels (1 - mono, 2 - stereo)"
232 },
233 {
234 .name = "PATH",
235 .tag = AUD_OPT_STR,
236 .valp = &conf.wav_path,
237 .descr = "Path to wave file"
238 },
Juan Quintela2700efa2009-08-11 02:31:16 +0200239 { /* End of list */ }
bellard85571bc2004-11-07 18:04:02 +0000240};
241
blueswir135f4b582008-10-06 18:08:30 +0000242static struct audio_pcm_ops wav_pcm_ops = {
Juan Quintela1dd3e4d2009-08-11 02:31:15 +0200243 .init_out = wav_init_out,
244 .fini_out = wav_fini_out,
245 .run_out = wav_run_out,
246 .write = wav_write_out,
247 .ctl_out = wav_ctl_out,
bellard1d14ffa2005-10-30 18:58:22 +0000248};
249
250struct audio_driver wav_audio_driver = {
Juan Quintelabee37f32009-08-11 02:31:14 +0200251 .name = "wav",
252 .descr = "WAV renderer http://wikipedia.org/wiki/WAV",
253 .options = wav_options,
254 .init = wav_audio_init,
255 .fini = wav_audio_fini,
malc98f9f482009-08-11 20:48:02 +0400256 .pcm_ops = &wav_pcm_ops,
Juan Quintelabee37f32009-08-11 02:31:14 +0200257 .can_be_default = 0,
258 .max_voices_out = 1,
259 .max_voices_in = 0,
260 .voice_size_out = sizeof (WAVVoiceOut),
261 .voice_size_in = 0
bellard85571bc2004-11-07 18:04:02 +0000262};