]> git.proxmox.com Git - qemu.git/blame - audio/wavaudio.c
Use glib memory allocation and free functions
[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 */
87ecb68b
PB
24#include "hw/hw.h"
25#include "qemu-timer.h"
26#include "audio.h"
85571bc7 27
1d14ffa9
FB
28#define AUDIO_CAP "wav"
29#include "audio_int.h"
fb065187 30
1d14ffa9
FB
31typedef struct WAVVoiceOut {
32 HWVoiceOut hw;
fb065187
FB
33 QEMUFile *f;
34 int64_t old_ticks;
35 void *pcm_buf;
36 int total_samples;
1d14ffa9 37} WAVVoiceOut;
85571bc7
FB
38
39static struct {
1ea879e5 40 struct audsettings settings;
85571bc7
FB
41 const char *wav_path;
42} conf = {
1a40d5e2
JQ
43 .settings.freq = 44100,
44 .settings.nchannels = 2,
45 .settings.fmt = AUD_FMT_S16,
46 .wav_path = "qemu.wav"
85571bc7
FB
47};
48
bdff253c 49static int wav_run_out (HWVoiceOut *hw, int live)
85571bc7 50{
1d14ffa9 51 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
bdff253c 52 int rpos, decr, samples;
85571bc7 53 uint8_t *dst;
1ea879e5 54 struct st_sample *src;
74475455 55 int64_t now = qemu_get_clock_ns (vm_clock);
85571bc7 56 int64_t ticks = now - wav->old_ticks;
4f4cc0ef 57 int64_t bytes =
58 muldiv64 (ticks, hw->info.bytes_per_second, get_ticks_per_sec ());
85571bc7 59
1d14ffa9
FB
60 if (bytes > INT_MAX) {
61 samples = INT_MAX >> hw->info.shift;
62 }
63 else {
64 samples = bytes >> hw->info.shift;
65 }
85571bc7 66
7372f88d 67 wav->old_ticks = now;
85571bc7
FB
68 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
1d14ffa9
FB
75 src = hw->mix_buf + rpos;
76 dst = advance (wav->pcm_buf, rpos << hw->info.shift);
85571bc7
FB
77
78 hw->clip (dst, src, convert_samples);
1d14ffa9 79 qemu_put_buffer (wav->f, dst, convert_samples << hw->info.shift);
85571bc7
FB
80
81 rpos = (rpos + convert_samples) % hw->samples;
82 samples -= convert_samples;
83 wav->total_samples += convert_samples;
84 }
85
85571bc7 86 hw->rpos = rpos;
1d14ffa9 87 return decr;
85571bc7
FB
88}
89
1d14ffa9 90static int wav_write_out (SWVoiceOut *sw, void *buf, int len)
85571bc7 91{
1d14ffa9 92 return audio_pcm_sw_write (sw, buf, len);
85571bc7
FB
93}
94
85571bc7
FB
95/* 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
1ea879e5 105static int wav_init_out (HWVoiceOut *hw, struct audsettings *as)
85571bc7 106{
1d14ffa9 107 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
c0fe3827 108 int bits16 = 0, stereo = 0;
85571bc7
FB
109 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 };
1ea879e5 115 struct audsettings wav_as = conf.settings;
85571bc7 116
c0fe3827 117 (void) as;
1d14ffa9 118
c0fe3827
FB
119 stereo = wav_as.nchannels == 2;
120 switch (wav_as.fmt) {
85571bc7
FB
121 case AUD_FMT_S8:
122 case AUD_FMT_U8:
1d14ffa9 123 bits16 = 0;
85571bc7
FB
124 break;
125
126 case AUD_FMT_S16:
127 case AUD_FMT_U16:
128 bits16 = 1;
129 break;
f941aa25
TS
130
131 case AUD_FMT_S32:
132 case AUD_FMT_U32:
133 dolog ("WAVE files can not handle 32bit formats\n");
134 return -1;
85571bc7
FB
135 }
136
137 hdr[34] = bits16 ? 0x10 : 0x08;
c0fe3827 138
d929eba5
FB
139 wav_as.endianness = 0;
140 audio_pcm_init_info (&hw->info, &wav_as);
c0fe3827
FB
141
142 hw->samples = 1024;
143 wav->pcm_buf = audio_calloc (AUDIO_FUNC, hw->samples, 1 << hw->info.shift);
1d14ffa9 144 if (!wav->pcm_buf) {
c0fe3827
FB
145 dolog ("Could not allocate buffer (%d bytes)\n",
146 hw->samples << hw->info.shift);
85571bc7 147 return -1;
1d14ffa9 148 }
85571bc7 149
1d14ffa9
FB
150 le_store (hdr + 22, hw->info.nchannels, 2);
151 le_store (hdr + 24, hw->info.freq, 4);
c0fe3827
FB
152 le_store (hdr + 28, hw->info.freq << (bits16 + stereo), 4);
153 le_store (hdr + 32, 1 << (bits16 + stereo), 2);
85571bc7 154
e70332b3 155 wav->f = qemu_fopen (conf.wav_path, "wb");
85571bc7 156 if (!wav->f) {
1d14ffa9 157 dolog ("Failed to open wave file `%s'\nReason: %s\n",
85571bc7 158 conf.wav_path, strerror (errno));
7267c094 159 g_free (wav->pcm_buf);
7372f88d 160 wav->pcm_buf = NULL;
85571bc7
FB
161 return -1;
162 }
163
164 qemu_put_buffer (wav->f, hdr, sizeof (hdr));
165 return 0;
166}
167
1d14ffa9 168static void wav_fini_out (HWVoiceOut *hw)
85571bc7 169{
1d14ffa9 170 WAVVoiceOut *wav = (WAVVoiceOut *) hw;
85571bc7
FB
171 uint8_t rlen[4];
172 uint8_t dlen[4];
50903530
FB
173 uint32_t datalen = wav->total_samples << hw->info.shift;
174 uint32_t rifflen = datalen + 36;
85571bc7 175
c0fe3827 176 if (!wav->f) {
85571bc7 177 return;
1d14ffa9 178 }
85571bc7
FB
179
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
e70332b3 189 qemu_fclose (wav->f);
85571bc7 190 wav->f = NULL;
7372f88d 191
7267c094 192 g_free (wav->pcm_buf);
7372f88d 193 wav->pcm_buf = NULL;
85571bc7
FB
194}
195
1d14ffa9 196static int wav_ctl_out (HWVoiceOut *hw, int cmd, ...)
85571bc7
FB
197{
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{
1d14ffa9 210 (void) opaque;
85571bc7
FB
211 ldebug ("wav_fini");
212}
213
8869defe 214static struct audio_option wav_options[] = {
98f9f48c 215 {
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 },
2700efa3 239 { /* End of list */ }
1d14ffa9
FB
240};
241
35f4b58c 242static struct audio_pcm_ops wav_pcm_ops = {
1dd3e4d1
JQ
243 .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,
85571bc7
FB
248};
249
1d14ffa9 250struct audio_driver wav_audio_driver = {
bee37f32
JQ
251 .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,
98f9f48c 256 .pcm_ops = &wav_pcm_ops,
bee37f32
JQ
257 .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
85571bc7 262};