Mercurial > SDL_sound_CoreAudio
annotate decoders/ogg.c @ 274:9e7f9e09ea0e
Removed fprintf() calls. Replaced with SNDDBG() and Sound_SetError() calls.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 10 Mar 2002 19:15:25 +0000 |
parents | d3dc34315ac7 |
children | c97be6e1bd27 |
rev | line source |
---|---|
24 | 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 * Ogg Vorbis decoder for SDL_sound. | |
22 * | |
23 * This driver handles .OGG audio files, and depends on libvorbisfile to | |
24 * do the actual decoding work. libvorbisfile is part of libvorbis, which | |
25 * is part of the Ogg Vorbis project. | |
26 * | |
27 * Ogg Vorbis: http://www.xiph.org/ogg/vorbis/ | |
28 * vorbisfile documentation: http://www.xiph.org/ogg/vorbis/doc/vorbisfile/ | |
29 * | |
184
47cc2de2ae36
Changed reference to "LICENSE" file to "COPYING".
Ryan C. Gordon <icculus@icculus.org>
parents:
149
diff
changeset
|
30 * Please see the file COPYING in the source's root directory. |
24 | 31 * |
32 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | |
33 */ | |
34 | |
106
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
35 #if HAVE_CONFIG_H |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
36 # include <config.h> |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
37 #endif |
100
6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
fingolfin
parents:
63
diff
changeset
|
38 |
104
103cfcb3c014
Updated to fix build system problem.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
39 #ifdef SOUND_SUPPORTS_OGG |
103cfcb3c014
Updated to fix build system problem.
Ryan C. Gordon <icculus@icculus.org>
parents:
100
diff
changeset
|
40 |
24 | 41 #include <stdio.h> |
42 #include <stdlib.h> | |
43 #include <string.h> | |
44 #include <math.h> | |
45 #include <assert.h> | |
106
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
46 |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
47 #include "SDL_sound.h" |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
48 |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
49 #define __SDL_SOUND_INTERNAL__ |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
50 #include "SDL_sound_internal.h" |
40de367eb59e
Changing my include structure to do this right.
Ryan C. Gordon <icculus@icculus.org>
parents:
104
diff
changeset
|
51 |
24 | 52 #include "vorbis/codec.h" |
53 #include "vorbis/vorbisfile.h" | |
54 | |
55 | |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
56 static int OGG_init(void); |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
57 static void OGG_quit(void); |
24 | 58 static int OGG_open(Sound_Sample *sample, const char *ext); |
59 static void OGG_close(Sound_Sample *sample); | |
60 static Uint32 OGG_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 OGG_rewind(Sound_Sample *sample); |
24 | 62 |
149
1df5c106504e
Decoders can now list multiple file extensions.
Ryan C. Gordon <icculus@icculus.org>
parents:
122
diff
changeset
|
63 static const char *extensions_ogg[] = { "OGG", NULL }; |
24 | 64 const Sound_DecoderFunctions __Sound_DecoderFunctions_OGG = |
65 { | |
66 { | |
149
1df5c106504e
Decoders can now list multiple file extensions.
Ryan C. Gordon <icculus@icculus.org>
parents:
122
diff
changeset
|
67 extensions_ogg, |
24 | 68 "Ogg Vorbis audio through VorbisFile", |
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 OGG_init, /* init() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
74 OGG_quit, /* quit() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
75 OGG_open, /* open() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
76 OGG_close, /* close() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
77 OGG_read, /* read() method */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
78 OGG_rewind /* rewind() method */ |
24 | 79 }; |
80 | |
81 | |
47
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
82 static int OGG_init(void) |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
83 { |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
84 return(1); /* always succeeds. */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
85 } /* OGG_init */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
86 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
87 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
88 static void OGG_quit(void) |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
89 { |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
90 /* it's a no-op. */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
91 } /* OGG_quit */ |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
92 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
93 |
ea58bc3b15d7
Added init() and quit() methods.
Ryan C. Gordon <icculus@icculus.org>
parents:
24
diff
changeset
|
94 |
24 | 95 /* |
96 * These are callbacks from vorbisfile that let them read data from | |
97 * a RWops... | |
98 */ | |
99 | |
63
9669aa13d3e0
Changes in preparation for autoconf, and the RWops wrappers changed to
Ryan C. Gordon <icculus@icculus.org>
parents:
59
diff
changeset
|
100 static size_t RWops_ogg_read(void *ptr, size_t size, size_t nmemb, void *datasource) |
24 | 101 { |
102 return((size_t) SDL_RWread((SDL_RWops *) datasource, ptr, size, nmemb)); | |
103 } /* RWops_ogg_read */ | |
104 | |
122 | 105 static int RWops_ogg_seek(void *datasource, ogg_int64_t offset, int whence) |
24 | 106 { |
107 return(SDL_RWseek((SDL_RWops *) datasource, offset, whence)); | |
108 } /* RWops_ogg_seek */ | |
109 | |
63
9669aa13d3e0
Changes in preparation for autoconf, and the RWops wrappers changed to
Ryan C. Gordon <icculus@icculus.org>
parents:
59
diff
changeset
|
110 static int RWops_ogg_close(void *datasource) |
24 | 111 { |
112 /* do nothing; SDL_sound will delete the RWops at a higher level. */ | |
113 return(0); /* this is success in fclose(), so I guess that's okay. */ | |
114 } /* RWops_ogg_close */ | |
115 | |
63
9669aa13d3e0
Changes in preparation for autoconf, and the RWops wrappers changed to
Ryan C. Gordon <icculus@icculus.org>
parents:
59
diff
changeset
|
116 static long RWops_ogg_tell(void *datasource) |
24 | 117 { |
118 return((long) SDL_RWtell((SDL_RWops *) datasource)); | |
119 } /* RWops_ogg_tell */ | |
120 | |
121 static const ov_callbacks RWops_ogg_callbacks = | |
122 { | |
123 RWops_ogg_read, | |
124 RWops_ogg_seek, | |
125 RWops_ogg_close, | |
126 RWops_ogg_tell | |
127 }; | |
128 | |
129 | |
130 /* Return a human readable version of an VorbisFile error code... */ | |
59
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
131 #if (defined DEBUG_CHATTER) |
24 | 132 static const char *ogg_error(int errnum) |
133 { | |
134 switch(errnum) | |
135 { | |
136 case OV_EREAD: | |
137 return("i/o error"); | |
138 case OV_ENOTVORBIS: | |
139 return("not a vorbis file"); | |
140 case OV_EVERSION: | |
141 return("Vorbis version mismatch"); | |
142 case OV_EBADHEADER: | |
143 return("invalid Vorbis bitstream header"); | |
144 case OV_EFAULT: | |
145 return("internal logic fault in Vorbis library"); | |
146 } /* switch */ | |
147 | |
148 return("unknown error"); | |
149 } /* ogg_error */ | |
59
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
150 #endif |
24 | 151 |
152 static __inline__ void output_ogg_comments(OggVorbis_File *vf) | |
153 { | |
154 #if (defined DEBUG_CHATTER) | |
155 int i; | |
156 vorbis_comment *vc = ov_comment(vf, -1); | |
157 | |
158 if (vc == NULL) | |
159 return; | |
160 | |
59
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
161 SNDDBG(("OGG: vendor == [%s].\n", vc->vendor)); |
24 | 162 for (i = 0; i < vc->comments; i++) |
163 { | |
59
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
164 SNDDBG(("OGG: user comment [%s].\n", vc->user_comments[i])); |
24 | 165 } /* for */ |
166 #endif | |
167 } /* output_ogg_comments */ | |
168 | |
169 | |
170 static int OGG_open(Sound_Sample *sample, const char *ext) | |
171 { | |
172 int rc; | |
173 OggVorbis_File *vf; | |
174 vorbis_info *info; | |
175 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
176 | |
177 vf = (OggVorbis_File *) malloc(sizeof (OggVorbis_File)); | |
178 BAIL_IF_MACRO(vf == NULL, ERR_OUT_OF_MEMORY, 0); | |
179 | |
180 rc = ov_open_callbacks(internal->rw, vf, NULL, 0, RWops_ogg_callbacks); | |
181 if (rc != 0) | |
182 { | |
59
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
183 SNDDBG(("OGG: can't grok data. reason: [%s].\n", ogg_error(rc))); |
24 | 184 free(vf); |
185 BAIL_MACRO("OGG: Not valid Ogg Vorbis data.", 0); | |
186 } /* if */ | |
187 | |
188 info = ov_info(vf, -1); | |
189 if (info == NULL) | |
190 { | |
191 ov_clear(vf); | |
192 free(vf); | |
193 BAIL_MACRO("OGG: failed to retrieve bitstream info", 0); | |
194 } /* if */ | |
195 | |
59
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
196 SNDDBG(("OGG: Accepting data stream.\n")); |
24 | 197 |
198 output_ogg_comments(vf); | |
59
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
199 SNDDBG(("OGG: bitstream version == (%d).\n", info->version)); |
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
200 SNDDBG(("OGG: bitstream channels == (%d).\n", info->channels)); |
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
201 SNDDBG(("OGG: bitstream sampling rate == (%ld).\n", info->rate)); |
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
202 SNDDBG(("OGG: seekable == {%s}.\n", ov_seekable(vf) ? "TRUE" : "FALSE")); |
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
203 SNDDBG(("OGG: number of logical bitstreams == (%ld).\n", ov_streams(vf))); |
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
204 SNDDBG(("OGG: serial number == (%ld).\n", ov_serialnumber(vf, -1))); |
cd91e1857b42
Changed _D macro to SNDDBG, and fixed a warning if compiling without debug
Ryan C. Gordon <icculus@icculus.org>
parents:
47
diff
changeset
|
205 SNDDBG(("OGG: total seconds of sample == (%f).\n", ov_time_total(vf, -1))); |
24 | 206 |
207 internal->decoder_private = vf; | |
208 sample->flags = SOUND_SAMPLEFLAG_NONE; | |
209 sample->actual.rate = (Uint32) info->rate; | |
210 sample->actual.channels = (Uint8) info->channels; | |
211 | |
212 /* | |
213 * Since we might have more than one logical bitstream in the OGG file, | |
214 * and these bitstreams may be in different formats, we might be | |
215 * converting two or three times: once in vorbisfile, once again in | |
216 * SDL_sound, and perhaps a third time to get it to the sound device's | |
217 * format. That's wickedly inefficient. | |
218 * | |
219 * To combat this a little, if the user specified a desired format, we | |
220 * claim that to be the "actual" format of the collection of logical | |
221 * bitstreams. This means that VorbisFile will do a conversion as | |
222 * necessary, and SDL_sound will not. If the user didn't specify a | |
223 * desired format, then we pretend the "actual" format is something that | |
224 * OGG files are apparently commonly encoded in. | |
225 */ | |
226 sample->actual.format = (sample->desired.format == 0) ? | |
227 AUDIO_S16LSB : sample->desired.format; | |
228 return(1); | |
229 } /* OGG_open */ | |
230 | |
231 | |
232 static void OGG_close(Sound_Sample *sample) | |
233 { | |
234 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
235 OggVorbis_File *vf = (OggVorbis_File *) internal->decoder_private; | |
236 ov_clear(vf); | |
237 free(vf); | |
238 } /* OGG_close */ | |
239 | |
240 | |
241 static Uint32 OGG_read(Sound_Sample *sample) | |
242 { | |
243 int rc; | |
244 int bitstream; | |
245 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
246 OggVorbis_File *vf = (OggVorbis_File *) internal->decoder_private; | |
247 | |
248 rc = ov_read(vf, internal->buffer, internal->buffer_size, | |
249 ((sample->actual.format & 0x1000) ? 1 : 0), /* bigendian? */ | |
250 ((sample->actual.format & 0xFF) / 8), /* bytes per sample point */ | |
251 ((sample->actual.format & 0x8000) ? 1 : 0), /* signed data? */ | |
252 &bitstream); | |
253 | |
254 /* Make sure the read went smoothly... */ | |
255 if (rc == 0) | |
256 sample->flags |= SOUND_SAMPLEFLAG_EOF; | |
257 | |
258 else if (rc < 0) | |
259 sample->flags |= SOUND_SAMPLEFLAG_ERROR; | |
260 | |
261 /* (next call this EAGAIN may turn into an EOF or error.) */ | |
262 else if ((Uint32) rc < internal->buffer_size) | |
263 sample->flags |= SOUND_SAMPLEFLAG_EAGAIN; | |
264 | |
265 return((Uint32) rc); | |
266 } /* OGG_read */ | |
267 | |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
268 |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
269 static int OGG_rewind(Sound_Sample *sample) |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
270 { |
231
d3dc34315ac7
Rewind method implemented by Torbj�rn.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
271 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; |
d3dc34315ac7
Rewind method implemented by Torbj�rn.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
272 OggVorbis_File *vf = (OggVorbis_File *) internal->decoder_private; |
d3dc34315ac7
Rewind method implemented by Torbj�rn.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
273 |
d3dc34315ac7
Rewind method implemented by Torbj�rn.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
274 BAIL_IF_MACRO(ov_raw_seek(vf, 0) < 0, ERR_IO_ERROR, 0); |
d3dc34315ac7
Rewind method implemented by Torbj�rn.
Ryan C. Gordon <icculus@icculus.org>
parents:
221
diff
changeset
|
275 return(1); |
221
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
276 } /* OGG_rewind */ |
c9772a9f5271
Initial implementation or stubs for rewind method. Other cleanups.
Ryan C. Gordon <icculus@icculus.org>
parents:
184
diff
changeset
|
277 |
63
9669aa13d3e0
Changes in preparation for autoconf, and the RWops wrappers changed to
Ryan C. Gordon <icculus@icculus.org>
parents:
59
diff
changeset
|
278 #endif /* SOUND_SUPPORTS_OGG */ |
9669aa13d3e0
Changes in preparation for autoconf, and the RWops wrappers changed to
Ryan C. Gordon <icculus@icculus.org>
parents:
59
diff
changeset
|
279 |
9669aa13d3e0
Changes in preparation for autoconf, and the RWops wrappers changed to
Ryan C. Gordon <icculus@icculus.org>
parents:
59
diff
changeset
|
280 |
24 | 281 /* end of ogg.c ... */ |
282 |