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