Mercurial > emacs
annotate src/sound.c @ 38226:7ee172ed0239
*** empty log message ***
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 28 Jun 2001 21:17:27 +0000 |
parents | b9fdde642b13 |
children | 17465a81d1dd |
rev | line source |
---|---|
25003 | 1 /* sound.c -- sound support. |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25722
diff
changeset
|
2 Copyright (C) 1998, 1999 Free Software Foundation. |
25003 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
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) | |
9 any later version. | |
10 | |
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. | |
15 | |
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. */ | |
20 | |
21 /* Written by Gerd Moellmann <gerd@gnu.org>. Tested with Luigi's | |
22 driver on FreeBSD 2.2.7 with a SoundBlaster 16. */ | |
23 | |
24 #include <config.h> | |
25 | |
26 #if defined HAVE_SOUND | |
27 | |
28 #include <lisp.h> | |
29 #include <fcntl.h> | |
30 #include <unistd.h> | |
31 #include <sys/types.h> | |
32 #include <dispextern.h> | |
33 #include <errno.h> | |
38215
b9fdde642b13
(vox_configure, vox_close): Turn off atimers
Gerd Moellmann <gerd@gnu.org>
parents:
34354
diff
changeset
|
34 #include <atimer.h> |
25003 | 35 |
36 /* FreeBSD has machine/soundcard.h. Voxware sound driver docs mention | |
37 sys/soundcard.h. So, let's try whatever's there. */ | |
38 | |
39 #ifdef HAVE_MACHINE_SOUNDCARD_H | |
40 #include <machine/soundcard.h> | |
41 #endif | |
42 #ifdef HAVE_SYS_SOUNDCARD_H | |
43 #include <sys/soundcard.h> | |
44 #endif | |
30079
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
45 #ifdef HAVE_SOUNDCARD_H |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
46 #include <sys/ioctl.h> |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
47 #include <soundcard.h> |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
48 #endif |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
49 |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
50 #ifndef DEFAULT_SOUND_DEVICE |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
51 #define DEFAULT_SOUND_DEVICE "/dev/dsp" |
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
52 #endif |
25003 | 53 |
54 #define max(X, Y) ((X) > (Y) ? (X) : (Y)) | |
55 #define min(X, Y) ((X) < (Y) ? (X) : (Y)) | |
56 #define abs(X) ((X) < 0 ? -(X) : (X)) | |
57 | |
58 /* Structure forward declarations. */ | |
59 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
60 struct sound; |
25003 | 61 struct sound_device; |
62 | |
63 /* The file header of RIFF-WAVE files (*.wav). Files are always in | |
64 little-endian byte-order. */ | |
65 | |
66 struct wav_header | |
67 { | |
68 u_int32_t magic; | |
69 u_int32_t length; | |
70 u_int32_t chunk_type; | |
71 u_int32_t chunk_format; | |
72 u_int32_t chunk_length; | |
73 u_int16_t format; | |
74 u_int16_t channels; | |
75 u_int32_t sample_rate; | |
76 u_int32_t bytes_per_second; | |
77 u_int16_t sample_size; | |
78 u_int16_t precision; | |
79 u_int32_t chunk_data; | |
80 u_int32_t data_length; | |
81 }; | |
82 | |
83 /* The file header of Sun adio files (*.au). Files are always in | |
84 big-endian byte-order. */ | |
85 | |
86 struct au_header | |
87 { | |
88 /* ASCII ".snd" */ | |
89 u_int32_t magic_number; | |
90 | |
91 /* Offset of data part from start of file. Minimum value is 24. */ | |
92 u_int32_t data_offset; | |
93 | |
94 /* Size of data part, 0xffffffff if unknown. */ | |
95 u_int32_t data_size; | |
96 | |
97 /* Data encoding format. | |
98 1 8-bit ISDN u-law | |
99 2 8-bit linear PCM (REF-PCM) | |
100 3 16-bit linear PCM | |
101 4 24-bit linear PCM | |
102 5 32-bit linear PCM | |
103 6 32-bit IEEE floating-point | |
104 7 64-bit IEEE floating-point | |
105 23 8-bit u-law compressed using CCITT 0.721 ADPCM voice data | |
106 encoding scheme. */ | |
107 u_int32_t encoding; | |
108 | |
109 /* Number of samples per second. */ | |
110 u_int32_t sample_rate; | |
111 | |
112 /* Number of interleaved channels. */ | |
113 u_int32_t channels; | |
114 }; | |
115 | |
116 /* Maximum of all sound file headers sizes. */ | |
117 | |
118 #define MAX_SOUND_HEADER_BYTES \ | |
119 max (sizeof (struct wav_header), sizeof (struct au_header)) | |
120 | |
121 /* Interface structure for sound devices. */ | |
122 | |
123 struct sound_device | |
124 { | |
125 /* The name of the device or null meaning use a default device name. */ | |
126 char *file; | |
127 | |
128 /* File descriptor of the device. */ | |
129 int fd; | |
130 | |
131 /* Device-dependent format. */ | |
132 int format; | |
133 | |
134 /* Volume (0..100). Zero means unspecified. */ | |
135 int volume; | |
136 | |
137 /* Sample size. */ | |
138 int sample_size; | |
139 | |
140 /* Sample rate. */ | |
141 int sample_rate; | |
142 | |
143 /* Bytes per second. */ | |
144 int bps; | |
145 | |
146 /* 1 = mono, 2 = stereo, 0 = don't set. */ | |
147 int channels; | |
148 | |
149 /* Open device SD. */ | |
150 void (* open) P_ ((struct sound_device *sd)); | |
151 | |
152 /* Close device SD. */ | |
153 void (* close) P_ ((struct sound_device *sd)); | |
154 | |
155 /* Configure SD accoring to device-dependent parameters. */ | |
156 void (* configure) P_ ((struct sound_device *device)); | |
157 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
158 /* Choose a device-dependent format for outputting sound S. */ |
25003 | 159 void (* choose_format) P_ ((struct sound_device *sd, |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
160 struct sound *s)); |
25003 | 161 |
162 /* Write NYBTES bytes from BUFFER to device SD. */ | |
163 void (* write) P_ ((struct sound_device *sd, char *buffer, int nbytes)); | |
164 | |
165 /* A place for devices to store additional data. */ | |
166 void *data; | |
167 }; | |
168 | |
169 /* An enumerator for each supported sound file type. */ | |
170 | |
171 enum sound_type | |
172 { | |
173 RIFF, | |
174 SUN_AUDIO | |
175 }; | |
176 | |
177 /* Interface structure for sound files. */ | |
178 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
179 struct sound |
25003 | 180 { |
181 /* The type of the file. */ | |
182 enum sound_type type; | |
183 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
184 /* File descriptor of a sound file. */ |
25003 | 185 int fd; |
186 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
187 /* Pointer to sound file header. This contains header_size bytes |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
188 read from the start of a sound file. */ |
25003 | 189 char *header; |
190 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
191 /* Number of bytes raed from sound file. This is always <= |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
192 MAX_SOUND_HEADER_BYTES. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
193 int header_size; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
194 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
195 /* Sound data, if a string. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
196 Lisp_Object data; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
197 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
198 /* Play sound file S on device SD. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
199 void (* play) P_ ((struct sound *s, struct sound_device *sd)); |
25003 | 200 }; |
201 | |
202 /* Indices of attributes in a sound attributes vector. */ | |
203 | |
204 enum sound_attr | |
205 { | |
206 SOUND_FILE, | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
207 SOUND_DATA, |
25003 | 208 SOUND_DEVICE, |
209 SOUND_VOLUME, | |
210 SOUND_ATTR_SENTINEL | |
211 }; | |
212 | |
213 /* Symbols. */ | |
214 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
215 extern Lisp_Object QCfile, QCdata; |
25003 | 216 Lisp_Object QCvolume, QCdevice; |
217 Lisp_Object Qsound; | |
25548
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
218 Lisp_Object Qplay_sound_functions; |
25003 | 219 |
220 /* These are set during `play-sound' so that sound_cleanup has | |
221 access to them. */ | |
222 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
223 struct sound_device *current_sound_device; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
224 struct sound *current_sound; |
25003 | 225 |
226 /* Function prototypes. */ | |
227 | |
228 static void vox_open P_ ((struct sound_device *)); | |
229 static void vox_configure P_ ((struct sound_device *)); | |
230 static void vox_close P_ ((struct sound_device *sd)); | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
231 static void vox_choose_format P_ ((struct sound_device *, struct sound *)); |
25003 | 232 static void vox_init P_ ((struct sound_device *)); |
233 static void vox_write P_ ((struct sound_device *, char *, int)); | |
234 static void sound_perror P_ ((char *)); | |
235 static int parse_sound P_ ((Lisp_Object, Lisp_Object *)); | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
236 static void find_sound_type P_ ((struct sound *)); |
25003 | 237 static u_int32_t le2hl P_ ((u_int32_t)); |
238 static u_int16_t le2hs P_ ((u_int16_t)); | |
239 static u_int32_t be2hl P_ ((u_int32_t)); | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
240 static int wav_init P_ ((struct sound *)); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
241 static void wav_play P_ ((struct sound *, struct sound_device *)); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
242 static int au_init P_ ((struct sound *)); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
243 static void au_play P_ ((struct sound *, struct sound_device *)); |
25003 | 244 |
25722
2be6ced279d3
(Fplay_sound): Remove usused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25548
diff
changeset
|
245 #if 0 /* Currently not used. */ |
2be6ced279d3
(Fplay_sound): Remove usused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25548
diff
changeset
|
246 static u_int16_t be2hs P_ ((u_int16_t)); |
2be6ced279d3
(Fplay_sound): Remove usused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25548
diff
changeset
|
247 #endif |
2be6ced279d3
(Fplay_sound): Remove usused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25548
diff
changeset
|
248 |
25003 | 249 |
250 | |
251 /*********************************************************************** | |
252 General | |
253 ***********************************************************************/ | |
254 | |
255 /* Like perror, but signals an error. */ | |
256 | |
257 static void | |
258 sound_perror (msg) | |
259 char *msg; | |
260 { | |
261 error ("%s: %s", msg, strerror (errno)); | |
262 } | |
263 | |
264 | |
265 /* Parse sound specification SOUND, and fill ATTRS with what is | |
266 found. Value is non-zero if SOUND Is a valid sound specification. | |
267 A valid sound specification is a list starting with the symbol | |
268 `sound'. The rest of the list is a property list which may | |
269 contain the following key/value pairs: | |
270 | |
271 - `:file FILE' | |
272 | |
273 FILE is the sound file to play. If it isn't an absolute name, | |
274 it's searched under `data-directory'. | |
275 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
276 - `:data DATA' |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
277 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
278 DATA is a string containing sound data. Either :file or :data |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
279 may be present, but not both. |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
280 |
25003 | 281 - `:device DEVICE' |
282 | |
283 DEVICE is the name of the device to play on, e.g. "/dev/dsp2". | |
284 If not specified, a default device is used. | |
285 | |
286 - `:volume VOL' | |
287 | |
25548
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
288 VOL must be an integer in the range [0, 100], or a float in the |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
289 range [0, 1]. */ |
25003 | 290 |
291 static int | |
292 parse_sound (sound, attrs) | |
293 Lisp_Object sound; | |
294 Lisp_Object *attrs; | |
295 { | |
296 /* SOUND must be a list starting with the symbol `sound'. */ | |
297 if (!CONSP (sound) || !EQ (XCAR (sound), Qsound)) | |
298 return 0; | |
299 | |
300 sound = XCDR (sound); | |
301 attrs[SOUND_FILE] = Fplist_get (sound, QCfile); | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
302 attrs[SOUND_DATA] = Fplist_get (sound, QCdata); |
25003 | 303 attrs[SOUND_DEVICE] = Fplist_get (sound, QCdevice); |
304 attrs[SOUND_VOLUME] = Fplist_get (sound, QCvolume); | |
305 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
306 /* File name or data must be specified. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
307 if (!STRINGP (attrs[SOUND_FILE]) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
308 && !STRINGP (attrs[SOUND_DATA])) |
25003 | 309 return 0; |
310 | |
311 /* Volume must be in the range 0..100 or unspecified. */ | |
312 if (!NILP (attrs[SOUND_VOLUME])) | |
313 { | |
25548
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
314 if (INTEGERP (attrs[SOUND_VOLUME])) |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
315 { |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
316 if (XINT (attrs[SOUND_VOLUME]) < 0 |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
317 || XINT (attrs[SOUND_VOLUME]) > 100) |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
318 return 0; |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
319 } |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
320 else if (FLOATP (attrs[SOUND_VOLUME])) |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
321 { |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
322 if (XFLOAT_DATA (attrs[SOUND_VOLUME]) < 0 |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
323 || XFLOAT_DATA (attrs[SOUND_VOLUME]) > 1) |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
324 return 0; |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
325 } |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
326 else |
25003 | 327 return 0; |
328 } | |
329 | |
330 /* Device must be a string or unspecified. */ | |
331 if (!NILP (attrs[SOUND_DEVICE]) | |
332 && !STRINGP (attrs[SOUND_DEVICE])) | |
333 return 0; | |
334 | |
335 return 1; | |
336 } | |
337 | |
338 | |
339 /* Find out the type of the sound file whose file descriptor is FD. | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
340 S is the sound file structure to fill in. */ |
25003 | 341 |
342 static void | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
343 find_sound_type (s) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
344 struct sound *s; |
25003 | 345 { |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
346 if (!wav_init (s) && !au_init (s)) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
347 error ("Unknown sound format"); |
25003 | 348 } |
349 | |
350 | |
351 /* Function installed by play-sound with record_unwind_protect. */ | |
352 | |
353 static Lisp_Object | |
354 sound_cleanup (arg) | |
355 Lisp_Object arg; | |
356 { | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
357 if (current_sound_device) |
25003 | 358 { |
27635
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27315
diff
changeset
|
359 if (current_sound_device->close) |
8344762c0da2
* sound.c (sound_cleanup): Don't call device close routine if pointer is null.
Ken Raeburn <raeburn@raeburn.org>
parents:
27315
diff
changeset
|
360 current_sound_device->close (current_sound_device); |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
361 if (current_sound->fd > 0) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
362 emacs_close (current_sound->fd); |
25003 | 363 } |
34255
cb2b0d1799db
(vox_configure): Set volume for left and right channel.
Gerd Moellmann <gerd@gnu.org>
parents:
31587
diff
changeset
|
364 |
cb2b0d1799db
(vox_configure): Set volume for left and right channel.
Gerd Moellmann <gerd@gnu.org>
parents:
31587
diff
changeset
|
365 return Qnil; |
25003 | 366 } |
367 | |
368 | |
369 DEFUN ("play-sound", Fplay_sound, Splay_sound, 1, 1, 0, | |
27315
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
370 "Play sound SOUND.\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
371 SOUND is a list of the form `(sound KEYWORD VALUE...)'.\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
372 The following keywords are recognized:\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
373 \n\ |
31587 | 374 :file FILE.- read sound data from FILE. If FILE isn't an\n\ |
27315
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
375 absolute file name, it is searched in `data-directory'.\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
376 \n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
377 :data DATA - read sound data from string DATA.\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
378 \n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
379 Exactly one of :file or :data must be present.\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
380 \n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
381 :volume VOL - set volume to VOL. VOL must an integer in the\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
382 range 0..100 or a float in the range 0..1.0. If not specified,\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
383 don't change the volume setting of the sound device.\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
384 \n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
385 :device DEVICE - play sound on DEVICE. If not specified,\n\ |
e17a1c6d3d69
(Fplay_sound): Improve doc string.
Gerd Moellmann <gerd@gnu.org>
parents:
27146
diff
changeset
|
386 a system-dependent default device name is used.") |
25003 | 387 (sound) |
388 Lisp_Object sound; | |
389 { | |
390 Lisp_Object attrs[SOUND_ATTR_SENTINEL]; | |
391 Lisp_Object file; | |
392 struct gcpro gcpro1, gcpro2; | |
393 struct sound_device sd; | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
394 struct sound s; |
25003 | 395 Lisp_Object args[2]; |
396 int count = specpdl_ptr - specpdl; | |
397 | |
398 file = Qnil; | |
399 GCPRO2 (sound, file); | |
400 bzero (&sd, sizeof sd); | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
401 bzero (&s, sizeof s); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
402 current_sound_device = &sd; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
403 current_sound = &s; |
25003 | 404 record_unwind_protect (sound_cleanup, Qnil); |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
405 s.header = (char *) alloca (MAX_SOUND_HEADER_BYTES); |
25003 | 406 |
407 /* Parse the sound specification. Give up if it is invalid. */ | |
408 if (!parse_sound (sound, attrs)) | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
409 error ("Invalid sound specification"); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
410 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
411 if (STRINGP (attrs[SOUND_FILE])) |
25003 | 412 { |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
413 /* Open the sound file. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
414 s.fd = openp (Fcons (Vdata_directory, Qnil), |
38215
b9fdde642b13
(vox_configure, vox_close): Turn off atimers
Gerd Moellmann <gerd@gnu.org>
parents:
34354
diff
changeset
|
415 attrs[SOUND_FILE], "", &file, 0); |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
416 if (s.fd < 0) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
417 sound_perror ("Open sound file"); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
418 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
419 /* Read the first bytes from the file. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
420 s.header_size = emacs_read (s.fd, s.header, MAX_SOUND_HEADER_BYTES); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
421 if (s.header_size < 0) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
422 sound_perror ("Reading sound file header"); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
423 } |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
424 else |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
425 { |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
426 s.data = attrs[SOUND_DATA]; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
427 bcopy (XSTRING (s.data)->data, s.header, |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
428 min (MAX_SOUND_HEADER_BYTES, STRING_BYTES (XSTRING (s.data)))); |
25003 | 429 } |
430 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
431 /* Find out the type of sound. Give up if we can't tell. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
432 find_sound_type (&s); |
25003 | 433 |
434 /* Set up a device. */ | |
435 if (STRINGP (attrs[SOUND_DEVICE])) | |
436 { | |
437 int len = XSTRING (attrs[SOUND_DEVICE])->size; | |
438 sd.file = (char *) alloca (len + 1); | |
439 strcpy (sd.file, XSTRING (attrs[SOUND_DEVICE])->data); | |
440 } | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
441 |
25003 | 442 if (INTEGERP (attrs[SOUND_VOLUME])) |
443 sd.volume = XFASTINT (attrs[SOUND_VOLUME]); | |
25548
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
444 else if (FLOATP (attrs[SOUND_VOLUME])) |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
445 sd.volume = XFLOAT_DATA (attrs[SOUND_VOLUME]) * 100; |
25003 | 446 |
25548
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
447 args[0] = Qplay_sound_functions; |
25003 | 448 args[1] = sound; |
29717
acaa36b47f50
fix up more Lisp_Object/int conversion issues
Ken Raeburn <raeburn@raeburn.org>
parents:
27635
diff
changeset
|
449 Frun_hook_with_args (2, args); |
25003 | 450 |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
451 /* There is only one type of device we currently support, the VOX |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
452 sound driver. Set up the device interface functions for that |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
453 device. */ |
25003 | 454 vox_init (&sd); |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
455 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
456 /* Open the device. */ |
25003 | 457 sd.open (&sd); |
458 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
459 /* Play the sound. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
460 s.play (&s, &sd); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
461 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
462 /* Close the input file, if any. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
463 if (!STRINGP (s.data)) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
464 { |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
465 emacs_close (s.fd); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
466 s.fd = -1; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
467 } |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
468 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
469 /* Close the device. */ |
25003 | 470 sd.close (&sd); |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
471 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
472 /* Clean up. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
473 current_sound_device = NULL; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
474 current_sound = NULL; |
25003 | 475 UNGCPRO; |
476 unbind_to (count, Qnil); | |
477 return Qnil; | |
478 } | |
479 | |
480 | |
481 /*********************************************************************** | |
482 Byte-order Conversion | |
483 ***********************************************************************/ | |
484 | |
485 /* Convert 32-bit value VALUE which is in little-endian byte-order | |
486 to host byte-order. */ | |
487 | |
488 static u_int32_t | |
489 le2hl (value) | |
490 u_int32_t value; | |
491 { | |
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); | |
495 #endif | |
496 return value; | |
497 } | |
498 | |
499 | |
500 /* Convert 16-bit value VALUE which is in little-endian byte-order | |
501 to host byte-order. */ | |
502 | |
503 static u_int16_t | |
504 le2hs (value) | |
505 u_int16_t value; | |
506 { | |
507 #ifdef WORDS_BIG_ENDIAN | |
508 unsigned char *p = (unsigned char *) &value; | |
509 value = p[0] + (p[1] << 8); | |
510 #endif | |
511 return value; | |
512 } | |
513 | |
514 | |
515 /* Convert 32-bit value VALUE which is in big-endian byte-order | |
516 to host byte-order. */ | |
517 | |
518 static u_int32_t | |
519 be2hl (value) | |
520 u_int32_t value; | |
521 { | |
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); | |
525 #endif | |
526 return value; | |
527 } | |
528 | |
529 | |
25722
2be6ced279d3
(Fplay_sound): Remove usused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25548
diff
changeset
|
530 #if 0 /* Currently not used. */ |
2be6ced279d3
(Fplay_sound): Remove usused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25548
diff
changeset
|
531 |
25003 | 532 /* Convert 16-bit value VALUE which is in big-endian byte-order |
533 to host byte-order. */ | |
534 | |
535 static u_int16_t | |
536 be2hs (value) | |
537 u_int16_t value; | |
538 { | |
539 #ifndef WORDS_BIG_ENDIAN | |
540 unsigned char *p = (unsigned char *) &value; | |
541 value = p[1] + (p[0] << 8); | |
542 #endif | |
543 return value; | |
544 } | |
545 | |
25722
2be6ced279d3
(Fplay_sound): Remove usused variables.
Gerd Moellmann <gerd@gnu.org>
parents:
25548
diff
changeset
|
546 #endif /* 0 */ |
25003 | 547 |
548 | |
549 /*********************************************************************** | |
550 RIFF-WAVE (*.wav) | |
551 ***********************************************************************/ | |
552 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
553 /* Try to initialize sound file S from S->header. S->header |
25003 | 554 contains the first MAX_SOUND_HEADER_BYTES number of bytes from the |
555 sound file. If the file is a WAV-format file, set up interface | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
556 functions in S and convert header fields to host byte-order. |
25003 | 557 Value is non-zero if the file is a WAV file. */ |
558 | |
559 static int | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
560 wav_init (s) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
561 struct sound *s; |
25003 | 562 { |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
563 struct wav_header *header = (struct wav_header *) s->header; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
564 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
565 if (s->header_size < sizeof *header |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
566 || bcmp (s->header, "RIFF", 4) != 0) |
25003 | 567 return 0; |
568 | |
569 /* WAV files are in little-endian order. Convert the header | |
570 if on a big-endian machine. */ | |
571 header->magic = le2hl (header->magic); | |
572 header->length = le2hl (header->length); | |
573 header->chunk_type = le2hl (header->chunk_type); | |
574 header->chunk_format = le2hl (header->chunk_format); | |
575 header->chunk_length = le2hl (header->chunk_length); | |
576 header->format = le2hs (header->format); | |
577 header->channels = le2hs (header->channels); | |
578 header->sample_rate = le2hl (header->sample_rate); | |
579 header->bytes_per_second = le2hl (header->bytes_per_second); | |
580 header->sample_size = le2hs (header->sample_size); | |
581 header->precision = le2hs (header->precision); | |
582 header->chunk_data = le2hl (header->chunk_data); | |
583 header->data_length = le2hl (header->data_length); | |
584 | |
585 /* Set up the interface functions for WAV. */ | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
586 s->type = RIFF; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
587 s->play = wav_play; |
25003 | 588 |
589 return 1; | |
590 } | |
591 | |
592 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
593 /* Play RIFF-WAVE audio file S on sound device SD. */ |
25003 | 594 |
595 static void | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
596 wav_play (s, sd) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
597 struct sound *s; |
25003 | 598 struct sound_device *sd; |
599 { | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
600 struct wav_header *header = (struct wav_header *) s->header; |
25003 | 601 |
602 /* Let the device choose a suitable device-dependent format | |
603 for the file. */ | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
604 sd->choose_format (sd, s); |
25003 | 605 |
606 /* Configure the device. */ | |
607 sd->sample_size = header->sample_size; | |
608 sd->sample_rate = header->sample_rate; | |
609 sd->bps = header->bytes_per_second; | |
610 sd->channels = header->channels; | |
611 sd->configure (sd); | |
612 | |
613 /* Copy sound data to the device. The WAV file specification is | |
614 actually more complex. This simple scheme worked with all WAV | |
615 files I found so far. If someone feels inclined to implement the | |
616 whole RIFF-WAVE spec, please do. */ | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
617 if (STRINGP (s->data)) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
618 sd->write (sd, XSTRING (s->data)->data + sizeof *header, |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
619 STRING_BYTES (XSTRING (s->data)) - sizeof *header); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
620 else |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
621 { |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
622 char *buffer; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
623 int nbytes; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
624 int blksize = 2048; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
625 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
626 buffer = (char *) alloca (blksize); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
627 lseek (s->fd, sizeof *header, SEEK_SET); |
25003 | 628 |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
629 while ((nbytes = emacs_read (s->fd, buffer, blksize)) > 0) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
630 sd->write (sd, buffer, nbytes); |
25003 | 631 |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
632 if (nbytes < 0) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
633 sound_perror ("Reading sound file"); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
634 } |
25003 | 635 } |
636 | |
637 | |
638 | |
639 /*********************************************************************** | |
640 Sun Audio (*.au) | |
641 ***********************************************************************/ | |
642 | |
643 /* Sun audio file encodings. */ | |
644 | |
645 enum au_encoding | |
646 { | |
647 AU_ENCODING_ULAW_8 = 1, | |
648 AU_ENCODING_8, | |
649 AU_ENCODING_16, | |
650 AU_ENCODING_24, | |
651 AU_ENCODING_32, | |
652 AU_ENCODING_IEEE32, | |
653 AU_ENCODING_IEEE64, | |
654 AU_COMPRESSED = 23 | |
655 }; | |
656 | |
657 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
658 /* Try to initialize sound file S from S->header. S->header |
25003 | 659 contains the first MAX_SOUND_HEADER_BYTES number of bytes from the |
660 sound file. If the file is a AU-format file, set up interface | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
661 functions in S and convert header fields to host byte-order. |
25003 | 662 Value is non-zero if the file is an AU file. */ |
663 | |
664 static int | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
665 au_init (s) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
666 struct sound *s; |
25003 | 667 { |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
668 struct au_header *header = (struct au_header *) s->header; |
25003 | 669 |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
670 if (s->header_size < sizeof *header |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
671 || bcmp (s->header, ".snd", 4) != 0) |
25003 | 672 return 0; |
673 | |
674 header->magic_number = be2hl (header->magic_number); | |
675 header->data_offset = be2hl (header->data_offset); | |
676 header->data_size = be2hl (header->data_size); | |
677 header->encoding = be2hl (header->encoding); | |
678 header->sample_rate = be2hl (header->sample_rate); | |
679 header->channels = be2hl (header->channels); | |
680 | |
681 /* Set up the interface functions for AU. */ | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
682 s->type = SUN_AUDIO; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
683 s->play = au_play; |
25003 | 684 |
685 return 1; | |
686 } | |
687 | |
688 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
689 /* Play Sun audio file S on sound device SD. */ |
25003 | 690 |
691 static void | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
692 au_play (s, sd) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
693 struct sound *s; |
25003 | 694 struct sound_device *sd; |
695 { | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
696 struct au_header *header = (struct au_header *) s->header; |
25003 | 697 |
698 sd->sample_size = 0; | |
699 sd->sample_rate = header->sample_rate; | |
700 sd->bps = 0; | |
701 sd->channels = header->channels; | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
702 sd->choose_format (sd, s); |
25003 | 703 sd->configure (sd); |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
704 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
705 if (STRINGP (s->data)) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
706 sd->write (sd, XSTRING (s->data)->data + header->data_offset, |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
707 STRING_BYTES (XSTRING (s->data)) - header->data_offset); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
708 else |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
709 { |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
710 int blksize = 2048; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
711 char *buffer; |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
712 int nbytes; |
25003 | 713 |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
714 /* Seek */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
715 lseek (s->fd, header->data_offset, SEEK_SET); |
25003 | 716 |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
717 /* Copy sound data to the device. */ |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
718 buffer = (char *) alloca (blksize); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
719 while ((nbytes = emacs_read (s->fd, buffer, blksize)) > 0) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
720 sd->write (sd, buffer, nbytes); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
721 |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
722 if (nbytes < 0) |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
723 sound_perror ("Reading sound file"); |
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
724 } |
25003 | 725 } |
726 | |
727 | |
728 | |
729 /*********************************************************************** | |
730 Voxware Driver Interface | |
731 ***********************************************************************/ | |
732 | |
733 /* This driver is available on GNU/Linux, and the free BSDs. FreeBSD | |
734 has a compatible own driver aka Luigi's driver. */ | |
735 | |
736 | |
737 /* Open device SD. If SD->file is non-null, open that device, | |
738 otherwise use a default device name. */ | |
739 | |
740 static void | |
741 vox_open (sd) | |
742 struct sound_device *sd; | |
743 { | |
744 char *file; | |
745 | |
746 /* Open the sound device. Default is /dev/dsp. */ | |
747 if (sd->file) | |
748 file = sd->file; | |
749 else | |
30079
1572612184fc
Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents:
29717
diff
changeset
|
750 file = DEFAULT_SOUND_DEVICE; |
25003 | 751 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25722
diff
changeset
|
752 sd->fd = emacs_open (file, O_WRONLY, 0); |
25003 | 753 if (sd->fd < 0) |
754 sound_perror (file); | |
755 } | |
756 | |
757 | |
758 /* Configure device SD from parameters in it. */ | |
759 | |
760 static void | |
761 vox_configure (sd) | |
762 struct sound_device *sd; | |
763 { | |
34354
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
764 int val; |
25003 | 765 |
766 xassert (sd->fd >= 0); | |
767 | |
38215
b9fdde642b13
(vox_configure, vox_close): Turn off atimers
Gerd Moellmann <gerd@gnu.org>
parents:
34354
diff
changeset
|
768 turn_on_atimers (0); |
b9fdde642b13
(vox_configure, vox_close): Turn off atimers
Gerd Moellmann <gerd@gnu.org>
parents:
34354
diff
changeset
|
769 |
34354
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
770 val = sd->format; |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
771 if (ioctl (sd->fd, SNDCTL_DSP_SETFMT, &sd->format) < 0 |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
772 || val != sd->format) |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
773 sound_perror ("Set sound format"); |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
774 |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
775 val = sd->channels != 1; |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
776 if (ioctl (sd->fd, SNDCTL_DSP_STEREO, &val) < 0 |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
777 || val != (sd->channels != 1)) |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
778 sound_perror ("Set stereo/mono"); |
25003 | 779 |
34354
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
780 /* I think bps and sampling_rate are the same, but who knows. |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
781 Check this. and use SND_DSP_SPEED for both. */ |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
782 if (sd->sample_rate > 0) |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
783 { |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
784 val = sd->sample_rate; |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
785 if (ioctl (sd->fd, SNDCTL_DSP_SPEED, &sd->sample_rate) < 0 |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
786 || val != sd->sample_rate) |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
787 sound_perror ("Set sound speed"); |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
788 } |
25003 | 789 |
34255
cb2b0d1799db
(vox_configure): Set volume for left and right channel.
Gerd Moellmann <gerd@gnu.org>
parents:
31587
diff
changeset
|
790 if (sd->volume > 0) |
cb2b0d1799db
(vox_configure): Set volume for left and right channel.
Gerd Moellmann <gerd@gnu.org>
parents:
31587
diff
changeset
|
791 { |
cb2b0d1799db
(vox_configure): Set volume for left and right channel.
Gerd Moellmann <gerd@gnu.org>
parents:
31587
diff
changeset
|
792 int volume = sd->volume & 0xff; |
cb2b0d1799db
(vox_configure): Set volume for left and right channel.
Gerd Moellmann <gerd@gnu.org>
parents:
31587
diff
changeset
|
793 volume |= volume << 8; |
34354
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
794 /* This may fail if there is no mixer. Ignore the failure. */ |
db2901e01b72
(vox_configure): Change order of ioctls. Don't
Gerd Moellmann <gerd@gnu.org>
parents:
34255
diff
changeset
|
795 ioctl (sd->fd, SOUND_MIXER_WRITE_PCM, &volume); |
34255
cb2b0d1799db
(vox_configure): Set volume for left and right channel.
Gerd Moellmann <gerd@gnu.org>
parents:
31587
diff
changeset
|
796 } |
38215
b9fdde642b13
(vox_configure, vox_close): Turn off atimers
Gerd Moellmann <gerd@gnu.org>
parents:
34354
diff
changeset
|
797 |
b9fdde642b13
(vox_configure, vox_close): Turn off atimers
Gerd Moellmann <gerd@gnu.org>
parents:
34354
diff
changeset
|
798 turn_on_atimers (1); |
25003 | 799 } |
800 | |
801 | |
802 /* Close device SD if it is open. */ | |
803 | |
804 static void | |
805 vox_close (sd) | |
806 struct sound_device *sd; | |
807 { | |
808 if (sd->fd >= 0) | |
809 { | |
810 /* Flush sound data, and reset the device. */ | |
38215
b9fdde642b13
(vox_configure, vox_close): Turn off atimers
Gerd Moellmann <gerd@gnu.org>
parents:
34354
diff
changeset
|
811 turn_on_atimers (0); |
25003 | 812 ioctl (sd->fd, SNDCTL_DSP_SYNC, NULL); |
38215
b9fdde642b13
(vox_configure, vox_close): Turn off atimers
Gerd Moellmann <gerd@gnu.org>
parents:
34354
diff
changeset
|
813 turn_on_atimers (1); |
25003 | 814 |
815 /* Close the device. */ | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25722
diff
changeset
|
816 emacs_close (sd->fd); |
25003 | 817 sd->fd = -1; |
818 } | |
819 } | |
820 | |
821 | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
822 /* Choose device-dependent format for device SD from sound file S. */ |
25003 | 823 |
824 static void | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
825 vox_choose_format (sd, s) |
25003 | 826 struct sound_device *sd; |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
827 struct sound *s; |
25003 | 828 { |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
829 if (s->type == RIFF) |
25003 | 830 { |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
831 struct wav_header *h = (struct wav_header *) s->header; |
25003 | 832 if (h->precision == 8) |
833 sd->format = AFMT_U8; | |
834 else if (h->precision == 16) | |
835 sd->format = AFMT_S16_LE; | |
836 else | |
837 error ("Unsupported WAV file format"); | |
838 } | |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
839 else if (s->type == SUN_AUDIO) |
25003 | 840 { |
27146
68290f44807a
(struct sound): Renamed from struct sound_file.
Gerd Moellmann <gerd@gnu.org>
parents:
26088
diff
changeset
|
841 struct au_header *header = (struct au_header *) s->header; |
25003 | 842 switch (header->encoding) |
843 { | |
844 case AU_ENCODING_ULAW_8: | |
845 case AU_ENCODING_IEEE32: | |
846 case AU_ENCODING_IEEE64: | |
847 sd->format = AFMT_MU_LAW; | |
848 break; | |
849 | |
850 case AU_ENCODING_8: | |
851 case AU_ENCODING_16: | |
852 case AU_ENCODING_24: | |
853 case AU_ENCODING_32: | |
854 sd->format = AFMT_S16_LE; | |
855 break; | |
856 | |
857 default: | |
858 error ("Unsupported AU file format"); | |
859 } | |
860 } | |
861 else | |
862 abort (); | |
863 } | |
864 | |
865 | |
866 /* Initialize device SD. Set up the interface functions in the device | |
867 structure. */ | |
868 | |
869 static void | |
870 vox_init (sd) | |
871 struct sound_device *sd; | |
872 { | |
873 sd->fd = -1; | |
874 sd->open = vox_open; | |
875 sd->close = vox_close; | |
876 sd->configure = vox_configure; | |
877 sd->choose_format = vox_choose_format; | |
878 sd->write = vox_write; | |
879 } | |
880 | |
881 | |
882 /* Write NBYTES bytes from BUFFER to device SD. */ | |
883 | |
884 static void | |
885 vox_write (sd, buffer, nbytes) | |
886 struct sound_device *sd; | |
887 char *buffer; | |
888 int nbytes; | |
889 { | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25722
diff
changeset
|
890 int nwritten = emacs_write (sd->fd, buffer, nbytes); |
25003 | 891 if (nwritten < 0) |
892 sound_perror ("Writing to sound device"); | |
893 } | |
894 | |
895 | |
896 | |
897 /*********************************************************************** | |
898 Initialization | |
899 ***********************************************************************/ | |
900 | |
901 void | |
902 syms_of_sound () | |
903 { | |
904 QCdevice = intern (":device"); | |
905 staticpro (&QCdevice); | |
906 QCvolume = intern (":volume"); | |
907 staticpro (&QCvolume); | |
908 Qsound = intern ("sound"); | |
909 staticpro (&Qsound); | |
25548
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
910 Qplay_sound_functions = intern ("play-sound-functions"); |
df6548ca33fd
(Qplay_sound_functions): Replaces Qplay_sound_hook.
Gerd Moellmann <gerd@gnu.org>
parents:
25003
diff
changeset
|
911 staticpro (&Qplay_sound_functions); |
25003 | 912 |
913 defsubr (&Splay_sound); | |
914 } | |
915 | |
916 | |
917 void | |
918 init_sound () | |
919 { | |
920 } | |
921 | |
922 #endif /* HAVE_SOUND */ |