Mercurial > SDL_sound_CoreAudio
annotate decoders/au.c @ 306:c97be6e1bd27
Added framework for Sound_Seek() support.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 21 Apr 2002 18:39:47 +0000 |
parents | 9828311da44b |
children | a81976ed5df7 |
rev | line source |
---|---|
213 | 1 /* |
2 * SDL_sound -- An abstract sound format decoding API. | |
3 * Copyright (C) 2001 Ryan C. Gordon. | |
4 * | |
5 * This library is free software; you can redistribute it and/or | |
6 * modify it under the terms of the GNU Lesser General Public | |
7 * License as published by the Free Software Foundation; either | |
8 * version 2.1 of the License, or (at your option) any later version. | |
9 * | |
10 * This library is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Lesser General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Lesser General Public | |
16 * License along with this library; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 */ | |
19 | |
20 /* | |
21 * Sun/NeXT .au decoder for SDL_sound. | |
22 * Formats supported: 8 and 16 bit linear PCM, 8 bit µ-law. | |
23 * Files without valid header are assumed to be 8 bit µ-law, 8kHz, mono. | |
24 * | |
25 * Please see the file COPYING in the source's root directory. | |
26 * | |
27 * This file written by Mattias Engdegård. (f91-men@nada.kth.se) | |
28 */ | |
29 | |
30 #if HAVE_CONFIG_H | |
31 # include <config.h> | |
32 #endif | |
33 | |
34 #ifdef SOUND_SUPPORTS_AU | |
35 | |
36 #include <stdio.h> | |
37 #include <stdlib.h> | |
38 #include <string.h> | |
39 #include <assert.h> | |
40 | |
41 #include "SDL_sound.h" | |
42 | |
43 #define __SDL_SOUND_INTERNAL__ | |
44 #include "SDL_sound_internal.h" | |
45 | |
46 static int AU_init(void); | |
47 static void AU_quit(void); | |
48 static int AU_open(Sound_Sample *sample, const char *ext); | |
49 static void AU_close(Sound_Sample *sample); | |
50 static Uint32 AU_read(Sound_Sample *sample); | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
51 static int AU_rewind(Sound_Sample *sample); |
306
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
52 static int AU_seek(Sound_Sample *sample, Uint32 ms); |
213 | 53 |
54 /* | |
55 * Sometimes the extension ".snd" is used for these files (mostly on the NeXT), | |
56 * and the magic number comes from this. However it may clash with other | |
57 * formats and is somewhat of an anachronism, so only .au is used here. | |
58 */ | |
59 static const char *extensions_au[] = { "AU", NULL }; | |
60 const Sound_DecoderFunctions __Sound_DecoderFunctions_AU = | |
61 { | |
62 { | |
63 extensions_au, | |
64 "Sun/NeXT audio file format", | |
65 "Mattias Engdegård <f91-men@nada.kth.se>", | |
66 "http://www.icculus.org/SDL_sound/" | |
67 }, | |
68 | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
69 AU_init, /* init() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
70 AU_quit, /* quit() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
71 AU_open, /* open() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
72 AU_close, /* close() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
73 AU_read, /* read() method */ |
306
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
74 AU_rewind, /* rewind() method */ |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
75 AU_seek /* seek() method */ |
213 | 76 }; |
77 | |
78 /* no init/deinit needed */ | |
79 static int AU_init(void) | |
80 { | |
81 return(1); | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
82 } /* AU_init */ |
213 | 83 |
84 static void AU_quit(void) | |
85 { | |
86 /* no-op. */ | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
87 } /* AU_quit */ |
213 | 88 |
89 struct au_file_hdr | |
90 { | |
91 Uint32 magic; | |
92 Uint32 hdr_size; | |
93 Uint32 data_size; | |
94 Uint32 encoding; | |
95 Uint32 sample_rate; | |
96 Uint32 channels; | |
97 }; | |
98 | |
99 #define HDR_SIZE 24 | |
100 | |
101 enum | |
102 { | |
103 AU_ENC_ULAW_8 = 1, /* 8-bit ISDN µ-law */ | |
104 AU_ENC_LINEAR_8 = 2, /* 8-bit linear PCM */ | |
105 AU_ENC_LINEAR_16 = 3, /* 16-bit linear PCM */ | |
106 | |
107 /* the rest are unsupported (I have never seen them in the wild) */ | |
108 AU_ENC_LINEAR_24 = 4, /* 24-bit linear PCM */ | |
109 AU_ENC_LINEAR_32 = 5, /* 32-bit linear PCM */ | |
110 AU_ENC_FLOAT = 6, /* 32-bit IEEE floating point */ | |
111 AU_ENC_DOUBLE = 7, /* 64-bit IEEE floating point */ | |
112 /* more Sun formats, not supported either */ | |
113 AU_ENC_ADPCM_G721 = 23, | |
114 AU_ENC_ADPCM_G722 = 24, | |
115 AU_ENC_ADPCM_G723_3 = 25, | |
116 AU_ENC_ADPCM_G723_5 = 26, | |
117 AU_ENC_ALAW_8 = 27 | |
118 }; | |
119 | |
120 struct audec | |
121 { | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
122 Uint32 total; |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
123 Uint32 remaining; |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
124 Uint32 start_offset; |
213 | 125 int encoding; |
126 }; | |
127 | |
128 | |
257
7c4f6ee02cd0
Changed magic number to be bigendian.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
129 #define AU_MAGIC 0x2E736E64 /* ".snd", in ASCII (bigendian number) */ |
213 | 130 |
131 static int AU_open(Sound_Sample *sample, const char *ext) | |
132 { | |
133 Sound_SampleInternal *internal = sample->opaque; | |
134 SDL_RWops *rw = internal->rw; | |
135 int r, skip, hsize, i; | |
136 struct au_file_hdr hdr; | |
137 char c; | |
138 struct audec *dec = malloc(sizeof *dec); | |
139 BAIL_IF_MACRO(dec == NULL, ERR_OUT_OF_MEMORY, 0); | |
140 internal->decoder_private = dec; | |
141 | |
142 r = SDL_RWread(rw, &hdr, 1, HDR_SIZE); | |
143 if (r < HDR_SIZE) | |
144 { | |
294 | 145 Sound_SetError("AU: Not an .au file (bad header)"); |
213 | 146 free(dec); |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
147 return(0); |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
148 } /* if */ |
213 | 149 |
257
7c4f6ee02cd0
Changed magic number to be bigendian.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
150 if (SDL_SwapBE32(hdr.magic) == AU_MAGIC) |
213 | 151 { |
152 /* valid magic */ | |
153 dec->encoding = SDL_SwapBE32(hdr.encoding); | |
154 switch(dec->encoding) | |
155 { | |
156 case AU_ENC_ULAW_8: | |
157 /* Convert 8-bit µ-law to 16-bit linear on the fly. This is | |
158 slightly wasteful if the audio driver must convert them | |
159 back, but µ-law only devices are rare (mostly _old_ Suns) */ | |
160 sample->actual.format = AUDIO_S16SYS; | |
161 break; | |
162 | |
163 case AU_ENC_LINEAR_8: | |
164 sample->actual.format = AUDIO_S8; | |
165 break; | |
166 | |
167 case AU_ENC_LINEAR_16: | |
168 sample->actual.format = AUDIO_S16MSB; | |
169 break; | |
170 | |
171 default: | |
294 | 172 Sound_SetError("AU: Unsupported .au encoding"); |
213 | 173 free(dec); |
174 return 0; | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
175 } /* switch */ |
213 | 176 |
177 sample->actual.rate = SDL_SwapBE32(hdr.sample_rate); | |
178 sample->actual.channels = SDL_SwapBE32(hdr.channels); | |
179 dec->remaining = SDL_SwapBE32(hdr.data_size); | |
180 hsize = SDL_SwapBE32(hdr.hdr_size); | |
181 | |
182 /* skip remaining part of header (input may be unseekable) */ | |
183 for (i = HDR_SIZE; i < hsize; i++) | |
184 SDL_RWread(rw, &c, 1, 1); | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
185 } /* if */ |
213 | 186 |
187 else if (__Sound_strcasecmp(ext, "au") == 0) | |
188 { | |
189 /* | |
190 * A number of files in the wild have the .au extension but no valid | |
191 * header; these are traditionally assumed to be 8kHz µ-law. Handle | |
192 * them here only if the extension is recognized. | |
193 */ | |
194 | |
195 SNDDBG(("AU: Invalid header, assuming raw 8kHz µ-law.\n")); | |
196 /* if seeking fails, we lose 24 samples. big deal */ | |
197 SDL_RWseek(rw, -HDR_SIZE, SEEK_CUR); | |
198 dec->encoding = AU_ENC_ULAW_8; | |
199 dec->remaining = (Uint32)-1; /* no limit */ | |
200 sample->actual.format = AUDIO_S16SYS; | |
201 sample->actual.rate = 8000; | |
202 sample->actual.channels = 1; | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
203 } /* else if */ |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
204 |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
205 else |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
206 { |
294 | 207 Sound_SetError("AU: Not an .AU stream."); |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
208 free(dec); |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
209 return(0); |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
210 } /* else */ |
213 | 211 |
212 sample->flags = SOUND_SAMPLEFLAG_NONE; | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
213 dec->total = dec->remaining; |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
214 dec->start_offset = SDL_RWtell(rw); |
213 | 215 |
216 SNDDBG(("AU: Accepting data stream.\n")); | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
217 return(1); |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
218 } /* AU_open */ |
213 | 219 |
220 | |
221 static void AU_close(Sound_Sample *sample) | |
222 { | |
223 Sound_SampleInternal *internal = sample->opaque; | |
224 free(internal->decoder_private); | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
225 } /* AU_close */ |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
226 |
213 | 227 |
228 /* table to convert from µ-law encoding to signed 16-bit samples, | |
229 generated by a throwaway perl script */ | |
230 static Sint16 ulaw_to_linear[256] = { | |
231 -32124,-31100,-30076,-29052,-28028,-27004,-25980,-24956, | |
232 -23932,-22908,-21884,-20860,-19836,-18812,-17788,-16764, | |
233 -15996,-15484,-14972,-14460,-13948,-13436,-12924,-12412, | |
234 -11900,-11388,-10876,-10364, -9852, -9340, -8828, -8316, | |
235 -7932, -7676, -7420, -7164, -6908, -6652, -6396, -6140, | |
236 -5884, -5628, -5372, -5116, -4860, -4604, -4348, -4092, | |
237 -3900, -3772, -3644, -3516, -3388, -3260, -3132, -3004, | |
238 -2876, -2748, -2620, -2492, -2364, -2236, -2108, -1980, | |
239 -1884, -1820, -1756, -1692, -1628, -1564, -1500, -1436, | |
240 -1372, -1308, -1244, -1180, -1116, -1052, -988, -924, | |
241 -876, -844, -812, -780, -748, -716, -684, -652, | |
242 -620, -588, -556, -524, -492, -460, -428, -396, | |
243 -372, -356, -340, -324, -308, -292, -276, -260, | |
244 -244, -228, -212, -196, -180, -164, -148, -132, | |
245 -120, -112, -104, -96, -88, -80, -72, -64, | |
246 -56, -48, -40, -32, -24, -16, -8, 0, | |
247 32124, 31100, 30076, 29052, 28028, 27004, 25980, 24956, | |
248 23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764, | |
249 15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412, | |
250 11900, 11388, 10876, 10364, 9852, 9340, 8828, 8316, | |
251 7932, 7676, 7420, 7164, 6908, 6652, 6396, 6140, | |
252 5884, 5628, 5372, 5116, 4860, 4604, 4348, 4092, | |
253 3900, 3772, 3644, 3516, 3388, 3260, 3132, 3004, | |
254 2876, 2748, 2620, 2492, 2364, 2236, 2108, 1980, | |
255 1884, 1820, 1756, 1692, 1628, 1564, 1500, 1436, | |
256 1372, 1308, 1244, 1180, 1116, 1052, 988, 924, | |
257 876, 844, 812, 780, 748, 716, 684, 652, | |
258 620, 588, 556, 524, 492, 460, 428, 396, | |
259 372, 356, 340, 324, 308, 292, 276, 260, | |
260 244, 228, 212, 196, 180, 164, 148, 132, | |
261 120, 112, 104, 96, 88, 80, 72, 64, | |
262 56, 48, 40, 32, 24, 16, 8, 0 | |
263 }; | |
264 | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
265 |
213 | 266 static Uint32 AU_read(Sound_Sample *sample) |
267 { | |
268 int ret; | |
269 Sound_SampleInternal *internal = sample->opaque; | |
270 struct audec *dec = internal->decoder_private; | |
271 int maxlen; | |
272 Uint8 *buf; | |
273 | |
274 maxlen = internal->buffer_size; | |
275 buf = internal->buffer; | |
276 if (dec->encoding == AU_ENC_ULAW_8) | |
277 { | |
278 /* We read µ-law samples into the second half of the buffer, so | |
279 we can expand them to 16-bit samples afterwards */ | |
280 maxlen >>= 1; | |
281 buf += maxlen; | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
282 } /* if */ |
213 | 283 |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
284 if (maxlen > dec->remaining) |
213 | 285 maxlen = dec->remaining; |
286 ret = SDL_RWread(internal->rw, buf, 1, maxlen); | |
287 if (ret == 0) | |
288 sample->flags |= SOUND_SAMPLEFLAG_EOF; | |
289 else if (ret == -1) | |
290 sample->flags |= SOUND_SAMPLEFLAG_ERROR; | |
291 else | |
292 { | |
293 dec->remaining -= ret; | |
294 if (ret < maxlen) | |
295 sample->flags |= SOUND_SAMPLEFLAG_EAGAIN; | |
296 | |
297 if (dec->encoding == AU_ENC_ULAW_8) | |
298 { | |
299 int i; | |
300 Sint16 *dst = internal->buffer; | |
301 for (i = 0; i < ret; i++) | |
302 dst[i] = ulaw_to_linear[buf[i]]; | |
303 ret <<= 1; /* return twice as much as read */ | |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
304 } /* if */ |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
305 } /* else */ |
213 | 306 |
217
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
307 return(ret); |
9bab949e2318
Fixed memory leak I introduced, mangled coding style some more. :)
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
308 } /* AU_read */ |
213 | 309 |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
310 |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
311 static int AU_rewind(Sound_Sample *sample) |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
312 { |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
313 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
314 struct audec *dec = (struct audec *) internal->decoder_private; |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
315 int rc = SDL_RWseek(internal->rw, dec->start_offset, SEEK_SET); |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
316 BAIL_IF_MACRO(rc != dec->start_offset, ERR_IO_ERROR, 0); |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
317 dec->remaining = dec->total; |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
318 return(1); |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
319 } /* AU_rewind */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
217
diff
changeset
|
320 |
306
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
321 |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
322 static int AU_seek(Sound_Sample *sample, Uint32 ms) |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
323 { |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
324 BAIL_MACRO("!!! FIXME: Not implemented", 0); |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
325 } /* AU_seek */ |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
294
diff
changeset
|
326 |
213 | 327 #endif /* SOUND_SUPPORTS_AU */ |
328 |