Mercurial > SDL_sound_CoreAudio
annotate decoders/voc.c @ 221:c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 17 Jan 2002 20:53:53 +0000 |
parents | 47cc2de2ae36 |
children | 1bafef18dabf |
rev | line source |
---|---|
14 | 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 * VOC decoder for SDL_sound. | |
22 * | |
23 * This driver handles Creative Labs VOC audio data...this is a legacy format, | |
24 * but there's some game ports that could make use of such a decoder. Plus, | |
25 * VOC is fairly straightforward to decode, so this is a more complex, but | |
26 * still palatable example of an SDL_sound decoder. Y'know, in case the | |
27 * RAW decoder didn't do it for you. :) | |
28 * | |
29 * This code was ripped from a decoder I had written for SDL_mixer, which was | |
30 * largely ripped from sox v12.17.1's voc.c. | |
31 * | |
32 * SDL_mixer: http://www.libsdl.org/projects/SDL_mixer/ | |
33 * sox: http://www.freshmeat.net/projects/sox/ | |
34 * | |
184
47cc2de2ae36
Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents:
149
diff
changeset
|
35 * Please see the file COPYING in the source's root directory. |
14 | 36 * |
37 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | |
38 */ | |
39 | |
106
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
40 #if HAVE_CONFIG_H |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
41 # include <config.h> |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
42 #endif |
100
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
64
diff
changeset
|
43 |
114
dd95a12539fd
Changed an #if defined to #ifdef, for consistency with the other
Ryan C. Gordon <icculus@icculus.org>
parents:
106
diff
changeset
|
44 #ifdef SOUND_SUPPORTS_VOC |
104
103cfcb3c014
Updated to fix build system problem.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
45 |
14 | 46 #include <stdio.h> |
47 #include <stdlib.h> | |
48 #include <string.h> | |
49 #include <assert.h> | |
50 | |
106
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
51 #include "SDL_sound.h" |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
52 |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
53 #define __SDL_SOUND_INTERNAL__ |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
54 #include "SDL_sound_internal.h" |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
55 |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
56 static int VOC_init(void); |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
57 static void VOC_quit(void); |
14 | 58 static int VOC_open(Sound_Sample *sample, const char *ext); |
59 static void VOC_close(Sound_Sample *sample); | |
60 static Uint32 VOC_read(Sound_Sample *sample); | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
61 static int VOC_rewind(Sound_Sample *sample); |
14 | 62 |
149
1df5c106504e
Decoders can now list multiple file extensions.
Ryan C. Gordon <icculus@icculus.org>
parents:
114
diff
changeset
|
63 static const char *extensions_voc[] = { "VOC", NULL }; |
14 | 64 const Sound_DecoderFunctions __Sound_DecoderFunctions_VOC = |
65 { | |
66 { | |
149
1df5c106504e
Decoders can now list multiple file extensions.
Ryan C. Gordon <icculus@icculus.org>
parents:
114
diff
changeset
|
67 extensions_voc, |
14 | 68 "Creative Labs Voice format", |
69 "Ryan C. Gordon <icculus@clutteredmind.org>", | |
70 "http://www.icculus.org/SDL_sound/" | |
71 }, | |
72 | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
73 VOC_init, /* init() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
74 VOC_quit, /* quit() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
75 VOC_open, /* open() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
76 VOC_close, /* close() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
77 VOC_read, /* read() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
78 VOC_rewind /* rewind() method */ |
14 | 79 }; |
80 | |
81 | |
82 /* Private data for VOC file */ | |
83 typedef struct vocstuff { | |
84 Uint32 rest; /* bytes remaining in current block */ | |
85 Uint32 rate; /* rate code (byte) of this chunk */ | |
86 int silent; /* sound or silence? */ | |
87 Uint32 srate; /* rate code (byte) of silence */ | |
88 Uint32 blockseek; /* start of current output block */ | |
89 Uint32 samples; /* number of samples output */ | |
90 Uint32 size; /* word length of data */ | |
32
4a60ee42ca9a
Fixed a byte-ordering issue.
Ryan C. Gordon <icculus@icculus.org>
parents:
22
diff
changeset
|
91 Uint8 channels; /* number of sound channels */ |
14 | 92 int extended; /* Has an extended block been read? */ |
93 Uint32 bufpos; /* byte position in internal->buffer. */ | |
94 } vs_t; | |
95 | |
62
b13fafb976be
Changed _D macro to DBGSND.
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
96 /* Size field */ |
14 | 97 /* SJB: note that the 1st 3 are sometimes used as sizeof(type) */ |
98 #define ST_SIZE_BYTE 1 | |
99 #define ST_SIZE_8BIT 1 | |
100 #define ST_SIZE_WORD 2 | |
101 #define ST_SIZE_16BIT 2 | |
102 #define ST_SIZE_DWORD 4 | |
103 #define ST_SIZE_32BIT 4 | |
104 #define ST_SIZE_FLOAT 5 | |
105 #define ST_SIZE_DOUBLE 6 | |
106 #define ST_SIZE_IEEE 7 /* IEEE 80-bit floats. */ | |
107 | |
108 /* Style field */ | |
109 #define ST_ENCODING_UNSIGNED 1 /* unsigned linear: Sound Blaster */ | |
110 #define ST_ENCODING_SIGN2 2 /* signed linear 2's comp: Mac */ | |
111 #define ST_ENCODING_ULAW 3 /* U-law signed logs: US telephony, SPARC */ | |
112 #define ST_ENCODING_ALAW 4 /* A-law signed logs: non-US telephony */ | |
113 #define ST_ENCODING_ADPCM 5 /* Compressed PCM */ | |
114 #define ST_ENCODING_IMA_ADPCM 6 /* Compressed PCM */ | |
115 #define ST_ENCODING_GSM 7 /* GSM 6.10 33-byte frame lossy compression */ | |
116 | |
117 #define VOC_TERM 0 | |
118 #define VOC_DATA 1 | |
119 #define VOC_CONT 2 | |
120 #define VOC_SILENCE 3 | |
121 #define VOC_MARKER 4 | |
122 #define VOC_TEXT 5 | |
123 #define VOC_LOOP 6 | |
124 #define VOC_LOOPEND 7 | |
125 #define VOC_EXTENDED 8 | |
126 #define VOC_DATA_16 9 | |
127 | |
128 | |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
129 static int VOC_init(void) |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
130 { |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
131 return(1); /* always succeeds. */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
132 } /* VOC_init */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
133 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
134 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
135 static void VOC_quit(void) |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
136 { |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
137 /* it's a no-op. */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
138 } /* VOC_quit */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
139 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
32
diff
changeset
|
140 |
14 | 141 static __inline__ int voc_check_header(SDL_RWops *src) |
142 { | |
143 /* VOC magic header */ | |
144 Uint8 signature[20]; /* "Creative Voice File\032" */ | |
145 Uint16 datablockofs; | |
146 | |
147 if (SDL_RWread(src, signature, sizeof (signature), 1) != 1) | |
148 return(0); | |
149 | |
150 if (memcmp(signature, "Creative Voice File\032", sizeof (signature)) != 0) { | |
151 Sound_SetError("Unrecognized file type (not VOC)"); | |
152 return(0); | |
153 } | |
154 | |
155 /* get the offset where the first datablock is located */ | |
156 if (SDL_RWread(src, &datablockofs, sizeof (Uint16), 1) != 1) | |
157 return(0); | |
158 | |
159 datablockofs = SDL_SwapLE16(datablockofs); | |
160 | |
161 if (SDL_RWseek(src, datablockofs, SEEK_SET) != datablockofs) | |
162 return(0); | |
163 | |
164 return(1); /* success! */ | |
165 } /* voc_check_header */ | |
166 | |
167 /* !!! FIXME : Add a flag to vs_t that distinguishes EOF and Error conditions. */ | |
168 | |
169 /* Read next block header, save info, leave position at start of data */ | |
170 static int voc_get_block(Sound_Sample *sample) | |
171 { | |
172 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
173 SDL_RWops *src = internal->rw; | |
174 vs_t *v = (vs_t *) internal->decoder_private; | |
175 Uint8 bits24[3]; | |
176 Uint8 uc, block; | |
177 Uint32 sblen; | |
178 Uint16 new_rate_short; | |
179 Uint32 new_rate_long; | |
180 Uint8 trash[6]; | |
181 Uint16 period; | |
182 int i; | |
183 | |
184 v->silent = 0; | |
185 while (v->rest == 0) | |
186 { | |
187 if (SDL_RWread(src, &block, sizeof (block), 1) != 1) | |
188 return 1; /* assume that's the end of the file. */ | |
189 | |
190 if (block == VOC_TERM) | |
191 return 1; | |
192 | |
193 if (SDL_RWread(src, bits24, sizeof (bits24), 1) != 1) | |
194 return 1; /* assume that's the end of the file. */ | |
62
b13fafb976be
Changed _D macro to DBGSND.
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
195 |
14 | 196 /* Size is an 24-bit value. Ugh. */ |
197 sblen = ( (bits24[0]) | (bits24[1] << 8) | (bits24[2] << 16) ); | |
198 | |
199 switch(block) | |
200 { | |
201 case VOC_DATA: | |
202 if (SDL_RWread(src, &uc, sizeof (uc), 1) != 1) | |
203 return 0; | |
204 | |
205 /* When DATA block preceeded by an EXTENDED */ | |
206 /* block, the DATA blocks rate value is invalid */ | |
207 if (!v->extended) | |
208 { | |
209 if (uc == 0) | |
210 { | |
211 Sound_SetError("VOC Sample rate is zero?"); | |
212 return 0; | |
213 } | |
214 | |
215 if ((v->rate != -1) && (uc != v->rate)) | |
216 { | |
217 Sound_SetError("VOC sample rate codes differ"); | |
218 return 0; | |
219 } | |
220 | |
221 v->rate = uc; | |
222 sample->actual.rate = 1000000.0/(256 - v->rate); | |
223 v->channels = 1; | |
224 } | |
225 | |
226 if (SDL_RWread(src, &uc, sizeof (uc), 1) != 1) | |
227 return 0; | |
228 | |
229 if (uc != 0) | |
230 { | |
231 Sound_SetError("VOC decoder only interprets 8-bit data"); | |
232 return 0; | |
233 } | |
234 | |
235 v->extended = 0; | |
236 v->rest = sblen - 2; | |
237 v->size = ST_SIZE_BYTE; | |
238 return 1; | |
239 | |
240 case VOC_DATA_16: | |
241 if (SDL_RWread(src, &new_rate_long, sizeof (new_rate_long), 1) != 1) | |
242 return 0; | |
243 new_rate_long = SDL_SwapLE32(new_rate_long); | |
244 if (new_rate_long == 0) | |
245 { | |
246 Sound_SetError("VOC Sample rate is zero?"); | |
247 return 0; | |
248 } | |
249 if ((v->rate != -1) && (new_rate_long != v->rate)) | |
250 { | |
251 Sound_SetError("VOC sample rate codes differ"); | |
252 return 0; | |
253 } | |
254 v->rate = new_rate_long; | |
255 sample->actual.rate = new_rate_long; | |
256 | |
257 if (SDL_RWread(src, &uc, sizeof (uc), 1) != 1) | |
258 return 0; | |
259 | |
260 switch (uc) | |
261 { | |
262 case 8: v->size = ST_SIZE_BYTE; break; | |
263 case 16: v->size = ST_SIZE_WORD; break; | |
264 default: | |
265 Sound_SetError("VOC with unknown data size"); | |
266 return 0; | |
267 } | |
268 | |
269 if (SDL_RWread(src, &v->channels, sizeof (Uint8), 1) != 1) | |
270 return 0; | |
271 | |
272 if (SDL_RWread(src, trash, sizeof (Uint8), 6) != 6) | |
273 return 0; | |
274 | |
275 v->rest = sblen - 12; | |
276 return 1; | |
277 | |
278 case VOC_CONT: | |
279 v->rest = sblen; | |
280 return 1; | |
281 | |
282 case VOC_SILENCE: | |
283 if (SDL_RWread(src, &period, sizeof (period), 1) != 1) | |
284 return 0; | |
285 period = SDL_SwapLE16(period); | |
286 | |
287 if (SDL_RWread(src, &uc, sizeof (uc), 1) != 1) | |
288 return 0; | |
289 if (uc == 0) | |
290 { | |
291 Sound_SetError("VOC silence sample rate is zero"); | |
292 return 0; | |
293 } | |
294 | |
295 /* | |
296 * Some silence-packed files have gratuitously | |
297 * different sample rate codes in silence. | |
298 * Adjust period. | |
299 */ | |
300 if ((v->rate != -1) && (uc != v->rate)) | |
301 period = (period * (256 - uc))/(256 - v->rate); | |
302 else | |
303 v->rate = uc; | |
304 v->rest = period; | |
305 v->silent = 1; | |
306 return 1; | |
307 | |
308 case VOC_LOOP: | |
309 case VOC_LOOPEND: | |
310 for(i = 0; i < sblen; i++) /* skip repeat loops. */ | |
311 { | |
312 if (SDL_RWread(src, trash, sizeof (Uint8), 1) != 1) | |
313 return 0; | |
314 } | |
315 break; | |
316 | |
317 case VOC_EXTENDED: | |
318 /* An Extended block is followed by a data block */ | |
319 /* Set this byte so we know to use the rate */ | |
320 /* value from the extended block and not the */ | |
321 /* data block. */ | |
322 v->extended = 1; | |
323 if (SDL_RWread(src, &new_rate_short, sizeof (new_rate_short), 1) != 1) | |
324 return 0; | |
325 new_rate_short = SDL_SwapLE16(new_rate_short); | |
326 if (new_rate_short == 0) | |
327 { | |
328 Sound_SetError("VOC sample rate is zero"); | |
329 return 0; | |
330 } | |
331 if ((v->rate != -1) && (new_rate_short != v->rate)) | |
332 { | |
333 Sound_SetError("VOC sample rate codes differ"); | |
334 return 0; | |
335 } | |
336 v->rate = new_rate_short; | |
337 | |
338 if (SDL_RWread(src, &uc, sizeof (uc), 1) != 1) | |
339 return 0; | |
340 | |
341 if (uc != 0) | |
342 { | |
343 Sound_SetError("VOC decoder only interprets 8-bit data"); | |
344 return 0; | |
345 } | |
346 | |
347 if (SDL_RWread(src, &uc, sizeof (uc), 1) != 1) | |
348 return 0; | |
349 | |
350 if (uc) | |
351 sample->actual.channels = 2; /* Stereo */ | |
352 /* Needed number of channels before finishing | |
353 compute for rate */ | |
354 sample->actual.rate = | |
355 (256000000L/(65536L - v->rate)) / sample->actual.channels; | |
356 /* An extended block must be followed by a data */ | |
357 /* block to be valid so loop back to top so it */ | |
358 /* can be grabed. */ | |
359 continue; | |
360 | |
361 case VOC_MARKER: | |
362 if (SDL_RWread(src, trash, sizeof (Uint8), 2) != 2) | |
363 return 0; | |
364 | |
365 /* Falling! Falling! */ | |
366 | |
367 default: /* text block or other krapola. */ | |
368 for(i = 0; i < sblen; i++) | |
369 { | |
370 if (SDL_RWread(src, &trash, sizeof (Uint8), 1) != 1) | |
371 return 0; | |
372 } | |
373 | |
374 if (block == VOC_TEXT) | |
375 continue; /* get next block */ | |
376 } | |
377 } | |
378 | |
379 return 1; | |
380 } | |
381 | |
382 | |
22
f6e679afe88b
Byte ordering fix, changed voc_read to voc_read_waveform, and cleaned up
Ryan C. Gordon <icculus@icculus.org>
parents:
14
diff
changeset
|
383 static int voc_read_waveform(Sound_Sample *sample) |
14 | 384 { |
385 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
386 SDL_RWops *src = internal->rw; | |
387 vs_t *v = (vs_t *) internal->decoder_private; | |
388 int done = 0; | |
389 Uint8 silence = 0x80; | |
390 Uint8 *buf = internal->buffer; | |
391 | |
392 if (v->rest == 0) | |
393 { | |
394 if (!voc_get_block(sample)) | |
395 return 0; | |
396 } | |
397 | |
398 if (v->rest == 0) | |
399 return 0; | |
400 | |
401 if (v->silent) | |
402 { | |
403 if (v->size == ST_SIZE_WORD) | |
404 silence = 0x00; | |
405 | |
406 /* Fill in silence */ | |
407 memset(buf, silence, v->rest); | |
408 done = v->rest; | |
409 v->rest = 0; | |
410 } | |
411 | |
412 else | |
413 { | |
414 Uint32 max = (v->rest < internal->buffer_size) ? | |
415 v->rest : internal->buffer_size; | |
416 done = SDL_RWread(src, buf + v->bufpos, 1, max); | |
417 v->rest -= done; | |
418 v->bufpos += done; | |
419 } | |
420 | |
421 return done; | |
22
f6e679afe88b
Byte ordering fix, changed voc_read to voc_read_waveform, and cleaned up
Ryan C. Gordon <icculus@icculus.org>
parents:
14
diff
changeset
|
422 } /* voc_read_waveform */ |
14 | 423 |
424 | |
425 static int VOC_open(Sound_Sample *sample, const char *ext) | |
426 { | |
427 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
428 vs_t *v = NULL; | |
429 | |
430 if (!voc_check_header(internal->rw)) | |
431 return(0); | |
432 | |
433 v = (vs_t *) malloc(sizeof (vs_t)); | |
434 BAIL_IF_MACRO(v == NULL, ERR_OUT_OF_MEMORY, 0); | |
435 memset(v, '\0', sizeof (vs_t)); | |
436 internal->decoder_private = v; | |
437 | |
438 v->rate = -1; | |
439 if (!voc_get_block(sample)) | |
440 { | |
441 free(v); | |
442 return(0); | |
443 } /* if */ | |
444 | |
445 if (v->rate == -1) | |
446 { | |
447 Sound_SetError("VOC data had no sound!"); | |
448 free(v); | |
449 return(0); | |
450 } /* if */ | |
451 | |
62
b13fafb976be
Changed _D macro to DBGSND.
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
452 SNDDBG(("VOC: Accepting data stream.\n")); |
14 | 453 sample->actual.format = (v->size == ST_SIZE_WORD) ? AUDIO_S16LSB:AUDIO_U8; |
454 sample->actual.channels = v->channels; | |
455 sample->flags = SOUND_SAMPLEFLAG_NONE; | |
456 return(1); | |
457 } /* VOC_open */ | |
458 | |
459 | |
460 static void VOC_close(Sound_Sample *sample) | |
461 { | |
462 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
463 free(internal->decoder_private); | |
464 } /* VOC_close */ | |
465 | |
466 | |
467 static Uint32 VOC_read(Sound_Sample *sample) | |
468 { | |
469 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
470 vs_t *v = (vs_t *) internal->decoder_private; | |
471 | |
472 v->bufpos = 0; | |
473 while (v->bufpos < internal->buffer_size) | |
474 { | |
22
f6e679afe88b
Byte ordering fix, changed voc_read to voc_read_waveform, and cleaned up
Ryan C. Gordon <icculus@icculus.org>
parents:
14
diff
changeset
|
475 Uint32 rc = voc_read_waveform(sample); |
14 | 476 if (rc == 0) /* !!! FIXME: Could be an error... */ |
477 { | |
478 sample->flags |= SOUND_SAMPLEFLAG_EOF; | |
479 break; | |
480 } /* if */ | |
481 | |
482 if (!voc_get_block(sample)) | |
483 { | |
484 sample->flags |= SOUND_SAMPLEFLAG_ERROR; | |
485 break; | |
486 } /* if */ | |
487 } /* while */ | |
488 | |
489 return(v->bufpos); | |
490 } /* VOC_read */ | |
491 | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
492 |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
493 static int VOC_rewind(Sound_Sample *sample) |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
494 { |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
495 /* !!! FIXME. */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
496 SNDDBG(("VOC_rewind(): Write me!\n")); |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
497 assert(0); |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
498 return(0); |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
499 } /* VOC_rewind */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
500 |
64
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
501 #endif /* SOUND_SUPPORTS_VOC */ |
14 | 502 |
503 /* end of voc.c ... */ |