Mercurial > SDL_sound_CoreAudio
annotate decoders/raw.c @ 322:31cc49d7d0ce
MacOS fixes.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 29 Apr 2002 06:12:47 +0000 |
parents | c97be6e1bd27 |
children | cbb15ecf423a |
rev | line source |
---|---|
4 | 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 * RAW decoder for SDL_sound. This is as simple as it gets. | |
22 * | |
23 * This driver handles raw audio data. You must, regardless of where the | |
24 * data is actually coming from, specify the string "RAW" in the extension | |
25 * parameter of Sound_NewSample() (or, alternately, open a file with the | |
26 * extension ".raw" in Sound_NewSampleFromFile()). The string is checked | |
27 * case-insensitive. We need this check, because raw data, being raw, has | |
28 * no headers or magic number we can use to determine if we should handle a | |
29 * given file, so we needed some way to have this "decoder" discriminate. | |
30 * | |
31 * When calling Sound_NewSample*(), you must also specify a "desired" | |
32 * audio format. The "actual" format will always match what you specify, so | |
33 * there will be no conversion overhead, but these routines need to know how | |
34 * to treat the bits, since it's all random garbage otherwise. | |
35 * | |
184
47cc2de2ae36
Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents:
149
diff
changeset
|
36 * Please see the file COPYING in the source's root directory. |
4 | 37 * |
38 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | |
39 */ | |
40 | |
106
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
41 #if HAVE_CONFIG_H |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
42 # include <config.h> |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
43 #endif |
100
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
64
diff
changeset
|
44 |
104
103cfcb3c014
Updated to fix build system problem.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
45 #ifdef SOUND_SUPPORTS_RAW |
103cfcb3c014
Updated to fix build system problem.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
46 |
4 | 47 #include <stdio.h> |
48 #include <stdlib.h> | |
49 #include <string.h> | |
50 #include <assert.h> | |
51 | |
106
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
52 #include "SDL_sound.h" |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
53 |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
54 #define __SDL_SOUND_INTERNAL__ |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
55 #include "SDL_sound_internal.h" |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
56 |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
57 static int RAW_init(void); |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
58 static void RAW_quit(void); |
4 | 59 static int RAW_open(Sound_Sample *sample, const char *ext); |
60 static void RAW_close(Sound_Sample *sample); | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
61 static Uint32 RAW_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
|
62 static int RAW_rewind(Sound_Sample *sample); |
306
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
63 static int RAW_seek(Sound_Sample *sample, Uint32 ms); |
4 | 64 |
149
1df5c106504e
Decoders can now list multiple file extensions.
Ryan C. Gordon <icculus@icculus.org>
parents:
106
diff
changeset
|
65 static const char *extensions_raw[] = { "RAW", NULL }; |
4 | 66 const Sound_DecoderFunctions __Sound_DecoderFunctions_RAW = |
67 { | |
68 { | |
149
1df5c106504e
Decoders can now list multiple file extensions.
Ryan C. Gordon <icculus@icculus.org>
parents:
106
diff
changeset
|
69 extensions_raw, |
4 | 70 "Raw audio", |
71 "Ryan C. Gordon <icculus@clutteredmind.org>", | |
72 "http://www.icculus.org/SDL_sound/" | |
73 }, | |
74 | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
75 RAW_init, /* init() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
76 RAW_quit, /* quit() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
77 RAW_open, /* open() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
78 RAW_close, /* close() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
79 RAW_read, /* read() method */ |
306
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
80 RAW_rewind, /* rewind() method */ |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
81 RAW_seek /* seek() method */ |
4 | 82 }; |
83 | |
84 | |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
85 static int RAW_init(void) |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
86 { |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
87 return(1); /* always succeeds. */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
88 } /* RAW_init */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
89 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
90 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
91 static void RAW_quit(void) |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
92 { |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
93 /* it's a no-op. */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
94 } /* RAW_quit */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
95 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
7
diff
changeset
|
96 |
4 | 97 static int RAW_open(Sound_Sample *sample, const char *ext) |
98 { | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
99 /* |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
100 * We check this explicitly, since we have no other way to |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
101 * determine whether we should handle this data or not. |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
102 */ |
4 | 103 if (__Sound_strcasecmp(ext, "RAW") != 0) |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
104 { |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
105 Sound_SetError("RAW: extension isn't explicitly \"RAW\"."); |
4 | 106 return(0); |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
107 } /* if */ |
4 | 108 |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
109 /* |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
110 * You must also specify a desired format, so we know how to |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
111 * treat the bits that are otherwise binary garbage. |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
112 */ |
4 | 113 if ( (sample->desired.channels < 1) || |
114 (sample->desired.channels > 2) || | |
115 (sample->desired.rate == 0) || | |
116 (sample->desired.format == 0) ) | |
117 { | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
118 Sound_SetError("RAW: invalid desired format."); |
4 | 119 return(0); |
120 } /* if */ | |
121 | |
62
b13fafb976be
Changed _D macro to DBGSND.
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
122 SNDDBG(("RAW: Accepting data stream.\n")); |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
123 |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
124 /* |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
125 * We never convert raw samples; what you ask for is what you get. |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
126 */ |
4 | 127 memcpy(&sample->actual, &sample->desired, sizeof (Sound_AudioInfo)); |
306
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
128 sample->flags = SOUND_SAMPLEFLAG_CANSEEK; |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
129 |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
130 return(1); /* we'll handle this data. */ |
4 | 131 } /* RAW_open */ |
132 | |
133 | |
134 static void RAW_close(Sound_Sample *sample) | |
135 { | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
136 /* we don't allocate anything that we need to free. That's easy, eh? */ |
4 | 137 } /* RAW_close */ |
138 | |
139 | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
140 static Uint32 RAW_read(Sound_Sample *sample) |
4 | 141 { |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
142 Uint32 retval; |
4 | 143 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
144 |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
145 /* |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
146 * We don't actually do any decoding, so we read the raw data |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
147 * directly into the internal buffer... |
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
148 */ |
4 | 149 retval = SDL_RWread(internal->rw, internal->buffer, |
150 1, internal->buffer_size); | |
151 | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
152 /* Make sure the read went smoothly... */ |
4 | 153 if (retval == 0) |
154 sample->flags |= SOUND_SAMPLEFLAG_EOF; | |
155 | |
156 else if (retval == -1) | |
157 sample->flags |= SOUND_SAMPLEFLAG_ERROR; | |
158 | |
7
29313c20963d
Updated a lot of comments, and changed read() method's return type.
Ryan C. Gordon <icculus@icculus.org>
parents:
4
diff
changeset
|
159 /* (next call this EAGAIN may turn into an EOF or error.) */ |
4 | 160 else if (retval < internal->buffer_size) |
161 sample->flags |= SOUND_SAMPLEFLAG_EAGAIN; | |
162 | |
163 return(retval); | |
164 } /* RAW_read */ | |
165 | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
166 |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
167 static int RAW_rewind(Sound_Sample *sample) |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
168 { |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
169 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
170 BAIL_IF_MACRO(SDL_RWseek(internal->rw, 0, SEEK_SET) != 0, ERR_IO_ERROR, 0); |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
171 return(1); |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
172 } /* RAW_rewind */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
173 |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
174 |
306
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
175 static int RAW_seek(Sound_Sample *sample, Uint32 ms) |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
176 { |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
177 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
178 int pos = (int) __Sound_convertMsToBytePos(&sample->actual, ms); |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
179 int err = (SDL_RWseek(internal->rw, pos, SEEK_SET) != pos); |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
180 BAIL_IF_MACRO(err, ERR_IO_ERROR, 0); |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
181 return(1); |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
182 } /* RAW_seek */ |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
183 |
c97be6e1bd27
Added framework for Sound_Seek() support.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
184 |
64
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
185 #endif /* SOUND_SUPPORTS_RAW */ |
40006625142a
Changes in preparation of autoconf support.
Ryan C. Gordon <icculus@icculus.org>
parents:
62
diff
changeset
|
186 |
4 | 187 |
188 /* end of raw.c ... */ | |
189 |