Fix bug #13515 with processing DBCS file names on MS-Windows.
[emacs.git] / src / sound.c
blob802f1ce740d689a51956394e66c998b08d2d7e43
1 /* sound.c -- sound support.
3 Copyright (C) 1998-1999, 2001-2013 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 /* Written by Gerd Moellmann <gerd@gnu.org>. Tested with Luigi's
21 driver on FreeBSD 2.2.7 with a SoundBlaster 16. */
24 Modified by Ben Key <Bkey1@tampabay.rr.com> to add a partial
25 implementation of the play-sound specification for Windows.
27 Notes:
28 In the Windows implementation of play-sound-internal only the
29 :file and :volume keywords are supported. The :device keyword,
30 if present, is ignored. The :data keyword, if present, will
31 cause an error to be generated.
33 The Windows implementation of play-sound is implemented via the
34 Windows API functions mciSendString, waveOutGetVolume, and
35 waveOutSetVolume which are exported by Winmm.dll.
38 #include <config.h>
40 #if defined HAVE_SOUND
42 /* BEGIN: Common Includes */
43 #include <fcntl.h>
44 #include <unistd.h>
45 #include <sys/types.h>
46 #include <errno.h>
48 #include "lisp.h"
49 #include "dispextern.h"
50 #include "atimer.h"
51 #include "syssignal.h"
52 /* END: Common Includes */
55 /* BEGIN: Non Windows Includes */
56 #ifndef WINDOWSNT
58 #include <sys/ioctl.h>
60 /* FreeBSD has machine/soundcard.h. Voxware sound driver docs mention
61 sys/soundcard.h. So, let's try whatever's there. */
63 #ifdef HAVE_MACHINE_SOUNDCARD_H
64 #include <machine/soundcard.h>
65 #endif
66 #ifdef HAVE_SYS_SOUNDCARD_H
67 #include <sys/soundcard.h>
68 #endif
69 #ifdef HAVE_SOUNDCARD_H
70 #include <soundcard.h>
71 #endif
72 #ifdef HAVE_ALSA
73 #ifdef ALSA_SUBDIR_INCLUDE
74 #include <alsa/asoundlib.h>
75 #else
76 #include <asoundlib.h>
77 #endif /* ALSA_SUBDIR_INCLUDE */
78 #endif /* HAVE_ALSA */
80 /* END: Non Windows Includes */
82 #else /* WINDOWSNT */
84 /* BEGIN: Windows Specific Includes */
85 #include <stdio.h>
86 #include <limits.h>
87 #include <windows.h>
88 #include <mmsystem.h>
89 /* END: Windows Specific Includes */
91 #endif /* WINDOWSNT */
93 /* BEGIN: Common Definitions */
95 /* Symbols. */
97 static Lisp_Object QCvolume, QCdevice;
98 static Lisp_Object Qsound;
99 static Lisp_Object Qplay_sound_functions;
101 /* Indices of attributes in a sound attributes vector. */
103 enum sound_attr
105 SOUND_FILE,
106 SOUND_DATA,
107 SOUND_DEVICE,
108 SOUND_VOLUME,
109 SOUND_ATTR_SENTINEL
112 /* END: Common Definitions */
114 /* BEGIN: Non Windows Definitions */
115 #ifndef WINDOWSNT
117 /* Structure forward declarations. */
119 struct sound;
120 struct sound_device;
122 /* The file header of RIFF-WAVE files (*.wav). Files are always in
123 little-endian byte-order. */
125 struct wav_header
127 u_int32_t magic;
128 u_int32_t length;
129 u_int32_t chunk_type;
130 u_int32_t chunk_format;
131 u_int32_t chunk_length;
132 u_int16_t format;
133 u_int16_t channels;
134 u_int32_t sample_rate;
135 u_int32_t bytes_per_second;
136 u_int16_t sample_size;
137 u_int16_t precision;
138 u_int32_t chunk_data;
139 u_int32_t data_length;
142 /* The file header of Sun adio files (*.au). Files are always in
143 big-endian byte-order. */
145 struct au_header
147 /* ASCII ".snd" */
148 u_int32_t magic_number;
150 /* Offset of data part from start of file. Minimum value is 24. */
151 u_int32_t data_offset;
153 /* Size of data part, 0xffffffff if unknown. */
154 u_int32_t data_size;
156 /* Data encoding format.
157 1 8-bit ISDN u-law
158 2 8-bit linear PCM (REF-PCM)
159 3 16-bit linear PCM
160 4 24-bit linear PCM
161 5 32-bit linear PCM
162 6 32-bit IEEE floating-point
163 7 64-bit IEEE floating-point
164 23 8-bit u-law compressed using CCITT 0.721 ADPCM voice data
165 encoding scheme. */
166 u_int32_t encoding;
168 /* Number of samples per second. */
169 u_int32_t sample_rate;
171 /* Number of interleaved channels. */
172 u_int32_t channels;
175 /* Maximum of all sound file headers sizes. */
177 #define MAX_SOUND_HEADER_BYTES \
178 max (sizeof (struct wav_header), sizeof (struct au_header))
180 /* Interface structure for sound devices. */
182 struct sound_device
184 /* The name of the device or null meaning use a default device name. */
185 char *file;
187 /* File descriptor of the device. */
188 int fd;
190 /* Device-dependent format. */
191 int format;
193 /* Volume (0..100). Zero means unspecified. */
194 int volume;
196 /* Sample size. */
197 int sample_size;
199 /* Sample rate. */
200 int sample_rate;
202 /* Bytes per second. */
203 int bps;
205 /* 1 = mono, 2 = stereo, 0 = don't set. */
206 int channels;
208 /* Open device SD. */
209 void (* open) (struct sound_device *sd);
211 /* Close device SD. */
212 void (* close) (struct sound_device *sd);
214 /* Configure SD according to device-dependent parameters. */
215 void (* configure) (struct sound_device *device);
217 /* Choose a device-dependent format for outputting sound S. */
218 void (* choose_format) (struct sound_device *sd,
219 struct sound *s);
221 /* Return a preferred data size in bytes to be sent to write (below)
222 each time. 2048 is used if this is NULL. */
223 ptrdiff_t (* period_size) (struct sound_device *sd);
225 /* Write NYBTES bytes from BUFFER to device SD. */
226 void (* write) (struct sound_device *sd, const char *buffer,
227 ptrdiff_t nbytes);
229 /* A place for devices to store additional data. */
230 void *data;
233 /* An enumerator for each supported sound file type. */
235 enum sound_type
237 RIFF,
238 SUN_AUDIO
241 /* Interface structure for sound files. */
243 struct sound
245 /* The type of the file. */
246 enum sound_type type;
248 /* File descriptor of a sound file. */
249 int fd;
251 /* Pointer to sound file header. This contains header_size bytes
252 read from the start of a sound file. */
253 char *header;
255 /* Number of bytes read from sound file. This is always <=
256 MAX_SOUND_HEADER_BYTES. */
257 int header_size;
259 /* Sound data, if a string. */
260 Lisp_Object data;
262 /* Play sound file S on device SD. */
263 void (* play) (struct sound *s, struct sound_device *sd);
266 /* These are set during `play-sound-internal' so that sound_cleanup has
267 access to them. */
269 static struct sound_device *current_sound_device;
270 static struct sound *current_sound;
272 /* Function prototypes. */
274 static void vox_open (struct sound_device *);
275 static void vox_configure (struct sound_device *);
276 static void vox_close (struct sound_device *sd);
277 static void vox_choose_format (struct sound_device *, struct sound *);
278 static int vox_init (struct sound_device *);
279 static void vox_write (struct sound_device *, const char *, ptrdiff_t);
280 static void find_sound_type (struct sound *);
281 static u_int32_t le2hl (u_int32_t);
282 static u_int16_t le2hs (u_int16_t);
283 static u_int32_t be2hl (u_int32_t);
284 static int wav_init (struct sound *);
285 static void wav_play (struct sound *, struct sound_device *);
286 static int au_init (struct sound *);
287 static void au_play (struct sound *, struct sound_device *);
289 #if 0 /* Currently not used. */
290 static u_int16_t be2hs (u_int16_t);
291 #endif
293 /* END: Non Windows Definitions */
294 #else /* WINDOWSNT */
296 /* BEGIN: Windows Specific Definitions */
297 static int do_play_sound (const char *, unsigned long);
299 END: Windows Specific Definitions */
300 #endif /* WINDOWSNT */
303 /***********************************************************************
304 General
305 ***********************************************************************/
307 /* BEGIN: Common functions */
309 /* Like perror, but signals an error. */
311 static _Noreturn void
312 sound_perror (const char *msg)
314 int saved_errno = errno;
316 turn_on_atimers (1);
317 #ifdef USABLE_SIGIO
319 sigset_t unblocked;
320 sigemptyset (&unblocked);
321 sigaddset (&unblocked, SIGIO);
322 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
324 #endif
325 if (saved_errno != 0)
326 error ("%s: %s", msg, strerror (saved_errno));
327 else
328 error ("%s", msg);
332 /* Display a warning message. */
334 static void
335 sound_warning (const char *msg)
337 message ("%s", msg);
341 /* Parse sound specification SOUND, and fill ATTRS with what is
342 found. Value is non-zero if SOUND Is a valid sound specification.
343 A valid sound specification is a list starting with the symbol
344 `sound'. The rest of the list is a property list which may
345 contain the following key/value pairs:
347 - `:file FILE'
349 FILE is the sound file to play. If it isn't an absolute name,
350 it's searched under `data-directory'.
352 - `:data DATA'
354 DATA is a string containing sound data. Either :file or :data
355 may be present, but not both.
357 - `:device DEVICE'
359 DEVICE is the name of the device to play on, e.g. "/dev/dsp2".
360 If not specified, a default device is used.
362 - `:volume VOL'
364 VOL must be an integer in the range [0, 100], or a float in the
365 range [0, 1]. */
367 static int
368 parse_sound (Lisp_Object sound, Lisp_Object *attrs)
370 /* SOUND must be a list starting with the symbol `sound'. */
371 if (!CONSP (sound) || !EQ (XCAR (sound), Qsound))
372 return 0;
374 sound = XCDR (sound);
375 attrs[SOUND_FILE] = Fplist_get (sound, QCfile);
376 attrs[SOUND_DATA] = Fplist_get (sound, QCdata);
377 attrs[SOUND_DEVICE] = Fplist_get (sound, QCdevice);
378 attrs[SOUND_VOLUME] = Fplist_get (sound, QCvolume);
380 #ifndef WINDOWSNT
381 /* File name or data must be specified. */
382 if (!STRINGP (attrs[SOUND_FILE])
383 && !STRINGP (attrs[SOUND_DATA]))
384 return 0;
385 #else /* WINDOWSNT */
387 Data is not supported in Windows. Therefore a
388 File name MUST be supplied.
390 if (!STRINGP (attrs[SOUND_FILE]))
392 return 0;
394 #endif /* WINDOWSNT */
396 /* Volume must be in the range 0..100 or unspecified. */
397 if (!NILP (attrs[SOUND_VOLUME]))
399 if (INTEGERP (attrs[SOUND_VOLUME]))
401 if (XINT (attrs[SOUND_VOLUME]) < 0
402 || XINT (attrs[SOUND_VOLUME]) > 100)
403 return 0;
405 else if (FLOATP (attrs[SOUND_VOLUME]))
407 if (XFLOAT_DATA (attrs[SOUND_VOLUME]) < 0
408 || XFLOAT_DATA (attrs[SOUND_VOLUME]) > 1)
409 return 0;
411 else
412 return 0;
415 #ifndef WINDOWSNT
416 /* Device must be a string or unspecified. */
417 if (!NILP (attrs[SOUND_DEVICE])
418 && !STRINGP (attrs[SOUND_DEVICE]))
419 return 0;
420 #endif /* WINDOWSNT */
422 Since device is ignored in Windows, it does not matter
423 what it is.
425 return 1;
428 /* END: Common functions */
430 /* BEGIN: Non Windows functions */
431 #ifndef WINDOWSNT
433 /* Find out the type of the sound file whose file descriptor is FD.
434 S is the sound file structure to fill in. */
436 static void
437 find_sound_type (struct sound *s)
439 if (!wav_init (s) && !au_init (s))
440 error ("Unknown sound format");
444 /* Function installed by play-sound-internal with record_unwind_protect. */
446 static Lisp_Object
447 sound_cleanup (Lisp_Object arg)
449 if (current_sound_device->close)
450 current_sound_device->close (current_sound_device);
451 if (current_sound->fd > 0)
452 emacs_close (current_sound->fd);
453 xfree (current_sound_device);
454 xfree (current_sound);
456 return Qnil;
459 /***********************************************************************
460 Byte-order Conversion
461 ***********************************************************************/
463 /* Convert 32-bit value VALUE which is in little-endian byte-order
464 to host byte-order. */
466 static u_int32_t
467 le2hl (u_int32_t value)
469 #ifdef WORDS_BIGENDIAN
470 unsigned char *p = (unsigned char *) &value;
471 value = p[0] + (p[1] << 8) + (p[2] << 16) + (p[3] << 24);
472 #endif
473 return value;
477 /* Convert 16-bit value VALUE which is in little-endian byte-order
478 to host byte-order. */
480 static u_int16_t
481 le2hs (u_int16_t value)
483 #ifdef WORDS_BIGENDIAN
484 unsigned char *p = (unsigned char *) &value;
485 value = p[0] + (p[1] << 8);
486 #endif
487 return value;
491 /* Convert 32-bit value VALUE which is in big-endian byte-order
492 to host byte-order. */
494 static u_int32_t
495 be2hl (u_int32_t value)
497 #ifndef WORDS_BIGENDIAN
498 unsigned char *p = (unsigned char *) &value;
499 value = p[3] + (p[2] << 8) + (p[1] << 16) + (p[0] << 24);
500 #endif
501 return value;
505 #if 0 /* Currently not used. */
507 /* Convert 16-bit value VALUE which is in big-endian byte-order
508 to host byte-order. */
510 static u_int16_t
511 be2hs (u_int16_t value)
513 #ifndef WORDS_BIGENDIAN
514 unsigned char *p = (unsigned char *) &value;
515 value = p[1] + (p[0] << 8);
516 #endif
517 return value;
520 #endif /* 0 */
522 /***********************************************************************
523 RIFF-WAVE (*.wav)
524 ***********************************************************************/
526 /* Try to initialize sound file S from S->header. S->header
527 contains the first MAX_SOUND_HEADER_BYTES number of bytes from the
528 sound file. If the file is a WAV-format file, set up interface
529 functions in S and convert header fields to host byte-order.
530 Value is non-zero if the file is a WAV file. */
532 static int
533 wav_init (struct sound *s)
535 struct wav_header *header = (struct wav_header *) s->header;
537 if (s->header_size < sizeof *header
538 || memcmp (s->header, "RIFF", 4) != 0)
539 return 0;
541 /* WAV files are in little-endian order. Convert the header
542 if on a big-endian machine. */
543 header->magic = le2hl (header->magic);
544 header->length = le2hl (header->length);
545 header->chunk_type = le2hl (header->chunk_type);
546 header->chunk_format = le2hl (header->chunk_format);
547 header->chunk_length = le2hl (header->chunk_length);
548 header->format = le2hs (header->format);
549 header->channels = le2hs (header->channels);
550 header->sample_rate = le2hl (header->sample_rate);
551 header->bytes_per_second = le2hl (header->bytes_per_second);
552 header->sample_size = le2hs (header->sample_size);
553 header->precision = le2hs (header->precision);
554 header->chunk_data = le2hl (header->chunk_data);
555 header->data_length = le2hl (header->data_length);
557 /* Set up the interface functions for WAV. */
558 s->type = RIFF;
559 s->play = wav_play;
561 return 1;
565 /* Play RIFF-WAVE audio file S on sound device SD. */
567 static void
568 wav_play (struct sound *s, struct sound_device *sd)
570 struct wav_header *header = (struct wav_header *) s->header;
572 /* Let the device choose a suitable device-dependent format
573 for the file. */
574 sd->choose_format (sd, s);
576 /* Configure the device. */
577 sd->sample_size = header->sample_size;
578 sd->sample_rate = header->sample_rate;
579 sd->bps = header->bytes_per_second;
580 sd->channels = header->channels;
581 sd->configure (sd);
583 /* Copy sound data to the device. The WAV file specification is
584 actually more complex. This simple scheme worked with all WAV
585 files I found so far. If someone feels inclined to implement the
586 whole RIFF-WAVE spec, please do. */
587 if (STRINGP (s->data))
588 sd->write (sd, SSDATA (s->data) + sizeof *header,
589 SBYTES (s->data) - sizeof *header);
590 else
592 char *buffer;
593 ptrdiff_t nbytes = 0;
594 ptrdiff_t blksize = sd->period_size ? sd->period_size (sd) : 2048;
595 ptrdiff_t data_left = header->data_length;
597 buffer = alloca (blksize);
598 lseek (s->fd, sizeof *header, SEEK_SET);
599 while (data_left > 0
600 && (nbytes = emacs_read (s->fd, buffer, blksize)) > 0)
602 /* Don't play possible garbage at the end of file */
603 if (data_left < nbytes) nbytes = data_left;
604 data_left -= nbytes;
605 sd->write (sd, buffer, nbytes);
608 if (nbytes < 0)
609 sound_perror ("Error reading sound file");
614 /***********************************************************************
615 Sun Audio (*.au)
616 ***********************************************************************/
618 /* Sun audio file encodings. */
620 enum au_encoding
622 AU_ENCODING_ULAW_8 = 1,
623 AU_ENCODING_8,
624 AU_ENCODING_16,
625 AU_ENCODING_24,
626 AU_ENCODING_32,
627 AU_ENCODING_IEEE32,
628 AU_ENCODING_IEEE64,
629 AU_COMPRESSED = 23,
630 AU_ENCODING_ALAW_8 = 27
634 /* Try to initialize sound file S from S->header. S->header
635 contains the first MAX_SOUND_HEADER_BYTES number of bytes from the
636 sound file. If the file is a AU-format file, set up interface
637 functions in S and convert header fields to host byte-order.
638 Value is non-zero if the file is an AU file. */
640 static int
641 au_init (struct sound *s)
643 struct au_header *header = (struct au_header *) s->header;
645 if (s->header_size < sizeof *header
646 || memcmp (s->header, ".snd", 4) != 0)
647 return 0;
649 header->magic_number = be2hl (header->magic_number);
650 header->data_offset = be2hl (header->data_offset);
651 header->data_size = be2hl (header->data_size);
652 header->encoding = be2hl (header->encoding);
653 header->sample_rate = be2hl (header->sample_rate);
654 header->channels = be2hl (header->channels);
656 /* Set up the interface functions for AU. */
657 s->type = SUN_AUDIO;
658 s->play = au_play;
660 return 1;
664 /* Play Sun audio file S on sound device SD. */
666 static void
667 au_play (struct sound *s, struct sound_device *sd)
669 struct au_header *header = (struct au_header *) s->header;
671 sd->sample_size = 0;
672 sd->sample_rate = header->sample_rate;
673 sd->bps = 0;
674 sd->channels = header->channels;
675 sd->choose_format (sd, s);
676 sd->configure (sd);
678 if (STRINGP (s->data))
679 sd->write (sd, SSDATA (s->data) + header->data_offset,
680 SBYTES (s->data) - header->data_offset);
681 else
683 ptrdiff_t blksize = sd->period_size ? sd->period_size (sd) : 2048;
684 char *buffer;
685 ptrdiff_t nbytes;
687 /* Seek */
688 lseek (s->fd, header->data_offset, SEEK_SET);
690 /* Copy sound data to the device. */
691 buffer = alloca (blksize);
692 while ((nbytes = emacs_read (s->fd, buffer, blksize)) > 0)
693 sd->write (sd, buffer, nbytes);
695 if (nbytes < 0)
696 sound_perror ("Error reading sound file");
701 /***********************************************************************
702 Voxware Driver Interface
703 ***********************************************************************/
705 /* This driver is available on GNU/Linux, and the free BSDs. FreeBSD
706 has a compatible own driver aka Luigi's driver. */
709 /* Open device SD. If SD->file is non-null, open that device,
710 otherwise use a default device name. */
712 static void
713 vox_open (struct sound_device *sd)
715 const char *file;
717 /* Open the sound device (eg /dev/dsp). */
718 if (sd->file)
719 file = sd->file;
720 else
721 file = DEFAULT_SOUND_DEVICE;
723 sd->fd = emacs_open (file, O_WRONLY, 0);
724 if (sd->fd < 0)
725 sound_perror (file);
729 /* Configure device SD from parameters in it. */
731 static void
732 vox_configure (struct sound_device *sd)
734 int val;
735 #ifdef USABLE_SIGIO
736 sigset_t blocked;
737 #endif
739 eassert (sd->fd >= 0);
741 /* On GNU/Linux, it seems that the device driver doesn't like to be
742 interrupted by a signal. Block the ones we know to cause
743 troubles. */
744 turn_on_atimers (0);
745 #ifdef USABLE_SIGIO
746 sigemptyset (&blocked);
747 sigaddset (&blocked, SIGIO);
748 pthread_sigmask (SIG_BLOCK, &blocked, 0);
749 #endif
751 val = sd->format;
752 if (ioctl (sd->fd, SNDCTL_DSP_SETFMT, &sd->format) < 0
753 || val != sd->format)
754 sound_perror ("Could not set sound format");
756 val = sd->channels != 1;
757 if (ioctl (sd->fd, SNDCTL_DSP_STEREO, &val) < 0
758 || val != (sd->channels != 1))
759 sound_perror ("Could not set stereo/mono");
761 /* I think bps and sampling_rate are the same, but who knows.
762 Check this. and use SND_DSP_SPEED for both. */
763 if (sd->sample_rate > 0)
765 val = sd->sample_rate;
766 if (ioctl (sd->fd, SNDCTL_DSP_SPEED, &sd->sample_rate) < 0)
767 sound_perror ("Could not set sound speed");
768 else if (val != sd->sample_rate)
769 sound_warning ("Could not set sample rate");
772 if (sd->volume > 0)
774 int volume = sd->volume & 0xff;
775 volume |= volume << 8;
776 /* This may fail if there is no mixer. Ignore the failure. */
777 ioctl (sd->fd, SOUND_MIXER_WRITE_PCM, &volume);
780 turn_on_atimers (1);
781 #ifdef USABLE_SIGIO
782 pthread_sigmask (SIG_UNBLOCK, &blocked, 0);
783 #endif
787 /* Close device SD if it is open. */
789 static void
790 vox_close (struct sound_device *sd)
792 if (sd->fd >= 0)
794 /* On GNU/Linux, it seems that the device driver doesn't like to
795 be interrupted by a signal. Block the ones we know to cause
796 troubles. */
797 #ifdef USABLE_SIGIO
798 sigset_t blocked;
799 sigemptyset (&blocked);
800 sigaddset (&blocked, SIGIO);
801 pthread_sigmask (SIG_BLOCK, &blocked, 0);
802 #endif
803 turn_on_atimers (0);
805 /* Flush sound data, and reset the device. */
806 ioctl (sd->fd, SNDCTL_DSP_SYNC, NULL);
808 turn_on_atimers (1);
809 #ifdef USABLE_SIGIO
810 pthread_sigmask (SIG_UNBLOCK, &blocked, 0);
811 #endif
813 /* Close the device. */
814 emacs_close (sd->fd);
815 sd->fd = -1;
820 /* Choose device-dependent format for device SD from sound file S. */
822 static void
823 vox_choose_format (struct sound_device *sd, struct sound *s)
825 if (s->type == RIFF)
827 struct wav_header *h = (struct wav_header *) s->header;
828 if (h->precision == 8)
829 sd->format = AFMT_U8;
830 else if (h->precision == 16)
831 sd->format = AFMT_S16_LE;
832 else
833 error ("Unsupported WAV file format");
835 else if (s->type == SUN_AUDIO)
837 struct au_header *header = (struct au_header *) s->header;
838 switch (header->encoding)
840 case AU_ENCODING_ULAW_8:
841 case AU_ENCODING_IEEE32:
842 case AU_ENCODING_IEEE64:
843 sd->format = AFMT_MU_LAW;
844 break;
846 case AU_ENCODING_8:
847 case AU_ENCODING_16:
848 case AU_ENCODING_24:
849 case AU_ENCODING_32:
850 sd->format = AFMT_S16_LE;
851 break;
853 default:
854 error ("Unsupported AU file format");
857 else
858 emacs_abort ();
862 /* Initialize device SD. Set up the interface functions in the device
863 structure. */
865 static int
866 vox_init (struct sound_device *sd)
868 const char *file;
869 int fd;
871 /* Open the sound device (eg /dev/dsp). */
872 if (sd->file)
873 file = sd->file;
874 else
875 file = DEFAULT_SOUND_DEVICE;
876 fd = emacs_open (file, O_WRONLY, 0);
877 if (fd >= 0)
878 emacs_close (fd);
879 else
880 return 0;
882 sd->fd = -1;
883 sd->open = vox_open;
884 sd->close = vox_close;
885 sd->configure = vox_configure;
886 sd->choose_format = vox_choose_format;
887 sd->write = vox_write;
888 sd->period_size = NULL;
890 return 1;
893 /* Write NBYTES bytes from BUFFER to device SD. */
895 static void
896 vox_write (struct sound_device *sd, const char *buffer, ptrdiff_t nbytes)
898 if (emacs_write (sd->fd, buffer, nbytes) != nbytes)
899 sound_perror ("Error writing to sound device");
902 #ifdef HAVE_ALSA
903 /***********************************************************************
904 ALSA Driver Interface
905 ***********************************************************************/
907 /* This driver is available on GNU/Linux. */
909 #ifndef DEFAULT_ALSA_SOUND_DEVICE
910 #define DEFAULT_ALSA_SOUND_DEVICE "default"
911 #endif
913 static _Noreturn void
914 alsa_sound_perror (const char *msg, int err)
916 error ("%s: %s", msg, snd_strerror (err));
919 struct alsa_params
921 snd_pcm_t *handle;
922 snd_pcm_hw_params_t *hwparams;
923 snd_pcm_sw_params_t *swparams;
924 snd_pcm_uframes_t period_size;
927 /* Open device SD. If SD->file is non-null, open that device,
928 otherwise use a default device name. */
930 static void
931 alsa_open (struct sound_device *sd)
933 const char *file;
934 struct alsa_params *p;
935 int err;
937 /* Open the sound device. Default is "default". */
938 if (sd->file)
939 file = sd->file;
940 else
941 file = DEFAULT_ALSA_SOUND_DEVICE;
943 p = xmalloc (sizeof *p);
944 p->handle = NULL;
945 p->hwparams = NULL;
946 p->swparams = NULL;
948 sd->fd = -1;
949 sd->data = p;
952 err = snd_pcm_open (&p->handle, file, SND_PCM_STREAM_PLAYBACK, 0);
953 if (err < 0)
954 alsa_sound_perror (file, err);
957 static ptrdiff_t
958 alsa_period_size (struct sound_device *sd)
960 struct alsa_params *p = (struct alsa_params *) sd->data;
961 int fact = snd_pcm_format_size (sd->format, 1) * sd->channels;
962 return p->period_size * (fact > 0 ? fact : 1);
965 static void
966 alsa_configure (struct sound_device *sd)
968 int val, err, dir;
969 unsigned uval;
970 struct alsa_params *p = (struct alsa_params *) sd->data;
971 snd_pcm_uframes_t buffer_size;
973 eassert (p->handle != 0);
975 err = snd_pcm_hw_params_malloc (&p->hwparams);
976 if (err < 0)
977 alsa_sound_perror ("Could not allocate hardware parameter structure", err);
979 err = snd_pcm_sw_params_malloc (&p->swparams);
980 if (err < 0)
981 alsa_sound_perror ("Could not allocate software parameter structure", err);
983 err = snd_pcm_hw_params_any (p->handle, p->hwparams);
984 if (err < 0)
985 alsa_sound_perror ("Could not initialize hardware parameter structure", err);
987 err = snd_pcm_hw_params_set_access (p->handle, p->hwparams,
988 SND_PCM_ACCESS_RW_INTERLEAVED);
989 if (err < 0)
990 alsa_sound_perror ("Could not set access type", err);
992 val = sd->format;
993 err = snd_pcm_hw_params_set_format (p->handle, p->hwparams, val);
994 if (err < 0)
995 alsa_sound_perror ("Could not set sound format", err);
997 uval = sd->sample_rate;
998 err = snd_pcm_hw_params_set_rate_near (p->handle, p->hwparams, &uval, 0);
999 if (err < 0)
1000 alsa_sound_perror ("Could not set sample rate", err);
1002 val = sd->channels;
1003 err = snd_pcm_hw_params_set_channels (p->handle, p->hwparams, val);
1004 if (err < 0)
1005 alsa_sound_perror ("Could not set channel count", err);
1007 err = snd_pcm_hw_params (p->handle, p->hwparams);
1008 if (err < 0)
1009 alsa_sound_perror ("Could not set parameters", err);
1012 err = snd_pcm_hw_params_get_period_size (p->hwparams, &p->period_size, &dir);
1013 if (err < 0)
1014 alsa_sound_perror ("Unable to get period size for playback", err);
1016 err = snd_pcm_hw_params_get_buffer_size (p->hwparams, &buffer_size);
1017 if (err < 0)
1018 alsa_sound_perror ("Unable to get buffer size for playback", err);
1020 err = snd_pcm_sw_params_current (p->handle, p->swparams);
1021 if (err < 0)
1022 alsa_sound_perror ("Unable to determine current swparams for playback",
1023 err);
1025 /* Start the transfer when the buffer is almost full */
1026 err = snd_pcm_sw_params_set_start_threshold (p->handle, p->swparams,
1027 (buffer_size / p->period_size)
1028 * p->period_size);
1029 if (err < 0)
1030 alsa_sound_perror ("Unable to set start threshold mode for playback", err);
1032 /* Allow the transfer when at least period_size samples can be processed */
1033 err = snd_pcm_sw_params_set_avail_min (p->handle, p->swparams, p->period_size);
1034 if (err < 0)
1035 alsa_sound_perror ("Unable to set avail min for playback", err);
1037 err = snd_pcm_sw_params (p->handle, p->swparams);
1038 if (err < 0)
1039 alsa_sound_perror ("Unable to set sw params for playback\n", err);
1041 snd_pcm_hw_params_free (p->hwparams);
1042 p->hwparams = NULL;
1043 snd_pcm_sw_params_free (p->swparams);
1044 p->swparams = NULL;
1046 err = snd_pcm_prepare (p->handle);
1047 if (err < 0)
1048 alsa_sound_perror ("Could not prepare audio interface for use", err);
1050 if (sd->volume > 0)
1052 int chn;
1053 snd_mixer_t *handle;
1054 snd_mixer_elem_t *e;
1055 const char *file = sd->file ? sd->file : DEFAULT_ALSA_SOUND_DEVICE;
1057 if (snd_mixer_open (&handle, 0) >= 0)
1059 if (snd_mixer_attach (handle, file) >= 0
1060 && snd_mixer_load (handle) >= 0
1061 && snd_mixer_selem_register (handle, NULL, NULL) >= 0)
1062 for (e = snd_mixer_first_elem (handle);
1064 e = snd_mixer_elem_next (e))
1066 if (snd_mixer_selem_has_playback_volume (e))
1068 long pmin, pmax, vol;
1069 snd_mixer_selem_get_playback_volume_range (e, &pmin, &pmax);
1070 vol = pmin + (sd->volume * (pmax - pmin)) / 100;
1072 for (chn = 0; chn <= SND_MIXER_SCHN_LAST; chn++)
1073 snd_mixer_selem_set_playback_volume (e, chn, vol);
1076 snd_mixer_close (handle);
1082 /* Close device SD if it is open. */
1084 static void
1085 alsa_close (struct sound_device *sd)
1087 struct alsa_params *p = (struct alsa_params *) sd->data;
1088 if (p)
1090 if (p->hwparams)
1091 snd_pcm_hw_params_free (p->hwparams);
1092 if (p->swparams)
1093 snd_pcm_sw_params_free (p->swparams);
1094 if (p->handle)
1096 snd_pcm_drain (p->handle);
1097 snd_pcm_close (p->handle);
1099 xfree (p);
1103 /* Choose device-dependent format for device SD from sound file S. */
1105 static void
1106 alsa_choose_format (struct sound_device *sd, struct sound *s)
1108 if (s->type == RIFF)
1110 struct wav_header *h = (struct wav_header *) s->header;
1111 if (h->precision == 8)
1112 sd->format = SND_PCM_FORMAT_U8;
1113 else if (h->precision == 16)
1114 sd->format = SND_PCM_FORMAT_S16_LE;
1115 else
1116 error ("Unsupported WAV file format");
1118 else if (s->type == SUN_AUDIO)
1120 struct au_header *header = (struct au_header *) s->header;
1121 switch (header->encoding)
1123 case AU_ENCODING_ULAW_8:
1124 sd->format = SND_PCM_FORMAT_MU_LAW;
1125 break;
1126 case AU_ENCODING_ALAW_8:
1127 sd->format = SND_PCM_FORMAT_A_LAW;
1128 break;
1129 case AU_ENCODING_IEEE32:
1130 sd->format = SND_PCM_FORMAT_FLOAT_BE;
1131 break;
1132 case AU_ENCODING_IEEE64:
1133 sd->format = SND_PCM_FORMAT_FLOAT64_BE;
1134 break;
1135 case AU_ENCODING_8:
1136 sd->format = SND_PCM_FORMAT_S8;
1137 break;
1138 case AU_ENCODING_16:
1139 sd->format = SND_PCM_FORMAT_S16_BE;
1140 break;
1141 case AU_ENCODING_24:
1142 sd->format = SND_PCM_FORMAT_S24_BE;
1143 break;
1144 case AU_ENCODING_32:
1145 sd->format = SND_PCM_FORMAT_S32_BE;
1146 break;
1148 default:
1149 error ("Unsupported AU file format");
1152 else
1153 emacs_abort ();
1157 /* Write NBYTES bytes from BUFFER to device SD. */
1159 static void
1160 alsa_write (struct sound_device *sd, const char *buffer, ptrdiff_t nbytes)
1162 struct alsa_params *p = (struct alsa_params *) sd->data;
1164 /* The the third parameter to snd_pcm_writei is frames, not bytes. */
1165 int fact = snd_pcm_format_size (sd->format, 1) * sd->channels;
1166 ptrdiff_t nwritten = 0;
1167 int err;
1169 while (nwritten < nbytes)
1171 snd_pcm_uframes_t frames = (nbytes - nwritten)/fact;
1172 if (frames == 0) break;
1174 err = snd_pcm_writei (p->handle, buffer + nwritten, frames);
1175 if (err < 0)
1177 if (err == -EPIPE)
1178 { /* under-run */
1179 err = snd_pcm_prepare (p->handle);
1180 if (err < 0)
1181 alsa_sound_perror ("Can't recover from underrun, prepare failed",
1182 err);
1184 else if (err == -ESTRPIPE)
1186 while ((err = snd_pcm_resume (p->handle)) == -EAGAIN)
1187 sleep (1); /* wait until the suspend flag is released */
1188 if (err < 0)
1190 err = snd_pcm_prepare (p->handle);
1191 if (err < 0)
1192 alsa_sound_perror ("Can't recover from suspend, "
1193 "prepare failed",
1194 err);
1197 else
1198 alsa_sound_perror ("Error writing to sound device", err);
1201 else
1202 nwritten += err * fact;
1206 static void
1207 snd_error_quiet (const char *file, int line, const char *function, int err,
1208 const char *fmt)
1212 /* Initialize device SD. Set up the interface functions in the device
1213 structure. */
1215 static int
1216 alsa_init (struct sound_device *sd)
1218 const char *file;
1219 snd_pcm_t *handle;
1220 int err;
1222 /* Open the sound device. Default is "default". */
1223 if (sd->file)
1224 file = sd->file;
1225 else
1226 file = DEFAULT_ALSA_SOUND_DEVICE;
1228 snd_lib_error_set_handler ((snd_lib_error_handler_t) snd_error_quiet);
1229 err = snd_pcm_open (&handle, file, SND_PCM_STREAM_PLAYBACK, 0);
1230 snd_lib_error_set_handler (NULL);
1231 if (err < 0)
1232 return 0;
1233 snd_pcm_close (handle);
1235 sd->fd = -1;
1236 sd->open = alsa_open;
1237 sd->close = alsa_close;
1238 sd->configure = alsa_configure;
1239 sd->choose_format = alsa_choose_format;
1240 sd->write = alsa_write;
1241 sd->period_size = alsa_period_size;
1243 return 1;
1246 #endif /* HAVE_ALSA */
1249 /* END: Non Windows functions */
1250 #else /* WINDOWSNT */
1252 /* BEGIN: Windows specific functions */
1254 #define SOUND_WARNING(fun, error, text) \
1256 char buf[1024]; \
1257 char err_string[MAXERRORLENGTH]; \
1258 fun (error, err_string, sizeof (err_string)); \
1259 _snprintf (buf, sizeof (buf), "%s\nError: %s", \
1260 text, err_string); \
1261 sound_warning (buf); \
1264 static int
1265 do_play_sound (const char *psz_file, unsigned long ui_volume)
1267 int i_result = 0;
1268 MCIERROR mci_error = 0;
1269 char sz_cmd_buf[520] = {0};
1270 char sz_ret_buf[520] = {0};
1271 MMRESULT mm_result = MMSYSERR_NOERROR;
1272 unsigned long ui_volume_org = 0;
1273 BOOL b_reset_volume = FALSE;
1275 memset (sz_cmd_buf, 0, sizeof (sz_cmd_buf));
1276 memset (sz_ret_buf, 0, sizeof (sz_ret_buf));
1277 sprintf (sz_cmd_buf,
1278 "open \"%s\" alias GNUEmacs_PlaySound_Device wait",
1279 psz_file);
1280 mci_error = mciSendString (sz_cmd_buf, sz_ret_buf, sizeof (sz_ret_buf), NULL);
1281 if (mci_error != 0)
1283 SOUND_WARNING (mciGetErrorString, mci_error,
1284 "The open mciSendString command failed to open "
1285 "the specified sound file.");
1286 i_result = (int) mci_error;
1287 return i_result;
1289 if ((ui_volume > 0) && (ui_volume != UINT_MAX))
1291 mm_result = waveOutGetVolume ((HWAVEOUT) WAVE_MAPPER, &ui_volume_org);
1292 if (mm_result == MMSYSERR_NOERROR)
1294 b_reset_volume = TRUE;
1295 mm_result = waveOutSetVolume ((HWAVEOUT) WAVE_MAPPER, ui_volume);
1296 if (mm_result != MMSYSERR_NOERROR)
1298 SOUND_WARNING (waveOutGetErrorText, mm_result,
1299 "waveOutSetVolume failed to set the volume level "
1300 "of the WAVE_MAPPER device.\n"
1301 "As a result, the user selected volume level will "
1302 "not be used.");
1305 else
1307 SOUND_WARNING (waveOutGetErrorText, mm_result,
1308 "waveOutGetVolume failed to obtain the original "
1309 "volume level of the WAVE_MAPPER device.\n"
1310 "As a result, the user selected volume level will "
1311 "not be used.");
1314 memset (sz_cmd_buf, 0, sizeof (sz_cmd_buf));
1315 memset (sz_ret_buf, 0, sizeof (sz_ret_buf));
1316 strcpy (sz_cmd_buf, "play GNUEmacs_PlaySound_Device wait");
1317 mci_error = mciSendString (sz_cmd_buf, sz_ret_buf, sizeof (sz_ret_buf), NULL);
1318 if (mci_error != 0)
1320 SOUND_WARNING (mciGetErrorString, mci_error,
1321 "The play mciSendString command failed to play the "
1322 "opened sound file.");
1323 i_result = (int) mci_error;
1325 memset (sz_cmd_buf, 0, sizeof (sz_cmd_buf));
1326 memset (sz_ret_buf, 0, sizeof (sz_ret_buf));
1327 strcpy (sz_cmd_buf, "close GNUEmacs_PlaySound_Device wait");
1328 mci_error = mciSendString (sz_cmd_buf, sz_ret_buf, sizeof (sz_ret_buf), NULL);
1329 if (b_reset_volume == TRUE)
1331 mm_result = waveOutSetVolume ((HWAVEOUT) WAVE_MAPPER, ui_volume_org);
1332 if (mm_result != MMSYSERR_NOERROR)
1334 SOUND_WARNING (waveOutGetErrorText, mm_result,
1335 "waveOutSetVolume failed to reset the original volume "
1336 "level of the WAVE_MAPPER device.");
1339 return i_result;
1342 /* END: Windows specific functions */
1344 #endif /* WINDOWSNT */
1346 DEFUN ("play-sound-internal", Fplay_sound_internal, Splay_sound_internal, 1, 1, 0,
1347 doc: /* Play sound SOUND.
1349 Internal use only, use `play-sound' instead. */)
1350 (Lisp_Object sound)
1352 Lisp_Object attrs[SOUND_ATTR_SENTINEL];
1353 ptrdiff_t count = SPECPDL_INDEX ();
1355 #ifndef WINDOWSNT
1356 Lisp_Object file;
1357 struct gcpro gcpro1, gcpro2;
1358 Lisp_Object args[2];
1359 #else /* WINDOWSNT */
1360 int len = 0;
1361 Lisp_Object lo_file = {0};
1362 char * psz_file = NULL;
1363 unsigned long ui_volume_tmp = UINT_MAX;
1364 unsigned long ui_volume = UINT_MAX;
1365 int i_result = 0;
1366 #endif /* WINDOWSNT */
1368 /* Parse the sound specification. Give up if it is invalid. */
1369 if (!parse_sound (sound, attrs))
1370 error ("Invalid sound specification");
1372 #ifndef WINDOWSNT
1373 file = Qnil;
1374 GCPRO2 (sound, file);
1375 current_sound_device = xzalloc (sizeof *current_sound_device);
1376 current_sound = xzalloc (sizeof *current_sound);
1377 record_unwind_protect (sound_cleanup, Qnil);
1378 current_sound->header = alloca (MAX_SOUND_HEADER_BYTES);
1380 if (STRINGP (attrs[SOUND_FILE]))
1382 /* Open the sound file. */
1383 current_sound->fd = openp (Fcons (Vdata_directory, Qnil),
1384 attrs[SOUND_FILE], Qnil, &file, Qnil);
1385 if (current_sound->fd < 0)
1386 sound_perror ("Could not open sound file");
1388 /* Read the first bytes from the file. */
1389 current_sound->header_size
1390 = emacs_read (current_sound->fd, current_sound->header,
1391 MAX_SOUND_HEADER_BYTES);
1392 if (current_sound->header_size < 0)
1393 sound_perror ("Invalid sound file header");
1395 else
1397 current_sound->data = attrs[SOUND_DATA];
1398 current_sound->header_size = min (MAX_SOUND_HEADER_BYTES, SBYTES (current_sound->data));
1399 memcpy (current_sound->header, SDATA (current_sound->data),
1400 current_sound->header_size);
1403 /* Find out the type of sound. Give up if we can't tell. */
1404 find_sound_type (current_sound);
1406 /* Set up a device. */
1407 if (STRINGP (attrs[SOUND_DEVICE]))
1409 int len = SCHARS (attrs[SOUND_DEVICE]);
1410 current_sound_device->file = alloca (len + 1);
1411 strcpy (current_sound_device->file, SSDATA (attrs[SOUND_DEVICE]));
1414 if (INTEGERP (attrs[SOUND_VOLUME]))
1415 current_sound_device->volume = XFASTINT (attrs[SOUND_VOLUME]);
1416 else if (FLOATP (attrs[SOUND_VOLUME]))
1417 current_sound_device->volume = XFLOAT_DATA (attrs[SOUND_VOLUME]) * 100;
1419 args[0] = Qplay_sound_functions;
1420 args[1] = sound;
1421 Frun_hook_with_args (2, args);
1423 #ifdef HAVE_ALSA
1424 if (!alsa_init (current_sound_device))
1425 #endif
1426 if (!vox_init (current_sound_device))
1427 error ("No usable sound device driver found");
1429 /* Open the device. */
1430 current_sound_device->open (current_sound_device);
1432 /* Play the sound. */
1433 current_sound->play (current_sound, current_sound_device);
1435 /* Clean up. */
1436 UNGCPRO;
1438 #else /* WINDOWSNT */
1440 lo_file = Fexpand_file_name (attrs[SOUND_FILE], Qnil);
1441 len = XSTRING (lo_file)->size;
1442 psz_file = alloca (len + 1);
1443 strcpy (psz_file, XSTRING (lo_file)->data);
1444 if (INTEGERP (attrs[SOUND_VOLUME]))
1446 ui_volume_tmp = XFASTINT (attrs[SOUND_VOLUME]);
1448 else if (FLOATP (attrs[SOUND_VOLUME]))
1450 ui_volume_tmp = XFLOAT_DATA (attrs[SOUND_VOLUME]) * 100;
1453 Based on some experiments I have conducted, a value of 100 or less
1454 for the sound volume is much too low. You cannot even hear it.
1455 A value of UINT_MAX indicates that you wish for the sound to played
1456 at the maximum possible volume. A value of UINT_MAX/2 plays the
1457 sound at 50% maximum volume. Therefore the value passed to do_play_sound
1458 (and thus to waveOutSetVolume) must be some fraction of UINT_MAX.
1459 The following code adjusts the user specified volume level appropriately.
1461 if ((ui_volume_tmp > 0) && (ui_volume_tmp <= 100))
1463 ui_volume = ui_volume_tmp * (UINT_MAX / 100);
1465 i_result = do_play_sound (psz_file, ui_volume);
1467 #endif /* WINDOWSNT */
1469 unbind_to (count, Qnil);
1470 return Qnil;
1473 /***********************************************************************
1474 Initialization
1475 ***********************************************************************/
1477 void
1478 syms_of_sound (void)
1480 DEFSYM (QCdevice, ":device");
1481 DEFSYM (QCvolume, ":volume");
1482 DEFSYM (Qsound, "sound");
1483 DEFSYM (Qplay_sound_functions, "play-sound-functions");
1485 defsubr (&Splay_sound_internal);
1488 #endif /* HAVE_SOUND */