Mercurial > SDL_sound_CoreAudio
annotate decoders/modplug.c @ 211:b35c04e4691e
Patched to select streams to handle more carefully.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 11 Jan 2002 11:10:22 +0000 |
parents | 32376317eedb |
children | c9772a9f5271 |
rev | line source |
---|---|
208 | 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 * Module player for SDL_sound. This driver handles anything that ModPlug does. | |
22 * | |
23 * Please see the file COPYING in the source's root directory. | |
24 * | |
25 * This file written by Torbjörn Andersson (d91tan@Update.UU.SE) | |
26 */ | |
27 | |
28 #if HAVE_CONFIG_H | |
29 # include <config.h> | |
30 #endif | |
31 | |
32 #ifdef SOUND_SUPPORTS_MODPLUG | |
33 | |
34 #include <stdio.h> | |
35 #include <stdlib.h> | |
36 #include <string.h> | |
37 #include <assert.h> | |
38 | |
39 #include "SDL_sound.h" | |
40 | |
41 #define __SDL_SOUND_INTERNAL__ | |
42 #include "SDL_sound_internal.h" | |
43 | |
44 #include "modplug.h" | |
45 | |
46 | |
47 static int MODPLUG_init(void); | |
48 static void MODPLUG_quit(void); | |
49 static int MODPLUG_open(Sound_Sample *sample, const char *ext); | |
50 static void MODPLUG_close(Sound_Sample *sample); | |
51 static Uint32 MODPLUG_read(Sound_Sample *sample); | |
52 | |
53 static const char *extensions_modplug[] = | |
54 { | |
211
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
55 /* The XMMS plugin is apparently able to load compressed modules as |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
56 * well, but libmodplug does not handle this. |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
57 */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
58 "669", /* Composer 669 / UNIS 669 module */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
59 "AMF", /* ASYLUM Music Format / Advanced Music Format(DSM) */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
60 "AMS", /* AMS module */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
61 "DBM", /* DigiBooster Pro Module */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
62 "DMF", /* DMF DELUSION DIGITAL MUSIC FILEFORMAT (X-Tracker) */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
63 "DSM", /* DSIK Internal Format module */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
64 "FAR", /* Farandole module */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
65 "IT", /* Impulse Tracker IT file */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
66 "MDL", /* DigiTracker module */ |
208 | 67 #if 0 |
211
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
68 "J2B", /* Not implemented? What is it anyway? */ |
208 | 69 #endif |
211
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
70 "MED", /* OctaMed MED file */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
71 "MOD", /* ProTracker / NoiseTracker MOD/NST file */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
72 "MT2", /* MadTracker 2.0 */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
73 "MTM", /* MTM file */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
74 "OKT", /* Oktalyzer module */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
75 "PTM", /* PTM PolyTracker module */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
76 "PSM", /* PSM module */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
77 "S3M", /* ScreamTracker file */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
78 "STM", /* ST 2.xx */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
79 "ULT", |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
80 "UMX", |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
81 "XM", /* FastTracker II */ |
208 | 82 NULL |
83 }; | |
84 | |
85 const Sound_DecoderFunctions __Sound_DecoderFunctions_MODPLUG = | |
86 { | |
87 { | |
88 extensions_modplug, | |
89 "Play modules through ModPlug", | |
90 "Torbjörn Andersson <d91tan@Update.UU.SE>", | |
91 "http://modplug-xmms.sourceforge.net/" | |
92 }, | |
93 | |
94 MODPLUG_init, /* init() method */ | |
95 MODPLUG_quit, /* quit() method */ | |
96 MODPLUG_open, /* open() method */ | |
97 MODPLUG_close, /* close() method */ | |
98 MODPLUG_read /* read() method */ | |
99 }; | |
100 | |
101 | |
102 static int MODPLUG_init(void) | |
103 { | |
104 ModPlug_Settings settings; | |
105 | |
106 /* The settings will require some experimenting. I've borrowed some | |
107 * of them from the XMMS ModPlug plugin. | |
108 */ | |
109 settings.mFlags = | |
110 MODPLUG_ENABLE_OVERSAMPLING | |
111 | MODPLUG_ENABLE_NOISE_REDUCTION | |
112 | MODPLUG_ENABLE_REVERB | |
113 | MODPLUG_ENABLE_MEGABASS | |
114 | MODPLUG_ENABLE_SURROUND; | |
115 settings.mChannels = 2; | |
116 settings.mBits = 16; | |
117 settings.mFrequency = 44100; | |
118 settings.mResamplingMode = MODPLUG_RESAMPLE_FIR; | |
119 settings.mReverbDepth = 30; | |
120 settings.mReverbDelay = 100; | |
121 settings.mBassAmount = 40; | |
122 settings.mBassRange = 30; | |
123 settings.mSurroundDepth = 20; | |
124 settings.mSurroundDelay = 20; | |
125 settings.mLoopCount = 0; | |
126 | |
127 ModPlug_SetSettings(&settings); | |
128 return(1); /* success. */ | |
129 } /* MODPLUG_init */ | |
130 | |
131 | |
132 static void MODPLUG_quit(void) | |
133 { | |
211
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
134 /* it's a no-op. */ |
208 | 135 } /* MODPLUG_quit */ |
136 | |
137 | |
138 /* Most MOD files I've seen have tended to be a few hundred KB, even if some | |
139 * of them were much smaller than that. | |
140 */ | |
141 #define CHUNK_SIZE 65536 | |
142 | |
143 static int MODPLUG_open(Sound_Sample *sample, const char *ext) | |
144 { | |
145 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
146 ModPlugFile *module; | |
147 Uint8 *data; | |
148 size_t size; | |
149 Uint32 retval; | |
211
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
150 int has_extension = 0; |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
151 int i; |
208 | 152 |
211
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
153 /* Apparently ModPlug's loaders are too forgiving. They gladly accept |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
154 * streams that they shouldn't. For now, rely on file extension instead. |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
155 */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
156 for (i = 0; extensions_modplug[i] != NULL; i++) |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
157 { |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
158 if (__Sound_strcasecmp(ext, extensions_modplug[i]) == 0) |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
159 { |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
160 has_extension = 1; |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
161 break; |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
162 } /* if */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
163 } /* for */ |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
164 |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
165 if (!has_extension) |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
166 { |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
167 SNDDBG(("MODPLUG: Unrecognized file type: %s\n", ext)); |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
168 return(0); |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
169 } |
b35c04e4691e
Patched to select streams to handle more carefully.
Ryan C. Gordon <icculus@icculus.org>
parents:
208
diff
changeset
|
170 |
208 | 171 /* ModPlug needs the entire stream in one big chunk. I don't like it, |
172 * but I don't think there's any way around it. | |
173 */ | |
174 data = (Uint8 *) malloc(CHUNK_SIZE); | |
175 BAIL_IF_MACRO(data == NULL, ERR_OUT_OF_MEMORY, 0); | |
176 size = 0; | |
177 | |
178 do | |
179 { | |
180 retval = SDL_RWread(internal->rw, &data[size], 1, CHUNK_SIZE); | |
181 size += retval; | |
182 if (retval == CHUNK_SIZE) | |
183 { | |
184 data = (Uint8 *) realloc(data, size + CHUNK_SIZE); | |
185 BAIL_IF_MACRO(data == NULL, ERR_OUT_OF_MEMORY, 0); | |
186 } /* if */ | |
187 } while (retval > 0); | |
188 | |
189 /* The buffer may be a bit too large, but that doesn't matter. I think | |
190 * it's safe to free it as soon as ModPlug_Load() is finished anyway. | |
191 */ | |
192 module = ModPlug_Load((void *) data, size); | |
193 free(data); | |
194 BAIL_IF_MACRO(module == NULL, "MODPLUG: Not a module file.", 0); | |
195 | |
196 SNDDBG(("MODPLUG: [%d ms] %s\n", | |
197 ModPlug_GetLength(module), ModPlug_GetName(module))); | |
198 | |
199 sample->actual.channels = 2; | |
200 sample->actual.rate = 44100; | |
201 sample->actual.format = AUDIO_S16SYS; | |
202 | |
203 internal->decoder_private = (void *) module; | |
204 sample->flags = SOUND_SAMPLEFLAG_NONE; | |
205 | |
206 SNDDBG(("MODPLUG: Accepting data stream\n")); | |
207 return(1); /* we'll handle this data. */ | |
208 } /* MODPLUG_open */ | |
209 | |
210 | |
211 static void MODPLUG_close(Sound_Sample *sample) | |
212 { | |
213 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
214 ModPlugFile *module = (ModPlugFile *) internal->decoder_private; | |
215 | |
216 ModPlug_Unload(module); | |
217 } /* MODPLUG_close */ | |
218 | |
219 | |
220 static Uint32 MODPLUG_read(Sound_Sample *sample) | |
221 { | |
222 Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque; | |
223 ModPlugFile *module = (ModPlugFile *) internal->decoder_private; | |
224 int retval; | |
225 | |
226 retval = ModPlug_Read(module, internal->buffer, internal->buffer_size); | |
227 if (retval == 0) | |
228 sample->flags |= SOUND_SAMPLEFLAG_EOF; | |
229 return(retval); | |
230 } /* MODPLUG_read */ | |
231 | |
232 #endif /* SOUND_SUPPORTS_MODPLUG */ | |
233 | |
234 | |
235 /* end of modplug.c ... */ |