| 
									
										
										
										
											2016-01-18 17:33:52 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2020-10-05 17:58:44 +02:00
										 |  |  | #include "qemu/qemu-print.h"
 | 
					
						
							| 
									
										
										
										
											2018-02-01 12:18:31 +01:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2015-03-17 18:29:20 +01:00
										 |  |  | #include "qemu/error-report.h"
 | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  | #include "audio.h"
 | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |     FILE *f; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  |     int bytes; | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |     char *path; | 
					
						
							|  |  |  |     int freq; | 
					
						
							|  |  |  |     int bits; | 
					
						
							|  |  |  |     int nchannels; | 
					
						
							|  |  |  |     CaptureVoiceOut *cap; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | } WAVState; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* VICE code: Store number as little endian. */ | 
					
						
							|  |  |  | static void le_store (uint8_t *buf, uint32_t val, int len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     for (i = 0; i < len; i++) { | 
					
						
							|  |  |  |         buf[i] = (uint8_t) (val & 0xff); | 
					
						
							|  |  |  |         val >>= 8; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  | static void wav_notify (void *opaque, audcnotification_e cmd) | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |     (void) opaque; | 
					
						
							|  |  |  |     (void) cmd; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  | static void wav_destroy (void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     WAVState *wav = opaque; | 
					
						
							|  |  |  |     uint8_t rlen[4]; | 
					
						
							|  |  |  |     uint8_t dlen[4]; | 
					
						
							|  |  |  |     uint32_t datalen = wav->bytes; | 
					
						
							|  |  |  |     uint32_t rifflen = datalen + 36; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-07 21:35:12 +00:00
										 |  |  |     if (wav->f) { | 
					
						
							|  |  |  |         le_store (rlen, rifflen, 4); | 
					
						
							|  |  |  |         le_store (dlen, datalen, 4); | 
					
						
							| 
									
										
										
										
											2007-02-17 22:19:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |         if (fseek (wav->f, 4, SEEK_SET)) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |             error_report("wav_destroy: rlen fseek failed: %s", | 
					
						
							|  |  |  |                          strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |             goto doclose; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (fwrite (rlen, 4, 1, wav->f) != 1) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |             error_report("wav_destroy: rlen fwrite failed: %s", | 
					
						
							|  |  |  |                          strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |             goto doclose; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (fseek (wav->f, 32, SEEK_CUR)) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |             error_report("wav_destroy: dlen fseek failed: %s", | 
					
						
							|  |  |  |                          strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |             goto doclose; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (fwrite (dlen, 1, 4, wav->f) != 4) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |             error_report("wav_destroy: dlen fwrite failed: %s", | 
					
						
							|  |  |  |                          strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |             goto doclose; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     doclose: | 
					
						
							|  |  |  |         if (fclose (wav->f)) { | 
					
						
							| 
									
										
										
										
											2014-05-10 07:55:20 +08:00
										 |  |  |             error_report("wav_destroy: fclose failed: %s", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-02-17 22:19:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     g_free (wav->path); | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-05 15:25:58 +02:00
										 |  |  | static void wav_capture(void *opaque, const void *buf, int size) | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     WAVState *wav = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |     if (fwrite (buf, size, 1, wav->f) != 1) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |         error_report("wav_capture: fwrite error: %s", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  |     wav->bytes += size; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  | static void wav_capture_destroy (void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     WAVState *wav = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     AUD_del_capture (wav->cap, wav); | 
					
						
							| 
									
										
										
										
											2017-05-04 02:38:44 +04:00
										 |  |  |     g_free (wav); | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void wav_capture_info (void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     WAVState *wav = opaque; | 
					
						
							|  |  |  |     char *path = wav->path; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-05 17:58:44 +02:00
										 |  |  |     qemu_printf("Capturing audio(%d,%d,%d) to %s: %d bytes\n", | 
					
						
							|  |  |  |                 wav->freq, wav->bits, wav->nchannels, | 
					
						
							|  |  |  |                 path ? path : "<not available>", wav->bytes); | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct capture_ops wav_capture_ops = { | 
					
						
							|  |  |  |     .destroy = wav_capture_destroy, | 
					
						
							|  |  |  |     .info = wav_capture_info | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-19 01:06:47 +02:00
										 |  |  | int wav_start_capture(AudioState *state, CaptureState *s, const char *path, | 
					
						
							|  |  |  |                       int freq, int bits, int nchannels) | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     WAVState *wav; | 
					
						
							|  |  |  |     uint8_t hdr[] = { | 
					
						
							|  |  |  |         0x52, 0x49, 0x46, 0x46, 0x00, 0x00, 0x00, 0x00, 0x57, 0x41, 0x56, | 
					
						
							|  |  |  |         0x45, 0x66, 0x6d, 0x74, 0x20, 0x10, 0x00, 0x00, 0x00, 0x01, 0x00, | 
					
						
							|  |  |  |         0x02, 0x00, 0x44, 0xac, 0x00, 0x00, 0x10, 0xb1, 0x02, 0x00, 0x04, | 
					
						
							|  |  |  |         0x00, 0x10, 0x00, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x00, 0x00 | 
					
						
							|  |  |  |     }; | 
					
						
							| 
									
										
										
										
											2008-12-03 22:48:44 +00:00
										 |  |  |     struct audsettings as; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  |     struct audio_capture_ops ops; | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |     int stereo, bits16, shift; | 
					
						
							|  |  |  |     CaptureVoiceOut *cap; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (bits != 8 && bits != 16) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |         error_report("incorrect bit count %d, must be 8 or 16", bits); | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (nchannels != 1 && nchannels != 2) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |         error_report("incorrect channel count %d, must be 1 or 2", | 
					
						
							|  |  |  |                      nchannels); | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |     stereo = nchannels == 2; | 
					
						
							|  |  |  |     bits16 = bits == 16; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     as.freq = freq; | 
					
						
							|  |  |  |     as.nchannels = 1 << stereo; | 
					
						
							| 
									
										
										
										
											2019-03-08 23:34:13 +01:00
										 |  |  |     as.fmt = bits16 ? AUDIO_FORMAT_S16 : AUDIO_FORMAT_U8; | 
					
						
							| 
									
										
										
										
											2006-07-04 21:47:22 +00:00
										 |  |  |     as.endianness = 0; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |     ops.notify = wav_notify; | 
					
						
							|  |  |  |     ops.capture = wav_capture; | 
					
						
							|  |  |  |     ops.destroy = wav_destroy; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     wav = g_malloc0 (sizeof (*wav)); | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     shift = bits16 + stereo; | 
					
						
							|  |  |  |     hdr[34] = bits16 ? 0x10 : 0x08; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     le_store (hdr + 22, as.nchannels, 2); | 
					
						
							|  |  |  |     le_store (hdr + 24, freq, 4); | 
					
						
							|  |  |  |     le_store (hdr + 28, freq << shift, 4); | 
					
						
							|  |  |  |     le_store (hdr + 32, 1 << shift, 2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |     wav->f = fopen (path, "wb"); | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  |     if (!wav->f) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |         error_report("Failed to open wave file `%s': %s", | 
					
						
							|  |  |  |                      path, strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |         g_free (wav); | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-20 22:09:37 -05:00
										 |  |  |     wav->path = g_strdup (path); | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |     wav->bits = bits; | 
					
						
							|  |  |  |     wav->nchannels = nchannels; | 
					
						
							|  |  |  |     wav->freq = freq; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |     if (fwrite (hdr, sizeof (hdr), 1, wav->f) != 1) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |         error_report("Failed to write header: %s", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |         goto error_free; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-19 01:06:47 +02:00
										 |  |  |     cap = AUD_add_capture(state, &as, &ops, wav); | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |     if (!cap) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |         error_report("Failed to add audio capture"); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |         goto error_free; | 
					
						
							| 
									
										
										
										
											2006-07-16 18:57:03 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     wav->cap = cap; | 
					
						
							|  |  |  |     s->opaque = wav; | 
					
						
							|  |  |  |     s->ops = wav_capture_ops; | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | error_free: | 
					
						
							|  |  |  |     g_free (wav->path); | 
					
						
							|  |  |  |     if (fclose (wav->f)) { | 
					
						
							| 
									
										
										
										
											2017-03-20 17:38:40 +00:00
										 |  |  |         error_report("Failed to close wave file: %s", strerror(errno)); | 
					
						
							| 
									
										
										
										
											2011-09-20 15:16:28 +02:00
										 |  |  |     } | 
					
						
							|  |  |  |     g_free (wav); | 
					
						
							|  |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											2006-07-04 16:51:32 +00:00
										 |  |  | } |