1 /* sound.c -- sound support.
2 Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007 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, or (at your option)
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; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
22 /* Written by Gerd Moellmann <gerd@gnu.org>. Tested with Luigi's
23 driver on FreeBSD 2.2.7 with a SoundBlaster 16. */
26 Modified by Ben Key <Bkey1@tampabay.rr.com> to add a partial
27 implementation of the play-sound specification for Windows.
30 In the Windows implementation of play-sound-internal only the
31 :file and :volume keywords are supported. The :device keyword,
32 if present, is ignored. The :data keyword, if present, will
33 cause an error to be generated.
35 The Windows implementation of play-sound is implemented via the
36 Win32 API functions mciSendString, waveOutGetVolume, and
37 waveOutSetVolume which are exported by Winmm.dll.
42 #if defined HAVE_SOUND
44 /* BEGIN: Common Includes */
47 #include <sys/types.h>
50 #include "dispextern.h"
53 #include "syssignal.h"
54 /* END: Common Includes */
57 /* BEGIN: Non Windows Includes */
61 #include <sys/ioctl.h>
64 /* FreeBSD has machine/soundcard.h. Voxware sound driver docs mention
65 sys/soundcard.h. So, let's try whatever's there. */
67 #ifdef HAVE_MACHINE_SOUNDCARD_H
68 #include <machine/soundcard.h>
70 #ifdef HAVE_SYS_SOUNDCARD_H
71 #include <sys/soundcard.h>
73 #ifdef HAVE_SOUNDCARD_H
74 #include <soundcard.h>
77 #ifdef ALSA_SUBDIR_INCLUDE
78 #include <alsa/asoundlib.h>
80 #include <asoundlib.h>
81 #endif /* ALSA_SUBDIR_INCLUDE */
82 #endif /* HAVE_ALSA */
84 /* END: Non Windows Includes */
88 /* BEGIN: Windows Specific Includes */
95 /* END: Windows Specific Includes */
97 #endif /* WINDOWSNT */
99 /* BEGIN: Common Definitions */
100 #define abs(X) ((X) < 0 ? -(X) : (X))
104 extern Lisp_Object QCfile
, QCdata
;
105 Lisp_Object QCvolume
, QCdevice
;
107 Lisp_Object Qplay_sound_functions
;
109 /* Indices of attributes in a sound attributes vector. */
120 static void alsa_sound_perror
P_ ((char *, int)) NO_RETURN
;
121 static void sound_perror
P_ ((char *)) NO_RETURN
;
122 static void sound_warning
P_ ((char *));
123 static int parse_sound
P_ ((Lisp_Object
, Lisp_Object
*));
125 /* END: Common Definitions */
127 /* BEGIN: Non Windows Definitions */
130 #ifndef DEFAULT_SOUND_DEVICE
131 #define DEFAULT_SOUND_DEVICE "/dev/dsp"
133 #ifndef DEFAULT_ALSA_SOUND_DEVICE
134 #define DEFAULT_ALSA_SOUND_DEVICE "default"
138 /* Structure forward declarations. */
143 /* The file header of RIFF-WAVE files (*.wav). Files are always in
144 little-endian byte-order. */
150 u_int32_t chunk_type
;
151 u_int32_t chunk_format
;
152 u_int32_t chunk_length
;
155 u_int32_t sample_rate
;
156 u_int32_t bytes_per_second
;
157 u_int16_t sample_size
;
159 u_int32_t chunk_data
;
160 u_int32_t data_length
;
163 /* The file header of Sun adio files (*.au). Files are always in
164 big-endian byte-order. */
169 u_int32_t magic_number
;
171 /* Offset of data part from start of file. Minimum value is 24. */
172 u_int32_t data_offset
;
174 /* Size of data part, 0xffffffff if unknown. */
177 /* Data encoding format.
179 2 8-bit linear PCM (REF-PCM)
183 6 32-bit IEEE floating-point
184 7 64-bit IEEE floating-point
185 23 8-bit u-law compressed using CCITT 0.721 ADPCM voice data
189 /* Number of samples per second. */
190 u_int32_t sample_rate
;
192 /* Number of interleaved channels. */
196 /* Maximum of all sound file headers sizes. */
198 #define MAX_SOUND_HEADER_BYTES \
199 max (sizeof (struct wav_header), sizeof (struct au_header))
201 /* Interface structure for sound devices. */
205 /* The name of the device or null meaning use a default device name. */
208 /* File descriptor of the device. */
211 /* Device-dependent format. */
214 /* Volume (0..100). Zero means unspecified. */
223 /* Bytes per second. */
226 /* 1 = mono, 2 = stereo, 0 = don't set. */
229 /* Open device SD. */
230 void (* open
) P_ ((struct sound_device
*sd
));
232 /* Close device SD. */
233 void (* close
) P_ ((struct sound_device
*sd
));
235 /* Configure SD accoring to device-dependent parameters. */
236 void (* configure
) P_ ((struct sound_device
*device
));
238 /* Choose a device-dependent format for outputting sound S. */
239 void (* choose_format
) P_ ((struct sound_device
*sd
,
242 /* Return a preferred data size in bytes to be sent to write (below)
243 each time. 2048 is used if this is NULL. */
244 int (* period_size
) P_ ((struct sound_device
*sd
));
246 /* Write NYBTES bytes from BUFFER to device SD. */
247 void (* write
) P_ ((struct sound_device
*sd
, const char *buffer
,
250 /* A place for devices to store additional data. */
254 /* An enumerator for each supported sound file type. */
262 /* Interface structure for sound files. */
266 /* The type of the file. */
267 enum sound_type type
;
269 /* File descriptor of a sound file. */
272 /* Pointer to sound file header. This contains header_size bytes
273 read from the start of a sound file. */
276 /* Number of bytes raed from sound file. This is always <=
277 MAX_SOUND_HEADER_BYTES. */
280 /* Sound data, if a string. */
283 /* Play sound file S on device SD. */
284 void (* play
) P_ ((struct sound
*s
, struct sound_device
*sd
));
287 /* These are set during `play-sound-internal' so that sound_cleanup has
290 struct sound_device
*current_sound_device
;
291 struct sound
*current_sound
;
293 /* Function prototypes. */
295 static void vox_open
P_ ((struct sound_device
*));
296 static void vox_configure
P_ ((struct sound_device
*));
297 static void vox_close
P_ ((struct sound_device
*sd
));
298 static void vox_choose_format
P_ ((struct sound_device
*, struct sound
*));
299 static int vox_init
P_ ((struct sound_device
*));
300 static void vox_write
P_ ((struct sound_device
*, const char *, int));
301 static void find_sound_type
P_ ((struct sound
*));
302 static u_int32_t le2hl
P_ ((u_int32_t
));
303 static u_int16_t le2hs
P_ ((u_int16_t
));
304 static u_int32_t be2hl
P_ ((u_int32_t
));
305 static int wav_init
P_ ((struct sound
*));
306 static void wav_play
P_ ((struct sound
*, struct sound_device
*));
307 static int au_init
P_ ((struct sound
*));
308 static void au_play
P_ ((struct sound
*, struct sound_device
*));
310 #if 0 /* Currently not used. */
311 static u_int16_t be2hs
P_ ((u_int16_t
));
314 /* END: Non Windows Definitions */
315 #else /* WINDOWSNT */
317 /* BEGIN: Windows Specific Definitions */
318 static int do_play_sound
P_ ((const char *, unsigned long));
320 END: Windows Specific Definitions */
321 #endif /* WINDOWSNT */
324 /***********************************************************************
326 ***********************************************************************/
328 /* BEGIN: Common functions */
330 /* Like perror, but signals an error. */
336 int saved_errno
= errno
;
340 sigunblock (sigmask (SIGIO
));
342 if (saved_errno
!= 0)
343 error ("%s: %s", msg
, strerror (saved_errno
));
349 /* Display a warning message. */
359 /* Parse sound specification SOUND, and fill ATTRS with what is
360 found. Value is non-zero if SOUND Is a valid sound specification.
361 A valid sound specification is a list starting with the symbol
362 `sound'. The rest of the list is a property list which may
363 contain the following key/value pairs:
367 FILE is the sound file to play. If it isn't an absolute name,
368 it's searched under `data-directory'.
372 DATA is a string containing sound data. Either :file or :data
373 may be present, but not both.
377 DEVICE is the name of the device to play on, e.g. "/dev/dsp2".
378 If not specified, a default device is used.
382 VOL must be an integer in the range [0, 100], or a float in the
386 parse_sound (sound
, attrs
)
390 /* SOUND must be a list starting with the symbol `sound'. */
391 if (!CONSP (sound
) || !EQ (XCAR (sound
), Qsound
))
394 sound
= XCDR (sound
);
395 attrs
[SOUND_FILE
] = Fplist_get (sound
, QCfile
);
396 attrs
[SOUND_DATA
] = Fplist_get (sound
, QCdata
);
397 attrs
[SOUND_DEVICE
] = Fplist_get (sound
, QCdevice
);
398 attrs
[SOUND_VOLUME
] = Fplist_get (sound
, QCvolume
);
401 /* File name or data must be specified. */
402 if (!STRINGP (attrs
[SOUND_FILE
])
403 && !STRINGP (attrs
[SOUND_DATA
]))
405 #else /* WINDOWSNT */
407 Data is not supported in Windows. Therefore a
408 File name MUST be supplied.
410 if (!STRINGP (attrs
[SOUND_FILE
]))
414 #endif /* WINDOWSNT */
416 /* Volume must be in the range 0..100 or unspecified. */
417 if (!NILP (attrs
[SOUND_VOLUME
]))
419 if (INTEGERP (attrs
[SOUND_VOLUME
]))
421 if (XINT (attrs
[SOUND_VOLUME
]) < 0
422 || XINT (attrs
[SOUND_VOLUME
]) > 100)
425 else if (FLOATP (attrs
[SOUND_VOLUME
]))
427 if (XFLOAT_DATA (attrs
[SOUND_VOLUME
]) < 0
428 || XFLOAT_DATA (attrs
[SOUND_VOLUME
]) > 1)
436 /* Device must be a string or unspecified. */
437 if (!NILP (attrs
[SOUND_DEVICE
])
438 && !STRINGP (attrs
[SOUND_DEVICE
]))
440 #endif /* WINDOWSNT */
442 Since device is ignored in Windows, it does not matter
448 /* END: Common functions */
450 /* BEGIN: Non Windows functions */
453 /* Find out the type of the sound file whose file descriptor is FD.
454 S is the sound file structure to fill in. */
460 if (!wav_init (s
) && !au_init (s
))
461 error ("Unknown sound format");
465 /* Function installed by play-sound-internal with record_unwind_protect. */
471 if (current_sound_device
->close
)
472 current_sound_device
->close (current_sound_device
);
473 if (current_sound
->fd
> 0)
474 emacs_close (current_sound
->fd
);
475 free (current_sound_device
);
476 free (current_sound
);
481 /***********************************************************************
482 Byte-order Conversion
483 ***********************************************************************/
485 /* Convert 32-bit value VALUE which is in little-endian byte-order
486 to host byte-order. */
492 #ifdef WORDS_BIG_ENDIAN
493 unsigned char *p
= (unsigned char *) &value
;
494 value
= p
[0] + (p
[1] << 8) + (p
[2] << 16) + (p
[3] << 24);
500 /* Convert 16-bit value VALUE which is in little-endian byte-order
501 to host byte-order. */
507 #ifdef WORDS_BIG_ENDIAN
508 unsigned char *p
= (unsigned char *) &value
;
509 value
= p
[0] + (p
[1] << 8);
515 /* Convert 32-bit value VALUE which is in big-endian byte-order
516 to host byte-order. */
522 #ifndef WORDS_BIG_ENDIAN
523 unsigned char *p
= (unsigned char *) &value
;
524 value
= p
[3] + (p
[2] << 8) + (p
[1] << 16) + (p
[0] << 24);
530 #if 0 /* Currently not used. */
532 /* Convert 16-bit value VALUE which is in big-endian byte-order
533 to host byte-order. */
539 #ifndef WORDS_BIG_ENDIAN
540 unsigned char *p
= (unsigned char *) &value
;
541 value
= p
[1] + (p
[0] << 8);
548 /***********************************************************************
550 ***********************************************************************/
552 /* Try to initialize sound file S from S->header. S->header
553 contains the first MAX_SOUND_HEADER_BYTES number of bytes from the
554 sound file. If the file is a WAV-format file, set up interface
555 functions in S and convert header fields to host byte-order.
556 Value is non-zero if the file is a WAV file. */
562 struct wav_header
*header
= (struct wav_header
*) s
->header
;
564 if (s
->header_size
< sizeof *header
565 || bcmp (s
->header
, "RIFF", 4) != 0)
568 /* WAV files are in little-endian order. Convert the header
569 if on a big-endian machine. */
570 header
->magic
= le2hl (header
->magic
);
571 header
->length
= le2hl (header
->length
);
572 header
->chunk_type
= le2hl (header
->chunk_type
);
573 header
->chunk_format
= le2hl (header
->chunk_format
);
574 header
->chunk_length
= le2hl (header
->chunk_length
);
575 header
->format
= le2hs (header
->format
);
576 header
->channels
= le2hs (header
->channels
);
577 header
->sample_rate
= le2hl (header
->sample_rate
);
578 header
->bytes_per_second
= le2hl (header
->bytes_per_second
);
579 header
->sample_size
= le2hs (header
->sample_size
);
580 header
->precision
= le2hs (header
->precision
);
581 header
->chunk_data
= le2hl (header
->chunk_data
);
582 header
->data_length
= le2hl (header
->data_length
);
584 /* Set up the interface functions for WAV. */
592 /* Play RIFF-WAVE audio file S on sound device SD. */
597 struct sound_device
*sd
;
599 struct wav_header
*header
= (struct wav_header
*) s
->header
;
601 /* Let the device choose a suitable device-dependent format
603 sd
->choose_format (sd
, s
);
605 /* Configure the device. */
606 sd
->sample_size
= header
->sample_size
;
607 sd
->sample_rate
= header
->sample_rate
;
608 sd
->bps
= header
->bytes_per_second
;
609 sd
->channels
= header
->channels
;
612 /* Copy sound data to the device. The WAV file specification is
613 actually more complex. This simple scheme worked with all WAV
614 files I found so far. If someone feels inclined to implement the
615 whole RIFF-WAVE spec, please do. */
616 if (STRINGP (s
->data
))
617 sd
->write (sd
, SDATA (s
->data
) + sizeof *header
,
618 SBYTES (s
->data
) - sizeof *header
);
623 int blksize
= sd
->period_size
? sd
->period_size (sd
) : 2048;
624 int data_left
= header
->data_length
;
626 buffer
= (char *) alloca (blksize
);
627 lseek (s
->fd
, sizeof *header
, SEEK_SET
);
629 && (nbytes
= emacs_read (s
->fd
, buffer
, blksize
)) > 0)
631 /* Don't play possible garbage at the end of file */
632 if (data_left
< nbytes
) nbytes
= data_left
;
634 sd
->write (sd
, buffer
, nbytes
);
638 sound_perror ("Error reading sound file");
643 /***********************************************************************
645 ***********************************************************************/
647 /* Sun audio file encodings. */
651 AU_ENCODING_ULAW_8
= 1,
659 AU_ENCODING_ALAW_8
= 27
663 /* Try to initialize sound file S from S->header. S->header
664 contains the first MAX_SOUND_HEADER_BYTES number of bytes from the
665 sound file. If the file is a AU-format file, set up interface
666 functions in S and convert header fields to host byte-order.
667 Value is non-zero if the file is an AU file. */
673 struct au_header
*header
= (struct au_header
*) s
->header
;
675 if (s
->header_size
< sizeof *header
676 || bcmp (s
->header
, ".snd", 4) != 0)
679 header
->magic_number
= be2hl (header
->magic_number
);
680 header
->data_offset
= be2hl (header
->data_offset
);
681 header
->data_size
= be2hl (header
->data_size
);
682 header
->encoding
= be2hl (header
->encoding
);
683 header
->sample_rate
= be2hl (header
->sample_rate
);
684 header
->channels
= be2hl (header
->channels
);
686 /* Set up the interface functions for AU. */
694 /* Play Sun audio file S on sound device SD. */
699 struct sound_device
*sd
;
701 struct au_header
*header
= (struct au_header
*) s
->header
;
704 sd
->sample_rate
= header
->sample_rate
;
706 sd
->channels
= header
->channels
;
707 sd
->choose_format (sd
, s
);
710 if (STRINGP (s
->data
))
711 sd
->write (sd
, SDATA (s
->data
) + header
->data_offset
,
712 SBYTES (s
->data
) - header
->data_offset
);
715 int blksize
= sd
->period_size
? sd
->period_size (sd
) : 2048;
720 lseek (s
->fd
, header
->data_offset
, SEEK_SET
);
722 /* Copy sound data to the device. */
723 buffer
= (char *) alloca (blksize
);
724 while ((nbytes
= emacs_read (s
->fd
, buffer
, blksize
)) > 0)
725 sd
->write (sd
, buffer
, nbytes
);
728 sound_perror ("Error reading sound file");
733 /***********************************************************************
734 Voxware Driver Interface
735 ***********************************************************************/
737 /* This driver is available on GNU/Linux, and the free BSDs. FreeBSD
738 has a compatible own driver aka Luigi's driver. */
741 /* Open device SD. If SD->file is non-null, open that device,
742 otherwise use a default device name. */
746 struct sound_device
*sd
;
750 /* Open the sound device. Default is /dev/dsp. */
754 file
= DEFAULT_SOUND_DEVICE
;
756 sd
->fd
= emacs_open (file
, O_WRONLY
, 0);
762 /* Configure device SD from parameters in it. */
766 struct sound_device
*sd
;
770 xassert (sd
->fd
>= 0);
772 /* On GNU/Linux, it seems that the device driver doesn't like to be
773 interrupted by a signal. Block the ones we know to cause
777 sigblock (sigmask (SIGIO
));
781 if (ioctl (sd
->fd
, SNDCTL_DSP_SETFMT
, &sd
->format
) < 0
782 || val
!= sd
->format
)
783 sound_perror ("Could not set sound format");
785 val
= sd
->channels
!= 1;
786 if (ioctl (sd
->fd
, SNDCTL_DSP_STEREO
, &val
) < 0
787 || val
!= (sd
->channels
!= 1))
788 sound_perror ("Could not set stereo/mono");
790 /* I think bps and sampling_rate are the same, but who knows.
791 Check this. and use SND_DSP_SPEED for both. */
792 if (sd
->sample_rate
> 0)
794 val
= sd
->sample_rate
;
795 if (ioctl (sd
->fd
, SNDCTL_DSP_SPEED
, &sd
->sample_rate
) < 0)
796 sound_perror ("Could not set sound speed");
797 else if (val
!= sd
->sample_rate
)
798 sound_warning ("Could not set sample rate");
803 int volume
= sd
->volume
& 0xff;
804 volume
|= volume
<< 8;
805 /* This may fail if there is no mixer. Ignore the failure. */
806 ioctl (sd
->fd
, SOUND_MIXER_WRITE_PCM
, &volume
);
811 sigunblock (sigmask (SIGIO
));
816 /* Close device SD if it is open. */
820 struct sound_device
*sd
;
824 /* On GNU/Linux, it seems that the device driver doesn't like to
825 be interrupted by a signal. Block the ones we know to cause
828 sigblock (sigmask (SIGIO
));
832 /* Flush sound data, and reset the device. */
833 ioctl (sd
->fd
, SNDCTL_DSP_SYNC
, NULL
);
837 sigunblock (sigmask (SIGIO
));
840 /* Close the device. */
841 emacs_close (sd
->fd
);
847 /* Choose device-dependent format for device SD from sound file S. */
850 vox_choose_format (sd
, s
)
851 struct sound_device
*sd
;
856 struct wav_header
*h
= (struct wav_header
*) s
->header
;
857 if (h
->precision
== 8)
858 sd
->format
= AFMT_U8
;
859 else if (h
->precision
== 16)
860 sd
->format
= AFMT_S16_LE
;
862 error ("Unsupported WAV file format");
864 else if (s
->type
== SUN_AUDIO
)
866 struct au_header
*header
= (struct au_header
*) s
->header
;
867 switch (header
->encoding
)
869 case AU_ENCODING_ULAW_8
:
870 case AU_ENCODING_IEEE32
:
871 case AU_ENCODING_IEEE64
:
872 sd
->format
= AFMT_MU_LAW
;
879 sd
->format
= AFMT_S16_LE
;
883 error ("Unsupported AU file format");
891 /* Initialize device SD. Set up the interface functions in the device
896 struct sound_device
*sd
;
901 /* Open the sound device. Default is /dev/dsp. */
905 file
= DEFAULT_SOUND_DEVICE
;
906 fd
= emacs_open (file
, O_WRONLY
, 0);
914 sd
->close
= vox_close
;
915 sd
->configure
= vox_configure
;
916 sd
->choose_format
= vox_choose_format
;
917 sd
->write
= vox_write
;
918 sd
->period_size
= NULL
;
923 /* Write NBYTES bytes from BUFFER to device SD. */
926 vox_write (sd
, buffer
, nbytes
)
927 struct sound_device
*sd
;
931 int nwritten
= emacs_write (sd
->fd
, buffer
, nbytes
);
933 sound_perror ("Error writing to sound device");
937 /***********************************************************************
938 ALSA Driver Interface
939 ***********************************************************************/
941 /* This driver is available on GNU/Linux. */
944 alsa_sound_perror (msg
, err
)
948 error ("%s: %s", msg
, snd_strerror (err
));
954 snd_pcm_hw_params_t
*hwparams
;
955 snd_pcm_sw_params_t
*swparams
;
956 snd_pcm_uframes_t period_size
;
959 /* Open device SD. If SD->file is non-null, open that device,
960 otherwise use a default device name. */
964 struct sound_device
*sd
;
967 struct alsa_params
*p
;
970 /* Open the sound device. Default is "default". */
974 file
= DEFAULT_ALSA_SOUND_DEVICE
;
976 p
= xmalloc (sizeof (*p
));
985 err
= snd_pcm_open (&p
->handle
, file
, SND_PCM_STREAM_PLAYBACK
, 0);
987 alsa_sound_perror (file
, err
);
991 alsa_period_size (sd
)
992 struct sound_device
*sd
;
994 struct alsa_params
*p
= (struct alsa_params
*) sd
->data
;
995 int fact
= snd_pcm_format_size (sd
->format
, 1) * sd
->channels
;
996 return p
->period_size
* (fact
> 0 ? fact
: 1);
1001 struct sound_device
*sd
;
1005 struct alsa_params
*p
= (struct alsa_params
*) sd
->data
;
1006 snd_pcm_uframes_t buffer_size
;
1008 xassert (p
->handle
!= 0);
1010 err
= snd_pcm_hw_params_malloc (&p
->hwparams
);
1012 alsa_sound_perror ("Could not allocate hardware parameter structure", err
);
1014 err
= snd_pcm_sw_params_malloc (&p
->swparams
);
1016 alsa_sound_perror ("Could not allocate software parameter structure", err
);
1018 err
= snd_pcm_hw_params_any (p
->handle
, p
->hwparams
);
1020 alsa_sound_perror ("Could not initialize hardware parameter structure", err
);
1022 err
= snd_pcm_hw_params_set_access (p
->handle
, p
->hwparams
,
1023 SND_PCM_ACCESS_RW_INTERLEAVED
);
1025 alsa_sound_perror ("Could not set access type", err
);
1028 err
= snd_pcm_hw_params_set_format (p
->handle
, p
->hwparams
, val
);
1030 alsa_sound_perror ("Could not set sound format", err
);
1032 uval
= sd
->sample_rate
;
1033 err
= snd_pcm_hw_params_set_rate_near (p
->handle
, p
->hwparams
, &uval
, 0);
1035 alsa_sound_perror ("Could not set sample rate", err
);
1038 err
= snd_pcm_hw_params_set_channels (p
->handle
, p
->hwparams
, val
);
1040 alsa_sound_perror ("Could not set channel count", err
);
1042 err
= snd_pcm_hw_params (p
->handle
, p
->hwparams
);
1044 alsa_sound_perror ("Could not set parameters", err
);
1047 err
= snd_pcm_hw_params_get_period_size (p
->hwparams
, &p
->period_size
, &dir
);
1049 alsa_sound_perror ("Unable to get period size for playback", err
);
1051 err
= snd_pcm_hw_params_get_buffer_size (p
->hwparams
, &buffer_size
);
1053 alsa_sound_perror("Unable to get buffer size for playback", err
);
1055 err
= snd_pcm_sw_params_current (p
->handle
, p
->swparams
);
1057 alsa_sound_perror ("Unable to determine current swparams for playback",
1060 /* Start the transfer when the buffer is almost full */
1061 err
= snd_pcm_sw_params_set_start_threshold (p
->handle
, p
->swparams
,
1062 (buffer_size
/ p
->period_size
)
1065 alsa_sound_perror ("Unable to set start threshold mode for playback", err
);
1067 /* Allow the transfer when at least period_size samples can be processed */
1068 err
= snd_pcm_sw_params_set_avail_min (p
->handle
, p
->swparams
, p
->period_size
);
1070 alsa_sound_perror ("Unable to set avail min for playback", err
);
1072 /* Align all transfers to 1 period */
1073 err
= snd_pcm_sw_params_set_xfer_align (p
->handle
, p
->swparams
,
1076 alsa_sound_perror ("Unable to set transfer align for playback", err
);
1078 err
= snd_pcm_sw_params (p
->handle
, p
->swparams
);
1080 alsa_sound_perror ("Unable to set sw params for playback\n", err
);
1082 snd_pcm_hw_params_free (p
->hwparams
);
1084 snd_pcm_sw_params_free (p
->swparams
);
1087 err
= snd_pcm_prepare (p
->handle
);
1089 alsa_sound_perror ("Could not prepare audio interface for use", err
);
1094 snd_mixer_t
*handle
;
1095 snd_mixer_elem_t
*e
;
1096 char *file
= sd
->file
? sd
->file
: DEFAULT_ALSA_SOUND_DEVICE
;
1098 if (snd_mixer_open (&handle
, 0) >= 0)
1100 if (snd_mixer_attach (handle
, file
) >= 0
1101 && snd_mixer_load (handle
) >= 0
1102 && snd_mixer_selem_register (handle
, NULL
, NULL
) >= 0)
1103 for (e
= snd_mixer_first_elem (handle
);
1105 e
= snd_mixer_elem_next (e
))
1107 if (snd_mixer_selem_has_playback_volume (e
))
1110 snd_mixer_selem_get_playback_volume_range (e
, &pmin
, &pmax
);
1111 long vol
= pmin
+ (sd
->volume
* (pmax
- pmin
)) / 100;
1113 for (chn
= 0; chn
<= SND_MIXER_SCHN_LAST
; chn
++)
1114 snd_mixer_selem_set_playback_volume (e
, chn
, vol
);
1117 snd_mixer_close(handle
);
1123 /* Close device SD if it is open. */
1127 struct sound_device
*sd
;
1129 struct alsa_params
*p
= (struct alsa_params
*) sd
->data
;
1133 snd_pcm_hw_params_free (p
->hwparams
);
1135 snd_pcm_sw_params_free (p
->swparams
);
1138 snd_pcm_drain (p
->handle
);
1139 snd_pcm_close (p
->handle
);
1145 /* Choose device-dependent format for device SD from sound file S. */
1148 alsa_choose_format (sd
, s
)
1149 struct sound_device
*sd
;
1152 struct alsa_params
*p
= (struct alsa_params
*) sd
->data
;
1153 if (s
->type
== RIFF
)
1155 struct wav_header
*h
= (struct wav_header
*) s
->header
;
1156 if (h
->precision
== 8)
1157 sd
->format
= SND_PCM_FORMAT_U8
;
1158 else if (h
->precision
== 16)
1159 sd
->format
= SND_PCM_FORMAT_S16_LE
;
1161 error ("Unsupported WAV file format");
1163 else if (s
->type
== SUN_AUDIO
)
1165 struct au_header
*header
= (struct au_header
*) s
->header
;
1166 switch (header
->encoding
)
1168 case AU_ENCODING_ULAW_8
:
1169 sd
->format
= SND_PCM_FORMAT_MU_LAW
;
1171 case AU_ENCODING_ALAW_8
:
1172 sd
->format
= SND_PCM_FORMAT_A_LAW
;
1174 case AU_ENCODING_IEEE32
:
1175 sd
->format
= SND_PCM_FORMAT_FLOAT_BE
;
1177 case AU_ENCODING_IEEE64
:
1178 sd
->format
= SND_PCM_FORMAT_FLOAT64_BE
;
1181 sd
->format
= SND_PCM_FORMAT_S8
;
1183 case AU_ENCODING_16
:
1184 sd
->format
= SND_PCM_FORMAT_S16_BE
;
1186 case AU_ENCODING_24
:
1187 sd
->format
= SND_PCM_FORMAT_S24_BE
;
1189 case AU_ENCODING_32
:
1190 sd
->format
= SND_PCM_FORMAT_S32_BE
;
1194 error ("Unsupported AU file format");
1202 /* Write NBYTES bytes from BUFFER to device SD. */
1205 alsa_write (sd
, buffer
, nbytes
)
1206 struct sound_device
*sd
;
1210 struct alsa_params
*p
= (struct alsa_params
*) sd
->data
;
1212 /* The the third parameter to snd_pcm_writei is frames, not bytes. */
1213 int fact
= snd_pcm_format_size (sd
->format
, 1) * sd
->channels
;
1217 while (nwritten
< nbytes
)
1219 snd_pcm_uframes_t frames
= (nbytes
- nwritten
)/fact
;
1220 if (frames
== 0) break;
1222 err
= snd_pcm_writei (p
->handle
, buffer
+ nwritten
, frames
);
1227 err
= snd_pcm_prepare (p
->handle
);
1229 alsa_sound_perror ("Can't recover from underrun, prepare failed",
1232 else if (err
== -ESTRPIPE
)
1234 while ((err
= snd_pcm_resume (p
->handle
)) == -EAGAIN
)
1235 sleep(1); /* wait until the suspend flag is released */
1238 err
= snd_pcm_prepare (p
->handle
);
1240 alsa_sound_perror ("Can't recover from suspend, "
1246 alsa_sound_perror ("Error writing to sound device", err
);
1250 nwritten
+= err
* fact
;
1255 snd_error_quiet (file
, line
, function
, err
, fmt
)
1258 const char *function
;
1264 /* Initialize device SD. Set up the interface functions in the device
1269 struct sound_device
*sd
;
1275 /* Open the sound device. Default is "default". */
1279 file
= DEFAULT_ALSA_SOUND_DEVICE
;
1281 snd_lib_error_set_handler ((snd_lib_error_handler_t
) snd_error_quiet
);
1282 err
= snd_pcm_open (&handle
, file
, SND_PCM_STREAM_PLAYBACK
, 0);
1283 snd_lib_error_set_handler (NULL
);
1286 snd_pcm_close (handle
);
1289 sd
->open
= alsa_open
;
1290 sd
->close
= alsa_close
;
1291 sd
->configure
= alsa_configure
;
1292 sd
->choose_format
= alsa_choose_format
;
1293 sd
->write
= alsa_write
;
1294 sd
->period_size
= alsa_period_size
;
1299 #endif /* HAVE_ALSA */
1302 /* END: Non Windows functions */
1303 #else /* WINDOWSNT */
1305 /* BEGIN: Windows specific functions */
1308 do_play_sound (psz_file
, ui_volume
)
1309 const char *psz_file
;
1310 unsigned long ui_volume
;
1313 MCIERROR mci_error
= 0;
1314 char sz_cmd_buf
[520] = {0};
1315 char sz_ret_buf
[520] = {0};
1316 MMRESULT mm_result
= MMSYSERR_NOERROR
;
1317 unsigned long ui_volume_org
= 0;
1318 BOOL b_reset_volume
= FALSE
;
1320 memset (sz_cmd_buf
, 0, sizeof(sz_cmd_buf
));
1321 memset (sz_ret_buf
, 0, sizeof(sz_ret_buf
));
1322 sprintf (sz_cmd_buf
,
1323 "open \"%s\" alias GNUEmacs_PlaySound_Device wait",
1325 mci_error
= mciSendString (sz_cmd_buf
, sz_ret_buf
, 520, NULL
);
1328 sound_warning ("The open mciSendString command failed to open\n"
1329 "the specified sound file");
1330 i_result
= (int) mci_error
;
1333 if ((ui_volume
> 0) && (ui_volume
!= UINT_MAX
))
1335 mm_result
= waveOutGetVolume ((HWAVEOUT
) WAVE_MAPPER
, &ui_volume_org
);
1336 if (mm_result
== MMSYSERR_NOERROR
)
1338 b_reset_volume
= TRUE
;
1339 mm_result
= waveOutSetVolume ((HWAVEOUT
) WAVE_MAPPER
, ui_volume
);
1340 if ( mm_result
!= MMSYSERR_NOERROR
)
1342 sound_warning ("waveOutSetVolume failed to set the volume level\n"
1343 "of the WAVE_MAPPER device.\n"
1344 "As a result, the user selected volume level will\n"
1350 sound_warning ("waveOutGetVolume failed to obtain the original\n"
1351 "volume level of the WAVE_MAPPER device.\n"
1352 "As a result, the user selected volume level will\n"
1356 memset (sz_cmd_buf
, 0, sizeof(sz_cmd_buf
));
1357 memset (sz_ret_buf
, 0, sizeof(sz_ret_buf
));
1358 strcpy (sz_cmd_buf
, "play GNUEmacs_PlaySound_Device wait");
1359 mci_error
= mciSendString (sz_cmd_buf
, sz_ret_buf
, 520, NULL
);
1362 sound_warning ("The play mciSendString command failed to play the\n"
1363 "opened sound file.");
1364 i_result
= (int) mci_error
;
1366 memset (sz_cmd_buf
, 0, sizeof(sz_cmd_buf
));
1367 memset (sz_ret_buf
, 0, sizeof(sz_ret_buf
));
1368 strcpy (sz_cmd_buf
, "close GNUEmacs_PlaySound_Device wait");
1369 mci_error
= mciSendString (sz_cmd_buf
, sz_ret_buf
, 520, NULL
);
1370 if (b_reset_volume
== TRUE
)
1372 mm_result
=waveOutSetVolume ((HWAVEOUT
) WAVE_MAPPER
, ui_volume_org
);
1373 if (mm_result
!= MMSYSERR_NOERROR
)
1375 sound_warning ("waveOutSetVolume failed to reset the original volume\n"
1376 "level of the WAVE_MAPPER device.");
1382 /* END: Windows specific functions */
1384 #endif /* WINDOWSNT */
1386 DEFUN ("play-sound-internal", Fplay_sound_internal
, Splay_sound_internal
, 1, 1, 0,
1387 doc
: /* Play sound SOUND.
1389 Internal use only, use `play-sound' instead. */)
1393 Lisp_Object attrs
[SOUND_ATTR_SENTINEL
];
1394 int count
= SPECPDL_INDEX ();
1398 struct gcpro gcpro1
, gcpro2
;
1399 Lisp_Object args
[2];
1400 #else /* WINDOWSNT */
1402 Lisp_Object lo_file
= {0};
1403 char * psz_file
= NULL
;
1404 unsigned long ui_volume_tmp
= UINT_MAX
;
1405 unsigned long ui_volume
= UINT_MAX
;
1407 #endif /* WINDOWSNT */
1409 /* Parse the sound specification. Give up if it is invalid. */
1410 if (!parse_sound (sound
, attrs
))
1411 error ("Invalid sound specification");
1415 GCPRO2 (sound
, file
);
1416 current_sound_device
= (struct sound_device
*) xmalloc (sizeof (struct sound_device
));
1417 bzero (current_sound_device
, sizeof (struct sound_device
));
1418 current_sound
= (struct sound
*) xmalloc (sizeof (struct sound
));
1419 bzero (current_sound
, sizeof (struct sound
));
1420 record_unwind_protect (sound_cleanup
, Qnil
);
1421 current_sound
->header
= (char *) alloca (MAX_SOUND_HEADER_BYTES
);
1423 if (STRINGP (attrs
[SOUND_FILE
]))
1425 /* Open the sound file. */
1426 current_sound
->fd
= openp (Fcons (Vdata_directory
, Qnil
),
1427 attrs
[SOUND_FILE
], Qnil
, &file
, Qnil
);
1428 if (current_sound
->fd
< 0)
1429 sound_perror ("Could not open sound file");
1431 /* Read the first bytes from the file. */
1432 current_sound
->header_size
1433 = emacs_read (current_sound
->fd
, current_sound
->header
,
1434 MAX_SOUND_HEADER_BYTES
);
1435 if (current_sound
->header_size
< 0)
1436 sound_perror ("Invalid sound file header");
1440 current_sound
->data
= attrs
[SOUND_DATA
];
1441 current_sound
->header_size
= min (MAX_SOUND_HEADER_BYTES
, SBYTES (current_sound
->data
));
1442 bcopy (SDATA (current_sound
->data
), current_sound
->header
, current_sound
->header_size
);
1445 /* Find out the type of sound. Give up if we can't tell. */
1446 find_sound_type (current_sound
);
1448 /* Set up a device. */
1449 if (STRINGP (attrs
[SOUND_DEVICE
]))
1451 int len
= SCHARS (attrs
[SOUND_DEVICE
]);
1452 current_sound_device
->file
= (char *) alloca (len
+ 1);
1453 strcpy (current_sound_device
->file
, SDATA (attrs
[SOUND_DEVICE
]));
1456 if (INTEGERP (attrs
[SOUND_VOLUME
]))
1457 current_sound_device
->volume
= XFASTINT (attrs
[SOUND_VOLUME
]);
1458 else if (FLOATP (attrs
[SOUND_VOLUME
]))
1459 current_sound_device
->volume
= XFLOAT_DATA (attrs
[SOUND_VOLUME
]) * 100;
1461 args
[0] = Qplay_sound_functions
;
1463 Frun_hook_with_args (2, args
);
1466 if (!alsa_init (current_sound_device
))
1468 if (!vox_init (current_sound_device
))
1469 error ("No usable sound device driver found");
1471 /* Open the device. */
1472 current_sound_device
->open (current_sound_device
);
1474 /* Play the sound. */
1475 current_sound
->play (current_sound
, current_sound_device
);
1480 #else /* WINDOWSNT */
1482 lo_file
= Fexpand_file_name (attrs
[SOUND_FILE
], Qnil
);
1483 len
= XSTRING (lo_file
)->size
;
1484 psz_file
= (char *) alloca (len
+ 1);
1485 strcpy (psz_file
, XSTRING (lo_file
)->data
);
1486 if (INTEGERP (attrs
[SOUND_VOLUME
]))
1488 ui_volume_tmp
= XFASTINT (attrs
[SOUND_VOLUME
]);
1490 else if (FLOATP (attrs
[SOUND_VOLUME
]))
1492 ui_volume_tmp
= (unsigned long) XFLOAT_DATA (attrs
[SOUND_VOLUME
]) * 100;
1495 Based on some experiments I have conducted, a value of 100 or less
1496 for the sound volume is much too low. You cannot even hear it.
1497 A value of UINT_MAX indicates that you wish for the sound to played
1498 at the maximum possible volume. A value of UINT_MAX/2 plays the
1499 sound at 50% maximum volume. Therefore the value passed to do_play_sound
1500 (and thus to waveOutSetVolume) must be some fraction of UINT_MAX.
1501 The following code adjusts the user specified volume level appropriately.
1503 if ((ui_volume_tmp
> 0) && (ui_volume_tmp
<= 100))
1505 ui_volume
= ui_volume_tmp
* (UINT_MAX
/ 100);
1507 i_result
= do_play_sound (psz_file
, ui_volume
);
1509 #endif /* WINDOWSNT */
1511 unbind_to (count
, Qnil
);
1515 /***********************************************************************
1517 ***********************************************************************/
1522 QCdevice
= intern (":device");
1523 staticpro (&QCdevice
);
1524 QCvolume
= intern (":volume");
1525 staticpro (&QCvolume
);
1526 Qsound
= intern ("sound");
1527 staticpro (&Qsound
);
1528 Qplay_sound_functions
= intern ("play-sound-functions");
1529 staticpro (&Qplay_sound_functions
);
1531 defsubr (&Splay_sound_internal
);
1540 #endif /* HAVE_SOUND */
1542 /* arch-tag: dd850ad8-0433-4e2c-9cba-b7aeeccc0dbd
1543 (do not change this comment) */