2 * QEMU WAV audio driver
4 * Copyright (c) 2004-2005 Vassili Karpov (malc)
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #include "qemu/osdep.h"
26 #include "qemu/host-utils.h"
27 #include "qemu/module.h"
28 #include "qemu/timer.h"
29 #include "qapi/opts-visitor.h"
32 #define AUDIO_CAP "wav"
33 #include "audio_int.h"
35 typedef struct WAVVoiceOut
{
43 static int wav_run_out (HWVoiceOut
*hw
, int live
)
45 WAVVoiceOut
*wav
= (WAVVoiceOut
*) hw
;
46 int rpos
, decr
, samples
;
48 struct st_sample
*src
;
49 int64_t now
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
50 int64_t ticks
= now
- wav
->old_ticks
;
52 muldiv64(ticks
, hw
->info
.bytes_per_second
, NANOSECONDS_PER_SECOND
);
54 if (bytes
> INT_MAX
) {
55 samples
= INT_MAX
>> hw
->info
.shift
;
58 samples
= bytes
>> hw
->info
.shift
;
62 decr
= audio_MIN (live
, samples
);
66 int left_till_end_samples
= hw
->samples
- rpos
;
67 int convert_samples
= audio_MIN (samples
, left_till_end_samples
);
69 src
= hw
->mix_buf
+ rpos
;
70 dst
= advance (wav
->pcm_buf
, rpos
<< hw
->info
.shift
);
72 hw
->clip (dst
, src
, convert_samples
);
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
));
78 rpos
= (rpos
+ convert_samples
) % hw
->samples
;
79 samples
-= convert_samples
;
80 wav
->total_samples
+= convert_samples
;
87 static int wav_write_out (SWVoiceOut
*sw
, void *buf
, int len
)
89 return audio_pcm_sw_write (sw
, buf
, len
);
92 /* VICE code: Store number as little endian. */
93 static void le_store (uint8_t *buf
, uint32_t val
, int len
)
96 for (i
= 0; i
< len
; i
++) {
97 buf
[i
] = (uint8_t) (val
& 0xff);
102 static int wav_init_out(HWVoiceOut
*hw
, struct audsettings
*as
,
105 WAVVoiceOut
*wav
= (WAVVoiceOut
*) hw
;
106 int bits16
= 0, stereo
= 0;
108 0x52, 0x49, 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, 0x57, 0x41, 0x56,
109 0x45, 0x66, 0x6d, 0x74, 0x20, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00,
110 0x02, 0x00, 0x44, 0xac, 0x00, 0x00, 0x10, 0xb1, 0x02, 0x00, 0x04,
111 0x00, 0x10, 0x00, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x00, 0x00
113 Audiodev
*dev
= drv_opaque
;
114 AudiodevWavOptions
*wopts
= &dev
->u
.wav
;
115 struct audsettings wav_as
= audiodev_to_audsettings(dev
->u
.wav
.out
);
116 const char *wav_path
= wopts
->has_path
? wopts
->path
: "qemu.wav";
118 stereo
= wav_as
.nchannels
== 2;
119 switch (wav_as
.fmt
) {
120 case AUDIO_FORMAT_S8
:
121 case AUDIO_FORMAT_U8
:
125 case AUDIO_FORMAT_S16
:
126 case AUDIO_FORMAT_U16
:
130 case AUDIO_FORMAT_S32
:
131 case AUDIO_FORMAT_U32
:
132 dolog ("WAVE files can not handle 32bit formats\n");
139 hdr
[34] = bits16
? 0x10 : 0x08;
141 wav_as
.endianness
= 0;
142 audio_pcm_init_info (&hw
->info
, &wav_as
);
145 wav
->pcm_buf
= audio_calloc(__func__
, hw
->samples
, 1 << hw
->info
.shift
);
147 dolog ("Could not allocate buffer (%d bytes)\n",
148 hw
->samples
<< hw
->info
.shift
);
152 le_store (hdr
+ 22, hw
->info
.nchannels
, 2);
153 le_store (hdr
+ 24, hw
->info
.freq
, 4);
154 le_store (hdr
+ 28, hw
->info
.freq
<< (bits16
+ stereo
), 4);
155 le_store (hdr
+ 32, 1 << (bits16
+ stereo
), 2);
157 wav
->f
= fopen(wav_path
, "wb");
159 dolog ("Failed to open wave file `%s'\nReason: %s\n",
160 wav_path
, strerror(errno
));
161 g_free (wav
->pcm_buf
);
166 if (fwrite (hdr
, sizeof (hdr
), 1, wav
->f
) != 1) {
167 dolog ("wav_init_out: failed to write header\nReason: %s\n",
174 static void wav_fini_out (HWVoiceOut
*hw
)
176 WAVVoiceOut
*wav
= (WAVVoiceOut
*) hw
;
179 uint32_t datalen
= wav
->total_samples
<< hw
->info
.shift
;
180 uint32_t rifflen
= datalen
+ 36;
186 le_store (rlen
, rifflen
, 4);
187 le_store (dlen
, datalen
, 4);
189 if (fseek (wav
->f
, 4, SEEK_SET
)) {
190 dolog ("wav_fini_out: fseek to rlen failed\nReason: %s\n",
194 if (fwrite (rlen
, 4, 1, wav
->f
) != 1) {
195 dolog ("wav_fini_out: failed to write rlen\nReason: %s\n",
199 if (fseek (wav
->f
, 32, SEEK_CUR
)) {
200 dolog ("wav_fini_out: fseek to dlen failed\nReason: %s\n",
204 if (fwrite (dlen
, 4, 1, wav
->f
) != 1) {
205 dolog ("wav_fini_out: failed to write dlen\nReaons: %s\n",
211 if (fclose (wav
->f
)) {
212 dolog ("wav_fini_out: fclose %p failed\nReason: %s\n",
213 wav
->f
, strerror (errno
));
217 g_free (wav
->pcm_buf
);
221 static int wav_ctl_out (HWVoiceOut
*hw
, int cmd
, ...)
228 static void *wav_audio_init(Audiodev
*dev
)
230 assert(dev
->driver
== AUDIODEV_DRIVER_WAV
);
234 static void wav_audio_fini (void *opaque
)
239 static struct audio_pcm_ops wav_pcm_ops
= {
240 .init_out
= wav_init_out
,
241 .fini_out
= wav_fini_out
,
242 .run_out
= wav_run_out
,
243 .write
= wav_write_out
,
244 .ctl_out
= wav_ctl_out
,
247 static struct audio_driver wav_audio_driver
= {
249 .descr
= "WAV renderer http://wikipedia.org/wiki/WAV",
250 .init
= wav_audio_init
,
251 .fini
= wav_audio_fini
,
252 .pcm_ops
= &wav_pcm_ops
,
256 .voice_size_out
= sizeof (WAVVoiceOut
),
260 static void register_audio_wav(void)
262 audio_driver_register(&wav_audio_driver
);
264 type_init(register_audio_wav
);