1 /* sound.c -- sound support.
2 Copyright (C) 1998, 1999 Free Software Foundation.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Written by Gerd Moellmann <gerd@gnu.org>. Tested with Luigi's
22 driver on FreeBSD 2.2.7 with a SoundBlaster 16. */
26 #if defined HAVE_SOUND
31 #include <sys/types.h>
32 #include <dispextern.h>
35 /* FreeBSD has machine/soundcard.h. Voxware sound driver docs mention
36 sys/soundcard.h. So, let's try whatever's there. */
38 #ifdef HAVE_MACHINE_SOUNDCARD_H
39 #include <machine/soundcard.h>
41 #ifdef HAVE_SYS_SOUNDCARD_H
42 #include <sys/soundcard.h>
44 #ifdef HAVE_SOUNDCARD_H
45 #include <sys/ioctl.h>
46 #include <soundcard.h>
49 #ifndef DEFAULT_SOUND_DEVICE
50 #define DEFAULT_SOUND_DEVICE "/dev/dsp"
53 #define max(X, Y) ((X) > (Y) ? (X) : (Y))
54 #define min(X, Y) ((X) < (Y) ? (X) : (Y))
55 #define abs(X) ((X) < 0 ? -(X) : (X))
57 /* Structure forward declarations. */
62 /* The file header of RIFF-WAVE files (*.wav). Files are always in
63 little-endian byte-order. */
70 u_int32_t chunk_format
;
71 u_int32_t chunk_length
;
74 u_int32_t sample_rate
;
75 u_int32_t bytes_per_second
;
76 u_int16_t sample_size
;
79 u_int32_t data_length
;
82 /* The file header of Sun adio files (*.au). Files are always in
83 big-endian byte-order. */
88 u_int32_t magic_number
;
90 /* Offset of data part from start of file. Minimum value is 24. */
91 u_int32_t data_offset
;
93 /* Size of data part, 0xffffffff if unknown. */
96 /* Data encoding format.
98 2 8-bit linear PCM (REF-PCM)
102 6 32-bit IEEE floating-point
103 7 64-bit IEEE floating-point
104 23 8-bit u-law compressed using CCITT 0.721 ADPCM voice data
108 /* Number of samples per second. */
109 u_int32_t sample_rate
;
111 /* Number of interleaved channels. */
115 /* Maximum of all sound file headers sizes. */
117 #define MAX_SOUND_HEADER_BYTES \
118 max (sizeof (struct wav_header), sizeof (struct au_header))
120 /* Interface structure for sound devices. */
124 /* The name of the device or null meaning use a default device name. */
127 /* File descriptor of the device. */
130 /* Device-dependent format. */
133 /* Volume (0..100). Zero means unspecified. */
142 /* Bytes per second. */
145 /* 1 = mono, 2 = stereo, 0 = don't set. */
148 /* Open device SD. */
149 void (* open
) P_ ((struct sound_device
*sd
));
151 /* Close device SD. */
152 void (* close
) P_ ((struct sound_device
*sd
));
154 /* Configure SD accoring to device-dependent parameters. */
155 void (* configure
) P_ ((struct sound_device
*device
));
157 /* Choose a device-dependent format for outputting sound S. */
158 void (* choose_format
) P_ ((struct sound_device
*sd
,
161 /* Write NYBTES bytes from BUFFER to device SD. */
162 void (* write
) P_ ((struct sound_device
*sd
, char *buffer
, int nbytes
));
164 /* A place for devices to store additional data. */
168 /* An enumerator for each supported sound file type. */
176 /* Interface structure for sound files. */
180 /* The type of the file. */
181 enum sound_type type
;
183 /* File descriptor of a sound file. */
186 /* Pointer to sound file header. This contains header_size bytes
187 read from the start of a sound file. */
190 /* Number of bytes raed from sound file. This is always <=
191 MAX_SOUND_HEADER_BYTES. */
194 /* Sound data, if a string. */
197 /* Play sound file S on device SD. */
198 void (* play
) P_ ((struct sound
*s
, struct sound_device
*sd
));
201 /* Indices of attributes in a sound attributes vector. */
214 extern Lisp_Object QCfile
, QCdata
;
215 Lisp_Object QCvolume
, QCdevice
;
217 Lisp_Object Qplay_sound_functions
;
219 /* These are set during `play-sound' so that sound_cleanup has
222 struct sound_device
*current_sound_device
;
223 struct sound
*current_sound
;
225 /* Function prototypes. */
227 static void vox_open
P_ ((struct sound_device
*));
228 static void vox_configure
P_ ((struct sound_device
*));
229 static void vox_close
P_ ((struct sound_device
*sd
));
230 static void vox_choose_format
P_ ((struct sound_device
*, struct sound
*));
231 static void vox_init
P_ ((struct sound_device
*));
232 static void vox_write
P_ ((struct sound_device
*, char *, int));
233 static void sound_perror
P_ ((char *));
234 static int parse_sound
P_ ((Lisp_Object
, Lisp_Object
*));
235 static void find_sound_type
P_ ((struct sound
*));
236 static u_int32_t le2hl
P_ ((u_int32_t
));
237 static u_int16_t le2hs
P_ ((u_int16_t
));
238 static u_int32_t be2hl
P_ ((u_int32_t
));
239 static int wav_init
P_ ((struct sound
*));
240 static void wav_play
P_ ((struct sound
*, struct sound_device
*));
241 static int au_init
P_ ((struct sound
*));
242 static void au_play
P_ ((struct sound
*, struct sound_device
*));
244 #if 0 /* Currently not used. */
245 static u_int16_t be2hs
P_ ((u_int16_t
));
250 /***********************************************************************
252 ***********************************************************************/
254 /* Like perror, but signals an error. */
260 error ("%s: %s", msg
, strerror (errno
));
264 /* Parse sound specification SOUND, and fill ATTRS with what is
265 found. Value is non-zero if SOUND Is a valid sound specification.
266 A valid sound specification is a list starting with the symbol
267 `sound'. The rest of the list is a property list which may
268 contain the following key/value pairs:
272 FILE is the sound file to play. If it isn't an absolute name,
273 it's searched under `data-directory'.
277 DATA is a string containing sound data. Either :file or :data
278 may be present, but not both.
282 DEVICE is the name of the device to play on, e.g. "/dev/dsp2".
283 If not specified, a default device is used.
287 VOL must be an integer in the range [0, 100], or a float in the
291 parse_sound (sound
, attrs
)
295 /* SOUND must be a list starting with the symbol `sound'. */
296 if (!CONSP (sound
) || !EQ (XCAR (sound
), Qsound
))
299 sound
= XCDR (sound
);
300 attrs
[SOUND_FILE
] = Fplist_get (sound
, QCfile
);
301 attrs
[SOUND_DATA
] = Fplist_get (sound
, QCdata
);
302 attrs
[SOUND_DEVICE
] = Fplist_get (sound
, QCdevice
);
303 attrs
[SOUND_VOLUME
] = Fplist_get (sound
, QCvolume
);
305 /* File name or data must be specified. */
306 if (!STRINGP (attrs
[SOUND_FILE
])
307 && !STRINGP (attrs
[SOUND_DATA
]))
310 /* Volume must be in the range 0..100 or unspecified. */
311 if (!NILP (attrs
[SOUND_VOLUME
]))
313 if (INTEGERP (attrs
[SOUND_VOLUME
]))
315 if (XINT (attrs
[SOUND_VOLUME
]) < 0
316 || XINT (attrs
[SOUND_VOLUME
]) > 100)
319 else if (FLOATP (attrs
[SOUND_VOLUME
]))
321 if (XFLOAT_DATA (attrs
[SOUND_VOLUME
]) < 0
322 || XFLOAT_DATA (attrs
[SOUND_VOLUME
]) > 1)
329 /* Device must be a string or unspecified. */
330 if (!NILP (attrs
[SOUND_DEVICE
])
331 && !STRINGP (attrs
[SOUND_DEVICE
]))
338 /* Find out the type of the sound file whose file descriptor is FD.
339 S is the sound file structure to fill in. */
345 if (!wav_init (s
) && !au_init (s
))
346 error ("Unknown sound format");
350 /* Function installed by play-sound with record_unwind_protect. */
356 if (current_sound_device
)
358 if (current_sound_device
->close
)
359 current_sound_device
->close (current_sound_device
);
360 if (current_sound
->fd
> 0)
361 emacs_close (current_sound
->fd
);
366 DEFUN ("play-sound", Fplay_sound
, Splay_sound
, 1, 1, 0,
367 "Play sound SOUND.\n\
368 SOUND is a list of the form `(sound KEYWORD VALUE...)'.\n\
369 The following keywords are recognized:\n\
371 :file FILE.- read sound data from FILE. If FILE Isn't an\n\
372 absolute file name, it is searched in `data-directory'.\n\
374 :data DATA - read sound data from string DATA.\n\
376 Exactly one of :file or :data must be present.\n\
378 :volume VOL - set volume to VOL. VOL must an integer in the\n\
379 range 0..100 or a float in the range 0..1.0. If not specified,\n\
380 don't change the volume setting of the sound device.\n\
382 :device DEVICE - play sound on DEVICE. If not specified,\n\
383 a system-dependent default device name is used.")
387 Lisp_Object attrs
[SOUND_ATTR_SENTINEL
];
389 struct gcpro gcpro1
, gcpro2
;
390 struct sound_device sd
;
393 int count
= specpdl_ptr
- specpdl
;
396 GCPRO2 (sound
, file
);
397 bzero (&sd
, sizeof sd
);
398 bzero (&s
, sizeof s
);
399 current_sound_device
= &sd
;
401 record_unwind_protect (sound_cleanup
, Qnil
);
402 s
.header
= (char *) alloca (MAX_SOUND_HEADER_BYTES
);
404 /* Parse the sound specification. Give up if it is invalid. */
405 if (!parse_sound (sound
, attrs
))
406 error ("Invalid sound specification");
408 if (STRINGP (attrs
[SOUND_FILE
]))
410 /* Open the sound file. */
411 s
.fd
= openp (Fcons (Vdata_directory
, Qnil
),
412 attrs
[SOUND_FILE
], "", &file
, 0);
414 sound_perror ("Open sound file");
416 /* Read the first bytes from the file. */
417 s
.header_size
= emacs_read (s
.fd
, s
.header
, MAX_SOUND_HEADER_BYTES
);
418 if (s
.header_size
< 0)
419 sound_perror ("Reading sound file header");
423 s
.data
= attrs
[SOUND_DATA
];
424 bcopy (XSTRING (s
.data
)->data
, s
.header
,
425 min (MAX_SOUND_HEADER_BYTES
, STRING_BYTES (XSTRING (s
.data
))));
428 /* Find out the type of sound. Give up if we can't tell. */
429 find_sound_type (&s
);
431 /* Set up a device. */
432 if (STRINGP (attrs
[SOUND_DEVICE
]))
434 int len
= XSTRING (attrs
[SOUND_DEVICE
])->size
;
435 sd
.file
= (char *) alloca (len
+ 1);
436 strcpy (sd
.file
, XSTRING (attrs
[SOUND_DEVICE
])->data
);
439 if (INTEGERP (attrs
[SOUND_VOLUME
]))
440 sd
.volume
= XFASTINT (attrs
[SOUND_VOLUME
]);
441 else if (FLOATP (attrs
[SOUND_VOLUME
]))
442 sd
.volume
= XFLOAT_DATA (attrs
[SOUND_VOLUME
]) * 100;
444 args
[0] = Qplay_sound_functions
;
446 Frun_hook_with_args (2, args
);
448 /* There is only one type of device we currently support, the VOX
449 sound driver. Set up the device interface functions for that
453 /* Open the device. */
456 /* Play the sound. */
459 /* Close the input file, if any. */
460 if (!STRINGP (s
.data
))
466 /* Close the device. */
470 current_sound_device
= NULL
;
471 current_sound
= NULL
;
473 unbind_to (count
, Qnil
);
478 /***********************************************************************
479 Byte-order Conversion
480 ***********************************************************************/
482 /* Convert 32-bit value VALUE which is in little-endian byte-order
483 to host byte-order. */
489 #ifdef WORDS_BIG_ENDIAN
490 unsigned char *p
= (unsigned char *) &value
;
491 value
= p
[0] + (p
[1] << 8) + (p
[2] << 16) + (p
[3] << 24);
497 /* Convert 16-bit value VALUE which is in little-endian byte-order
498 to host byte-order. */
504 #ifdef WORDS_BIG_ENDIAN
505 unsigned char *p
= (unsigned char *) &value
;
506 value
= p
[0] + (p
[1] << 8);
512 /* Convert 32-bit value VALUE which is in big-endian byte-order
513 to host byte-order. */
519 #ifndef WORDS_BIG_ENDIAN
520 unsigned char *p
= (unsigned char *) &value
;
521 value
= p
[3] + (p
[2] << 8) + (p
[1] << 16) + (p
[0] << 24);
527 #if 0 /* Currently not used. */
529 /* Convert 16-bit value VALUE which is in big-endian byte-order
530 to host byte-order. */
536 #ifndef WORDS_BIG_ENDIAN
537 unsigned char *p
= (unsigned char *) &value
;
538 value
= p
[1] + (p
[0] << 8);
546 /***********************************************************************
548 ***********************************************************************/
550 /* Try to initialize sound file S from S->header. S->header
551 contains the first MAX_SOUND_HEADER_BYTES number of bytes from the
552 sound file. If the file is a WAV-format file, set up interface
553 functions in S and convert header fields to host byte-order.
554 Value is non-zero if the file is a WAV file. */
560 struct wav_header
*header
= (struct wav_header
*) s
->header
;
562 if (s
->header_size
< sizeof *header
563 || bcmp (s
->header
, "RIFF", 4) != 0)
566 /* WAV files are in little-endian order. Convert the header
567 if on a big-endian machine. */
568 header
->magic
= le2hl (header
->magic
);
569 header
->length
= le2hl (header
->length
);
570 header
->chunk_type
= le2hl (header
->chunk_type
);
571 header
->chunk_format
= le2hl (header
->chunk_format
);
572 header
->chunk_length
= le2hl (header
->chunk_length
);
573 header
->format
= le2hs (header
->format
);
574 header
->channels
= le2hs (header
->channels
);
575 header
->sample_rate
= le2hl (header
->sample_rate
);
576 header
->bytes_per_second
= le2hl (header
->bytes_per_second
);
577 header
->sample_size
= le2hs (header
->sample_size
);
578 header
->precision
= le2hs (header
->precision
);
579 header
->chunk_data
= le2hl (header
->chunk_data
);
580 header
->data_length
= le2hl (header
->data_length
);
582 /* Set up the interface functions for WAV. */
590 /* Play RIFF-WAVE audio file S on sound device SD. */
595 struct sound_device
*sd
;
597 struct wav_header
*header
= (struct wav_header
*) s
->header
;
599 /* Let the device choose a suitable device-dependent format
601 sd
->choose_format (sd
, s
);
603 /* Configure the device. */
604 sd
->sample_size
= header
->sample_size
;
605 sd
->sample_rate
= header
->sample_rate
;
606 sd
->bps
= header
->bytes_per_second
;
607 sd
->channels
= header
->channels
;
610 /* Copy sound data to the device. The WAV file specification is
611 actually more complex. This simple scheme worked with all WAV
612 files I found so far. If someone feels inclined to implement the
613 whole RIFF-WAVE spec, please do. */
614 if (STRINGP (s
->data
))
615 sd
->write (sd
, XSTRING (s
->data
)->data
+ sizeof *header
,
616 STRING_BYTES (XSTRING (s
->data
)) - sizeof *header
);
623 buffer
= (char *) alloca (blksize
);
624 lseek (s
->fd
, sizeof *header
, SEEK_SET
);
626 while ((nbytes
= emacs_read (s
->fd
, buffer
, blksize
)) > 0)
627 sd
->write (sd
, buffer
, nbytes
);
630 sound_perror ("Reading sound file");
636 /***********************************************************************
638 ***********************************************************************/
640 /* Sun audio file encodings. */
644 AU_ENCODING_ULAW_8
= 1,
655 /* Try to initialize sound file S from S->header. S->header
656 contains the first MAX_SOUND_HEADER_BYTES number of bytes from the
657 sound file. If the file is a AU-format file, set up interface
658 functions in S and convert header fields to host byte-order.
659 Value is non-zero if the file is an AU file. */
665 struct au_header
*header
= (struct au_header
*) s
->header
;
667 if (s
->header_size
< sizeof *header
668 || bcmp (s
->header
, ".snd", 4) != 0)
671 header
->magic_number
= be2hl (header
->magic_number
);
672 header
->data_offset
= be2hl (header
->data_offset
);
673 header
->data_size
= be2hl (header
->data_size
);
674 header
->encoding
= be2hl (header
->encoding
);
675 header
->sample_rate
= be2hl (header
->sample_rate
);
676 header
->channels
= be2hl (header
->channels
);
678 /* Set up the interface functions for AU. */
686 /* Play Sun audio file S on sound device SD. */
691 struct sound_device
*sd
;
693 struct au_header
*header
= (struct au_header
*) s
->header
;
696 sd
->sample_rate
= header
->sample_rate
;
698 sd
->channels
= header
->channels
;
699 sd
->choose_format (sd
, s
);
702 if (STRINGP (s
->data
))
703 sd
->write (sd
, XSTRING (s
->data
)->data
+ header
->data_offset
,
704 STRING_BYTES (XSTRING (s
->data
)) - header
->data_offset
);
712 lseek (s
->fd
, header
->data_offset
, SEEK_SET
);
714 /* Copy sound data to the device. */
715 buffer
= (char *) alloca (blksize
);
716 while ((nbytes
= emacs_read (s
->fd
, buffer
, blksize
)) > 0)
717 sd
->write (sd
, buffer
, nbytes
);
720 sound_perror ("Reading sound file");
726 /***********************************************************************
727 Voxware Driver Interface
728 ***********************************************************************/
730 /* This driver is available on GNU/Linux, and the free BSDs. FreeBSD
731 has a compatible own driver aka Luigi's driver. */
734 /* Open device SD. If SD->file is non-null, open that device,
735 otherwise use a default device name. */
739 struct sound_device
*sd
;
743 /* Open the sound device. Default is /dev/dsp. */
747 file
= DEFAULT_SOUND_DEVICE
;
749 sd
->fd
= emacs_open (file
, O_WRONLY
, 0);
755 /* Configure device SD from parameters in it. */
759 struct sound_device
*sd
;
763 xassert (sd
->fd
>= 0);
765 /* Device parameters apparently depend on each other in undocumented
766 ways (not to imply that there is any real documentation). Be
767 careful when reordering the calls below. */
768 if (sd
->sample_size
> 0
769 && ioctl (sd
->fd
, SNDCTL_DSP_SAMPLESIZE
, &sd
->sample_size
) < 0)
770 sound_perror ("Setting sample size");
773 && ioctl (sd
->fd
, SNDCTL_DSP_SPEED
, &sd
->bps
) < 0)
774 sound_perror ("Setting speed");
776 if (sd
->sample_rate
> 0
777 && ioctl (sd
->fd
, SOUND_PCM_WRITE_RATE
, &sd
->sample_rate
) < 0)
778 sound_perror ("Setting sample rate");
780 requested
= sd
->format
;
781 if (ioctl (sd
->fd
, SNDCTL_DSP_SETFMT
, &sd
->format
) < 0)
782 sound_perror ("Setting format");
783 else if (requested
!= sd
->format
)
784 error ("Setting format");
787 && ioctl (sd
->fd
, SNDCTL_DSP_STEREO
, &sd
->channels
) < 0)
788 sound_perror ("Setting channels");
791 && ioctl (sd
->fd
, SOUND_MIXER_WRITE_PCM
, &sd
->volume
) < 0)
792 sound_perror ("Setting volume");
796 /* Close device SD if it is open. */
800 struct sound_device
*sd
;
804 /* Flush sound data, and reset the device. */
805 ioctl (sd
->fd
, SNDCTL_DSP_SYNC
, NULL
);
806 ioctl (sd
->fd
, SNDCTL_DSP_RESET
, NULL
);
808 /* Close the device. */
809 emacs_close (sd
->fd
);
815 /* Choose device-dependent format for device SD from sound file S. */
818 vox_choose_format (sd
, s
)
819 struct sound_device
*sd
;
824 struct wav_header
*h
= (struct wav_header
*) s
->header
;
825 if (h
->precision
== 8)
826 sd
->format
= AFMT_U8
;
827 else if (h
->precision
== 16)
828 sd
->format
= AFMT_S16_LE
;
830 error ("Unsupported WAV file format");
832 else if (s
->type
== SUN_AUDIO
)
834 struct au_header
*header
= (struct au_header
*) s
->header
;
835 switch (header
->encoding
)
837 case AU_ENCODING_ULAW_8
:
838 case AU_ENCODING_IEEE32
:
839 case AU_ENCODING_IEEE64
:
840 sd
->format
= AFMT_MU_LAW
;
847 sd
->format
= AFMT_S16_LE
;
851 error ("Unsupported AU file format");
859 /* Initialize device SD. Set up the interface functions in the device
864 struct sound_device
*sd
;
868 sd
->close
= vox_close
;
869 sd
->configure
= vox_configure
;
870 sd
->choose_format
= vox_choose_format
;
871 sd
->write
= vox_write
;
875 /* Write NBYTES bytes from BUFFER to device SD. */
878 vox_write (sd
, buffer
, nbytes
)
879 struct sound_device
*sd
;
883 int nwritten
= emacs_write (sd
->fd
, buffer
, nbytes
);
885 sound_perror ("Writing to sound device");
890 /***********************************************************************
892 ***********************************************************************/
897 QCdevice
= intern (":device");
898 staticpro (&QCdevice
);
899 QCvolume
= intern (":volume");
900 staticpro (&QCvolume
);
901 Qsound
= intern ("sound");
903 Qplay_sound_functions
= intern ("play-sound-functions");
904 staticpro (&Qplay_sound_functions
);
906 defsubr (&Splay_sound
);
915 #endif /* HAVE_SOUND */