Skip to content

Latest commit

 

History

History
1537 lines (1353 loc) · 42.2 KB

mixer.c

File metadata and controls

1537 lines (1353 loc) · 42.2 KB
 
Oct 21, 1999
Oct 21, 1999
1
/*
Dec 31, 2011
Dec 31, 2011
2
SDL_mixer: An audio mixer library based on the SDL library
Feb 15, 2013
Feb 15, 2013
3
Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
Dec 31, 2011
Dec 31, 2011
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Oct 21, 1999
Oct 21, 1999
20
21
*/
Dec 14, 2001
Dec 14, 2001
22
/* $Id$ */
Oct 26, 1999
Oct 26, 1999
23
Oct 21, 1999
Oct 21, 1999
24
25
26
27
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Dec 21, 1999
Dec 21, 1999
28
29
#include "SDL_mutex.h"
#include "SDL_endian.h"
Dec 27, 1999
Dec 27, 1999
30
#include "SDL_timer.h"
Oct 21, 1999
Oct 21, 1999
31
Jan 14, 2000
Jan 14, 2000
32
#include "SDL_mixer.h"
Sep 11, 2001
Sep 11, 2001
33
34
#include "load_aiff.h"
#include "load_voc.h"
Sep 16, 2013
Sep 16, 2013
35
#include "load_mp3.h"
Sep 9, 2002
Sep 9, 2002
36
#include "load_ogg.h"
Feb 27, 2008
Feb 27, 2008
37
#include "load_flac.h"
Nov 8, 2009
Nov 8, 2009
38
#include "dynamic_flac.h"
Oct 14, 2013
Oct 14, 2013
39
#include "dynamic_fluidsynth.h"
Jun 9, 2013
Jun 9, 2013
40
#include "dynamic_modplug.h"
Nov 8, 2009
Nov 8, 2009
41
42
43
#include "dynamic_mod.h"
#include "dynamic_mp3.h"
#include "dynamic_ogg.h"
Sep 11, 2001
Sep 11, 2001
44
Jul 15, 2007
Jul 15, 2007
45
46
47
#define __MIX_INTERNAL_EFFECT__
#include "effects_internal.h"
Sep 11, 2001
Sep 11, 2001
48
/* Magic numbers for various audio file formats */
May 22, 2013
May 22, 2013
49
50
51
52
53
54
#define RIFF 0x46464952 /* "RIFF" */
#define WAVE 0x45564157 /* "WAVE" */
#define FORM 0x4d524f46 /* "FORM" */
#define OGGS 0x5367674f /* "OggS" */
#define CREA 0x61657243 /* "Crea" */
#define FLAC 0x43614C66 /* "fLaC" */
Oct 21, 1999
Oct 21, 1999
55
56
57
static int audio_opened = 0;
static SDL_AudioSpec mixer;
Sep 11, 2001
Sep 11, 2001
58
59
60
typedef struct _Mix_effectinfo
{
May 22, 2013
May 22, 2013
61
62
63
64
Mix_EffectFunc_t callback;
Mix_EffectDone_t done_callback;
void *udata;
struct _Mix_effectinfo *next;
Sep 11, 2001
Sep 11, 2001
65
66
} effect_info;
Oct 21, 1999
Oct 21, 1999
67
static struct _Mix_Channel {
May 22, 2013
May 22, 2013
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
Mix_Chunk *chunk;
int playing;
int paused;
Uint8 *samples;
int volume;
int looping;
int tag;
Uint32 expire;
Uint32 start_time;
Mix_Fading fading;
int fade_volume;
int fade_volume_reset;
Uint32 fade_length;
Uint32 ticks_fade;
effect_info *effects;
Jun 26, 2000
Jun 26, 2000
83
} *mix_channel = NULL;
Sep 11, 2001
Sep 11, 2001
84
85
86
static effect_info *posteffects = NULL;
Oct 26, 1999
Oct 26, 1999
87
static int num_channels;
Nov 11, 1999
Nov 11, 1999
88
static int reserved_channels = 0;
Oct 21, 1999
Oct 21, 1999
89
90
Dec 26, 1999
Dec 26, 1999
91
92
/* Support for hooking into the mixer callback system */
static void (*mix_postmix)(void *udata, Uint8 *stream, int len) = NULL;
Dec 27, 1999
Dec 27, 1999
93
static void *mix_postmix_data = NULL;
Dec 26, 1999
Dec 26, 1999
94
Jun 10, 2001
Jun 10, 2001
95
96
97
/* rcg07062001 callback to alert when channels are done playing. */
static void (*channel_done_callback)(int channel) = NULL;
Feb 1, 2000
Feb 1, 2000
98
99
100
101
/* Music function declarations */
extern int open_music(SDL_AudioSpec *mixer);
extern void close_music(void);
Oct 21, 1999
Oct 21, 1999
102
/* Support for user defined music functions, plus the default one */
Feb 1, 2000
Feb 1, 2000
103
extern int volatile music_active;
Oct 21, 1999
Oct 21, 1999
104
105
extern void music_mixer(void *udata, Uint8 *stream, int len);
static void (*mix_music)(void *udata, Uint8 *stream, int len) = music_mixer;
Feb 1, 2000
Feb 1, 2000
106
static void *music_data = NULL;
Oct 21, 1999
Oct 21, 1999
107
Jun 5, 2009
Jun 5, 2009
108
109
110
111
/* rcg06042009 report available decoders at runtime. */
static const char **chunk_decoders = NULL;
static int num_decoders = 0;
Mar 20, 2011
Mar 20, 2011
112
113
114
115
116
/* Semicolon-separated SoundFont paths */
#ifdef MID_MUSIC
extern char* soundfont_paths;
#endif
Nov 5, 2009
Nov 5, 2009
117
int Mix_GetNumChunkDecoders(void)
Jun 5, 2009
Jun 5, 2009
118
{
May 22, 2013
May 22, 2013
119
return(num_decoders);
Jun 5, 2009
Jun 5, 2009
120
121
122
123
}
const char *Mix_GetChunkDecoder(int index)
{
May 22, 2013
May 22, 2013
124
125
126
127
if ((index < 0) || (index >= num_decoders)) {
return NULL;
}
return(chunk_decoders[index]);
Jun 5, 2009
Jun 5, 2009
128
129
130
131
}
static void add_chunk_decoder(const char *decoder)
{
Jun 18, 2013
Jun 18, 2013
132
void *ptr = SDL_realloc((void *)chunk_decoders, (num_decoders + 1) * sizeof (const char *));
May 22, 2013
May 22, 2013
133
134
135
136
137
if (ptr == NULL) {
return; /* oh well, go on without it. */
}
chunk_decoders = (const char **) ptr;
chunk_decoders[num_decoders++] = decoder;
Jun 5, 2009
Jun 5, 2009
138
}
Sep 11, 2001
Sep 11, 2001
139
140
141
142
/* rcg06192001 get linked library's version. */
const SDL_version *Mix_Linked_Version(void)
{
May 22, 2013
May 22, 2013
143
144
145
static SDL_version linked_version;
SDL_MIXER_VERSION(&linked_version);
return(&linked_version);
Sep 11, 2001
Sep 11, 2001
146
147
}
Nov 8, 2009
Nov 8, 2009
148
149
150
151
static int initialized = 0;
int Mix_Init(int flags)
{
May 22, 2013
May 22, 2013
152
int result = 0;
Nov 8, 2009
Nov 8, 2009
153
May 22, 2013
May 22, 2013
154
if (flags & MIX_INIT_FLUIDSYNTH) {
Mar 20, 2011
Mar 20, 2011
155
#ifdef USE_FLUIDSYNTH_MIDI
May 22, 2013
May 22, 2013
156
157
158
if ((initialized & MIX_INIT_FLUIDSYNTH) || Mix_InitFluidSynth() == 0) {
result |= MIX_INIT_FLUIDSYNTH;
}
Mar 20, 2011
Mar 20, 2011
159
#else
May 22, 2013
May 22, 2013
160
Mix_SetError("Mixer not built with FluidSynth support");
Mar 20, 2011
Mar 20, 2011
161
#endif
May 22, 2013
May 22, 2013
162
163
}
if (flags & MIX_INIT_FLAC) {
Nov 8, 2009
Nov 8, 2009
164
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
165
166
167
if ((initialized & MIX_INIT_FLAC) || Mix_InitFLAC() == 0) {
result |= MIX_INIT_FLAC;
}
Nov 8, 2009
Nov 8, 2009
168
#else
May 22, 2013
May 22, 2013
169
Mix_SetError("Mixer not built with FLAC support");
Jun 9, 2013
Jun 9, 2013
170
171
172
173
174
175
176
177
178
#endif
}
if (flags & MIX_INIT_MODPLUG) {
#ifdef MODPLUG_MUSIC
if ((initialized & MIX_INIT_MODPLUG) || Mix_InitModPlug() == 0) {
result |= MIX_INIT_MODPLUG;
}
#else
Mix_SetError("Mixer not built with MOD modplug support");
Nov 8, 2009
Nov 8, 2009
179
#endif
May 22, 2013
May 22, 2013
180
181
}
if (flags & MIX_INIT_MOD) {
Nov 8, 2009
Nov 8, 2009
182
#ifdef MOD_MUSIC
May 22, 2013
May 22, 2013
183
184
185
if ((initialized & MIX_INIT_MOD) || Mix_InitMOD() == 0) {
result |= MIX_INIT_MOD;
}
Nov 8, 2009
Nov 8, 2009
186
#else
Aug 24, 2013
Aug 24, 2013
187
Mix_SetError("Mixer not built with MOD mikmod support");
Nov 8, 2009
Nov 8, 2009
188
#endif
May 22, 2013
May 22, 2013
189
190
}
if (flags & MIX_INIT_MP3) {
Nov 8, 2009
Nov 8, 2009
191
#ifdef MP3_MUSIC
May 22, 2013
May 22, 2013
192
193
194
if ((initialized & MIX_INIT_MP3) || Mix_InitMP3() == 0) {
result |= MIX_INIT_MP3;
}
Nov 8, 2009
Nov 8, 2009
195
#else
May 22, 2013
May 22, 2013
196
Mix_SetError("Mixer not built with MP3 support");
Nov 8, 2009
Nov 8, 2009
197
#endif
May 22, 2013
May 22, 2013
198
199
}
if (flags & MIX_INIT_OGG) {
Nov 8, 2009
Nov 8, 2009
200
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
201
202
203
if ((initialized & MIX_INIT_OGG) || Mix_InitOgg() == 0) {
result |= MIX_INIT_OGG;
}
Nov 8, 2009
Nov 8, 2009
204
#else
May 22, 2013
May 22, 2013
205
Mix_SetError("Mixer not built with Ogg Vorbis support");
Nov 8, 2009
Nov 8, 2009
206
#endif
May 22, 2013
May 22, 2013
207
208
}
initialized |= result;
Nov 8, 2009
Nov 8, 2009
209
May 22, 2013
May 22, 2013
210
return (result);
Nov 8, 2009
Nov 8, 2009
211
212
213
214
}
void Mix_Quit()
{
Mar 20, 2011
Mar 20, 2011
215
#ifdef USE_FLUIDSYNTH_MIDI
May 22, 2013
May 22, 2013
216
217
218
if (initialized & MIX_INIT_FLUIDSYNTH) {
Mix_QuitFluidSynth();
}
Mar 20, 2011
Mar 20, 2011
219
#endif
Nov 8, 2009
Nov 8, 2009
220
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
221
222
223
if (initialized & MIX_INIT_FLAC) {
Mix_QuitFLAC();
}
Nov 8, 2009
Nov 8, 2009
224
#endif
Jun 9, 2013
Jun 9, 2013
225
226
227
228
229
#ifdef MODPLUG_MUSIC
if (initialized & MIX_INIT_MODPLUG) {
Mix_QuitModPlug();
}
#endif
Nov 8, 2009
Nov 8, 2009
230
#ifdef MOD_MUSIC
May 22, 2013
May 22, 2013
231
232
233
if (initialized & MIX_INIT_MOD) {
Mix_QuitMOD();
}
Nov 8, 2009
Nov 8, 2009
234
235
#endif
#ifdef MP3_MUSIC
May 22, 2013
May 22, 2013
236
237
238
if (initialized & MIX_INIT_MP3) {
Mix_QuitMP3();
}
Nov 8, 2009
Nov 8, 2009
239
240
#endif
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
241
242
243
if (initialized & MIX_INIT_OGG) {
Mix_QuitOgg();
}
Nov 8, 2009
Nov 8, 2009
244
#endif
Mar 20, 2011
Mar 20, 2011
245
#ifdef MID_MUSIC
May 22, 2013
May 22, 2013
246
247
if (soundfont_paths) {
SDL_free(soundfont_paths);
Aug 1, 2013
Aug 1, 2013
248
soundfont_paths = NULL;
May 22, 2013
May 22, 2013
249
}
Mar 20, 2011
Mar 20, 2011
250
#endif
May 22, 2013
May 22, 2013
251
initialized = 0;
Nov 8, 2009
Nov 8, 2009
252
253
}
Apr 13, 2002
Apr 13, 2002
254
static int _Mix_remove_all_effects(int channel, effect_info **e);
Sep 11, 2001
Sep 11, 2001
255
May 3, 2002
May 3, 2002
256
257
258
259
260
261
/*
* rcg06122001 Cleanup effect callbacks.
* MAKE SURE SDL_LockAudio() is called before this (or you're in the
* audio callback).
*/
static void _Mix_channel_done_playing(int channel)
Sep 11, 2001
Sep 11, 2001
262
{
May 22, 2013
May 22, 2013
263
264
265
266
267
268
269
270
271
if (channel_done_callback) {
channel_done_callback(channel);
}
/*
* Call internal function directly, to avoid locking audio from
* inside audio callback.
*/
_Mix_remove_all_effects(channel, &mix_channel[channel].effects);
Sep 11, 2001
Sep 11, 2001
272
273
274
275
276
}
static void *Mix_DoEffects(int chan, void *snd, int len)
{
May 22, 2013
May 22, 2013
277
278
279
280
281
282
283
284
285
286
287
int posteffect = (chan == MIX_CHANNEL_POST);
effect_info *e = ((posteffect) ? posteffects : mix_channel[chan].effects);
void *buf = snd;
if (e != NULL) { /* are there any registered effects? */
/* if this is the postmix, we can just overwrite the original. */
if (!posteffect) {
buf = SDL_malloc(len);
if (buf == NULL) {
return(snd);
}
Jun 1, 2013
Jun 1, 2013
288
SDL_memcpy(buf, snd, len);
May 22, 2013
May 22, 2013
289
290
291
292
293
294
295
296
297
298
299
}
for (; e != NULL; e = e->next) {
if (e->callback != NULL) {
e->callback(chan, buf, len, e->udata);
}
}
}
/* be sure to SDL_free() the return value if != snd ... */
return(buf);
Sep 11, 2001
Sep 11, 2001
300
301
302
}
Oct 21, 1999
Oct 21, 1999
303
304
305
/* Mixing function */
static void mix_channels(void *udata, Uint8 *stream, int len)
{
May 22, 2013
May 22, 2013
306
307
308
Uint8 *mix_input;
int i, mixable, volume = SDL_MIX_MAXVOLUME;
Uint32 sdl_ticks;
Oct 21, 1999
Oct 21, 1999
309
Jul 15, 2007
Jul 15, 2007
310
#if SDL_VERSION_ATLEAST(1, 3, 0)
May 22, 2013
May 22, 2013
311
/* Need to initialize the stream in SDL 1.3+ */
Jun 1, 2013
Jun 1, 2013
312
SDL_memset(stream, mixer.silence, len);
Jul 15, 2007
Jul 15, 2007
313
#endif
Jul 8, 2007
Jul 8, 2007
314
May 22, 2013
May 22, 2013
315
316
317
318
319
320
321
322
/* Mix the music (must be done before the channels are added) */
if ( music_active || (mix_music != music_mixer) ) {
mix_music(music_data, stream, len);
}
/* Mix any playing channels... */
sdl_ticks = SDL_GetTicks();
for ( i=0; i<num_channels; ++i ) {
Aug 23, 2014
Aug 23, 2014
323
if ( !mix_channel[i].paused ) {
May 22, 2013
May 22, 2013
324
325
326
327
328
329
330
331
332
if ( mix_channel[i].expire > 0 && mix_channel[i].expire < sdl_ticks ) {
/* Expiration delay for that channel is reached */
mix_channel[i].playing = 0;
mix_channel[i].looping = 0;
mix_channel[i].fading = MIX_NO_FADING;
mix_channel[i].expire = 0;
_Mix_channel_done_playing(i);
} else if ( mix_channel[i].fading != MIX_NO_FADING ) {
Uint32 ticks = sdl_ticks - mix_channel[i].ticks_fade;
Aug 23, 2014
Aug 23, 2014
333
if ( ticks >= mix_channel[i].fade_length ) {
May 22, 2013
May 22, 2013
334
335
336
337
338
339
340
341
342
Mix_Volume(i, mix_channel[i].fade_volume_reset); /* Restore the volume */
if( mix_channel[i].fading == MIX_FADING_OUT ) {
mix_channel[i].playing = 0;
mix_channel[i].looping = 0;
mix_channel[i].expire = 0;
_Mix_channel_done_playing(i);
}
mix_channel[i].fading = MIX_NO_FADING;
} else {
Aug 23, 2014
Aug 23, 2014
343
if ( mix_channel[i].fading == MIX_FADING_OUT ) {
May 22, 2013
May 22, 2013
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
Mix_Volume(i, (mix_channel[i].fade_volume * (mix_channel[i].fade_length-ticks))
/ mix_channel[i].fade_length );
} else {
Mix_Volume(i, (mix_channel[i].fade_volume * ticks) / mix_channel[i].fade_length );
}
}
}
if ( mix_channel[i].playing > 0 ) {
int index = 0;
int remaining = len;
while (mix_channel[i].playing > 0 && index < len) {
remaining = len - index;
volume = (mix_channel[i].volume*mix_channel[i].chunk->volume) / MIX_MAX_VOLUME;
mixable = mix_channel[i].playing;
if ( mixable > remaining ) {
mixable = remaining;
}
mix_input = Mix_DoEffects(i, mix_channel[i].samples, mixable);
SDL_MixAudio(stream+index,mix_input,mixable,volume);
if (mix_input != mix_channel[i].samples)
SDL_free(mix_input);
mix_channel[i].samples += mixable;
mix_channel[i].playing -= mixable;
index += mixable;
/* rcg06072001 Alert app if channel is done playing. */
if (!mix_channel[i].playing && !mix_channel[i].looping) {
_Mix_channel_done_playing(i);
}
}
/* If looping the sample and we are at its end, make sure
we will still return a full buffer */
while ( mix_channel[i].looping && index < len ) {
int alen = mix_channel[i].chunk->alen;
remaining = len - index;
if (remaining > alen) {
remaining = alen;
}
mix_input = Mix_DoEffects(i, mix_channel[i].chunk->abuf, remaining);
SDL_MixAudio(stream+index, mix_input, remaining, volume);
if (mix_input != mix_channel[i].chunk->abuf)
SDL_free(mix_input);
Jul 9, 2013
Jul 9, 2013
391
392
393
if (mix_channel[i].looping > 0) {
--mix_channel[i].looping;
}
May 22, 2013
May 22, 2013
394
395
396
397
398
mix_channel[i].samples = mix_channel[i].chunk->abuf + remaining;
mix_channel[i].playing = mix_channel[i].chunk->alen - remaining;
index += remaining;
}
if ( ! mix_channel[i].playing && mix_channel[i].looping ) {
Jul 9, 2013
Jul 9, 2013
399
400
401
if (mix_channel[i].looping > 0) {
--mix_channel[i].looping;
}
May 22, 2013
May 22, 2013
402
403
404
405
406
407
408
409
410
411
412
413
414
mix_channel[i].samples = mix_channel[i].chunk->abuf;
mix_channel[i].playing = mix_channel[i].chunk->alen;
}
}
}
}
/* rcg06122001 run posteffects... */
Mix_DoEffects(MIX_CHANNEL_POST, stream, len);
if ( mix_postmix ) {
mix_postmix(mix_postmix_data, stream, len);
}
Oct 21, 1999
Oct 21, 1999
415
416
}
Jul 21, 2007
Jul 21, 2007
417
#if 0
Oct 21, 1999
Oct 21, 1999
418
419
static void PrintFormat(char *title, SDL_AudioSpec *fmt)
{
May 22, 2013
May 22, 2013
420
421
422
423
printf("%s: %d bit %s audio (%s) at %u Hz\n", title, (fmt->format&0xFF),
(fmt->format&0x8000) ? "signed" : "unsigned",
(fmt->channels > 2) ? "surround" :
(fmt->channels > 1) ? "stereo" : "mono", fmt->freq);
Oct 21, 1999
Oct 21, 1999
424
}
Jul 21, 2007
Jul 21, 2007
425
#endif
Oct 21, 1999
Oct 21, 1999
426
Sep 11, 2001
Sep 11, 2001
427
Oct 21, 1999
Oct 21, 1999
428
/* Open the mixer with a certain desired audio format */
Jun 26, 2000
Jun 26, 2000
429
int Mix_OpenAudio(int frequency, Uint16 format, int nchannels, int chunksize)
Oct 21, 1999
Oct 21, 1999
430
{
May 22, 2013
May 22, 2013
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
int i;
SDL_AudioSpec desired;
/* If the mixer is already opened, increment open count */
if ( audio_opened ) {
if ( format == mixer.format && nchannels == mixer.channels ) {
++audio_opened;
return(0);
}
while ( audio_opened ) {
Mix_CloseAudio();
}
}
/* Set the desired format and frequency */
desired.freq = frequency;
desired.format = format;
desired.channels = nchannels;
desired.samples = chunksize;
desired.callback = mix_channels;
desired.userdata = NULL;
/* Accept nearly any audio format */
if ( SDL_OpenAudio(&desired, &mixer) < 0 ) {
return(-1);
}
Oct 21, 1999
Oct 21, 1999
457
#if 0
May 22, 2013
May 22, 2013
458
PrintFormat("Audio device", &mixer);
Oct 21, 1999
Oct 21, 1999
459
460
#endif
May 22, 2013
May 22, 2013
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
/* Initialize the music players */
if ( open_music(&mixer) < 0 ) {
SDL_CloseAudio();
return(-1);
}
num_channels = MIX_CHANNELS;
mix_channel = (struct _Mix_Channel *) SDL_malloc(num_channels * sizeof(struct _Mix_Channel));
/* Clear out the audio channels */
for ( i=0; i<num_channels; ++i ) {
mix_channel[i].chunk = NULL;
mix_channel[i].playing = 0;
mix_channel[i].looping = 0;
mix_channel[i].volume = SDL_MIX_MAXVOLUME;
mix_channel[i].fade_volume = SDL_MIX_MAXVOLUME;
mix_channel[i].fade_volume_reset = SDL_MIX_MAXVOLUME;
mix_channel[i].fading = MIX_NO_FADING;
mix_channel[i].tag = -1;
mix_channel[i].expire = 0;
mix_channel[i].effects = NULL;
mix_channel[i].paused = 0;
}
Mix_VolumeMusic(SDL_MIX_MAXVOLUME);
_Mix_InitEffects();
/* This list is (currently) decided at build time. */
add_chunk_decoder("WAVE");
add_chunk_decoder("AIFF");
add_chunk_decoder("VOC");
Jun 5, 2009
Jun 5, 2009
492
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
493
add_chunk_decoder("OGG");
Jun 5, 2009
Jun 5, 2009
494
495
#endif
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
496
add_chunk_decoder("FLAC");
Jun 5, 2009
Jun 5, 2009
497
#endif
Sep 16, 2013
Sep 16, 2013
498
499
500
#if defined(MP3_MUSIC) || defined(MP3_MAD_MUSIC)
add_chunk_decoder("MP3");
#endif
Jun 5, 2009
Jun 5, 2009
501
May 22, 2013
May 22, 2013
502
503
504
audio_opened = 1;
SDL_PauseAudio(0);
return(0);
Oct 21, 1999
Oct 21, 1999
505
506
}
Oct 26, 1999
Oct 26, 1999
507
508
509
510
511
512
/* Dynamically change the number of channels managed by the mixer.
If decreasing the number of channels, the upper channels are
stopped.
*/
int Mix_AllocateChannels(int numchans)
{
May 22, 2013
May 22, 2013
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
if ( numchans<0 || numchans==num_channels )
return(num_channels);
if ( numchans < num_channels ) {
/* Stop the affected channels */
int i;
for(i=numchans; i < num_channels; i++) {
Mix_UnregisterAllEffects(i);
Mix_HaltChannel(i);
}
}
SDL_LockAudio();
mix_channel = (struct _Mix_Channel *) SDL_realloc(mix_channel, numchans * sizeof(struct _Mix_Channel));
if ( numchans > num_channels ) {
/* Initialize the new channels */
int i;
for(i=num_channels; i < numchans; i++) {
mix_channel[i].chunk = NULL;
mix_channel[i].playing = 0;
mix_channel[i].looping = 0;
mix_channel[i].volume = SDL_MIX_MAXVOLUME;
mix_channel[i].fade_volume = SDL_MIX_MAXVOLUME;
mix_channel[i].fade_volume_reset = SDL_MIX_MAXVOLUME;
mix_channel[i].fading = MIX_NO_FADING;
mix_channel[i].tag = -1;
mix_channel[i].expire = 0;
mix_channel[i].effects = NULL;
mix_channel[i].paused = 0;
}
}
num_channels = numchans;
SDL_UnlockAudio();
return(num_channels);
Oct 26, 1999
Oct 26, 1999
546
547
}
Oct 21, 1999
Oct 21, 1999
548
549
550
/* Return the actual mixer parameters */
int Mix_QuerySpec(int *frequency, Uint16 *format, int *channels)
{
May 22, 2013
May 22, 2013
551
552
553
554
555
556
557
558
559
560
561
562
if ( audio_opened ) {
if ( frequency ) {
*frequency = mixer.freq;
}
if ( format ) {
*format = mixer.format;
}
if ( channels ) {
*channels = mixer.channels;
}
}
return(audio_opened);
Oct 21, 1999
Oct 21, 1999
563
564
}
Sep 16, 2013
Sep 16, 2013
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
static int detect_mp3(Uint8 *magic)
{
if ( strncmp((char *)magic, "ID3", 3) == 0 ) {
return 1;
}
/* Detection code lifted from SMPEG */
if(((magic[0] & 0xff) != 0xff) || // No sync bits
((magic[1] & 0xf0) != 0xf0) || //
((magic[2] & 0xf0) == 0x00) || // Bitrate is 0
((magic[2] & 0xf0) == 0xf0) || // Bitrate is 15
((magic[2] & 0x0c) == 0x0c) || // Frequency is 3
((magic[1] & 0x06) == 0x00)) { // Layer is 4
return(0);
}
return 1;
}
Jun 10, 2001
Jun 10, 2001
582
Oct 21, 1999
Oct 21, 1999
583
584
585
/* Load a wave file */
Mix_Chunk *Mix_LoadWAV_RW(SDL_RWops *src, int freesrc)
{
May 22, 2013
May 22, 2013
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
Uint32 magic;
Mix_Chunk *chunk;
SDL_AudioSpec wavespec, *loaded;
SDL_AudioCVT wavecvt;
int samplesize;
/* rcg06012001 Make sure src is valid */
if ( ! src ) {
SDL_SetError("Mix_LoadWAV_RW with NULL src");
return(NULL);
}
/* Make sure audio has been opened */
if ( ! audio_opened ) {
SDL_SetError("Audio device hasn't been opened");
Jun 2, 2013
Jun 2, 2013
601
if ( freesrc ) {
May 22, 2013
May 22, 2013
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
SDL_RWclose(src);
}
return(NULL);
}
/* Allocate the chunk memory */
chunk = (Mix_Chunk *)SDL_malloc(sizeof(Mix_Chunk));
if ( chunk == NULL ) {
SDL_SetError("Out of memory");
if ( freesrc ) {
SDL_RWclose(src);
}
return(NULL);
}
/* Find out what kind of audio file this is */
magic = SDL_ReadLE32(src);
/* Seek backwards for compatibility with older loaders */
SDL_RWseek(src, -(int)sizeof(Uint32), RW_SEEK_CUR);
switch (magic) {
case WAVE:
case RIFF:
loaded = SDL_LoadWAV_RW(src, freesrc, &wavespec,
(Uint8 **)&chunk->abuf, &chunk->alen);
break;
case FORM:
loaded = Mix_LoadAIFF_RW(src, freesrc, &wavespec,
(Uint8 **)&chunk->abuf, &chunk->alen);
break;
Sep 9, 2002
Sep 9, 2002
632
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
633
634
635
636
case OGGS:
loaded = Mix_LoadOGG_RW(src, freesrc, &wavespec,
(Uint8 **)&chunk->abuf, &chunk->alen);
break;
Feb 27, 2008
Feb 27, 2008
637
638
#endif
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
639
640
641
642
case FLAC:
loaded = Mix_LoadFLAC_RW(src, freesrc, &wavespec,
(Uint8 **)&chunk->abuf, &chunk->alen);
break;
Sep 9, 2002
Sep 9, 2002
643
#endif
May 22, 2013
May 22, 2013
644
645
646
647
648
case CREA:
loaded = Mix_LoadVOC_RW(src, freesrc, &wavespec,
(Uint8 **)&chunk->abuf, &chunk->alen);
break;
default:
Sep 16, 2013
Sep 16, 2013
649
650
651
652
653
654
655
656
657
658
#if defined(MP3_MUSIC) || defined(MP3_MAD_MUSIC)
if (detect_mp3((Uint8*)&magic))
{
/* note: send a copy of the mixer spec */
wavespec = mixer;
loaded = Mix_LoadMP3_RW(src, freesrc, &wavespec,
(Uint8 **)&chunk->abuf, &chunk->alen);
break;
}
#endif
May 22, 2013
May 22, 2013
659
660
661
662
663
664
665
666
667
668
669
670
SDL_SetError("Unrecognized sound file type");
if ( freesrc ) {
SDL_RWclose(src);
}
loaded = NULL;
break;
}
if ( !loaded ) {
/* The individual loaders have closed src if needed */
SDL_free(chunk);
return(NULL);
}
Jun 10, 2001
Jun 10, 2001
671
Oct 21, 1999
Oct 21, 1999
672
#if 0
May 22, 2013
May 22, 2013
673
674
PrintFormat("Audio device", &mixer);
PrintFormat("-- Wave file", &wavespec);
Oct 21, 1999
Oct 21, 1999
675
676
#endif
May 22, 2013
May 22, 2013
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
/* Build the audio converter and create conversion buffers */
if ( wavespec.format != mixer.format ||
wavespec.channels != mixer.channels ||
wavespec.freq != mixer.freq ) {
if ( SDL_BuildAudioCVT(&wavecvt,
wavespec.format, wavespec.channels, wavespec.freq,
mixer.format, mixer.channels, mixer.freq) < 0 ) {
SDL_free(chunk->abuf);
SDL_free(chunk);
return(NULL);
}
samplesize = ((wavespec.format & 0xFF)/8)*wavespec.channels;
wavecvt.len = chunk->alen & ~(samplesize-1);
wavecvt.buf = (Uint8 *)SDL_calloc(1, wavecvt.len*wavecvt.len_mult);
if ( wavecvt.buf == NULL ) {
SDL_SetError("Out of memory");
SDL_free(chunk->abuf);
SDL_free(chunk);
return(NULL);
}
Jun 1, 2013
Jun 1, 2013
697
SDL_memcpy(wavecvt.buf, chunk->abuf, chunk->alen);
May 22, 2013
May 22, 2013
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
SDL_free(chunk->abuf);
/* Run the audio converter */
if ( SDL_ConvertAudio(&wavecvt) < 0 ) {
SDL_free(wavecvt.buf);
SDL_free(chunk);
return(NULL);
}
chunk->abuf = wavecvt.buf;
chunk->alen = wavecvt.len_cvt;
}
chunk->allocated = 1;
chunk->volume = MIX_MAX_VOLUME;
return(chunk);
Oct 21, 1999
Oct 21, 1999
715
716
}
Oct 21, 1999
Oct 21, 1999
717
718
719
/* Load a wave file of the mixer format from a memory buffer */
Mix_Chunk *Mix_QuickLoad_WAV(Uint8 *mem)
{
May 22, 2013
May 22, 2013
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
Mix_Chunk *chunk;
Uint8 magic[4];
/* Make sure audio has been opened */
if ( ! audio_opened ) {
SDL_SetError("Audio device hasn't been opened");
return(NULL);
}
/* Allocate the chunk memory */
chunk = (Mix_Chunk *)SDL_calloc(1,sizeof(Mix_Chunk));
if ( chunk == NULL ) {
SDL_SetError("Out of memory");
return(NULL);
}
/* Essentially just skip to the audio data (no error checking - fast) */
chunk->allocated = 0;
mem += 12; /* WAV header */
do {
Jun 1, 2013
Jun 1, 2013
740
SDL_memcpy(magic, mem, 4);
May 22, 2013
May 22, 2013
741
742
743
744
745
746
747
748
749
mem += 4;
chunk->alen = ((mem[3]<<24)|(mem[2]<<16)|(mem[1]<<8)|(mem[0]));
mem += 4;
chunk->abuf = mem;
mem += chunk->alen;
} while ( memcmp(magic, "data", 4) != 0 );
chunk->volume = MIX_MAX_VOLUME;
return(chunk);
Oct 21, 1999
Oct 21, 1999
750
751
}
May 18, 2002
May 18, 2002
752
753
754
/* Load raw audio data of the mixer format from a memory buffer */
Mix_Chunk *Mix_QuickLoad_RAW(Uint8 *mem, Uint32 len)
{
May 22, 2013
May 22, 2013
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
Mix_Chunk *chunk;
/* Make sure audio has been opened */
if ( ! audio_opened ) {
SDL_SetError("Audio device hasn't been opened");
return(NULL);
}
/* Allocate the chunk memory */
chunk = (Mix_Chunk *)SDL_malloc(sizeof(Mix_Chunk));
if ( chunk == NULL ) {
SDL_SetError("Out of memory");
return(NULL);
}
/* Essentially just point at the audio data (no error checking - fast) */
chunk->allocated = 0;
chunk->alen = len;
chunk->abuf = mem;
chunk->volume = MIX_MAX_VOLUME;
return(chunk);
May 18, 2002
May 18, 2002
777
778
}
Oct 21, 1999
Oct 21, 1999
779
780
781
/* Free an audio chunk previously loaded */
void Mix_FreeChunk(Mix_Chunk *chunk)
{
May 22, 2013
May 22, 2013
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
int i;
/* Caution -- if the chunk is playing, the mixer will crash */
if ( chunk ) {
/* Guarantee that this chunk isn't playing */
SDL_LockAudio();
if ( mix_channel ) {
for ( i=0; i<num_channels; ++i ) {
if ( chunk == mix_channel[i].chunk ) {
mix_channel[i].playing = 0;
mix_channel[i].looping = 0;
}
}
}
SDL_UnlockAudio();
/* Actually free the chunk */
if ( chunk->allocated ) {
SDL_free(chunk->abuf);
}
SDL_free(chunk);
}
Oct 21, 1999
Oct 21, 1999
803
804
}
Dec 26, 1999
Dec 26, 1999
805
806
807
808
809
810
811
/* Set a function that is called after all mixing is performed.
This can be used to provide real-time visual display of the audio stream
or add a custom mixer filter for the stream data.
*/
void Mix_SetPostMix(void (*mix_func)
(void *udata, Uint8 *stream, int len), void *arg)
{
May 22, 2013
May 22, 2013
812
813
814
815
SDL_LockAudio();
mix_postmix_data = arg;
mix_postmix = mix_func;
SDL_UnlockAudio();
Dec 26, 1999
Dec 26, 1999
816
817
}
Oct 21, 1999
Oct 21, 1999
818
819
820
821
822
823
/* Add your own music player or mixer function.
If 'mix_func' is NULL, the default music player is re-enabled.
*/
void Mix_HookMusic(void (*mix_func)(void *udata, Uint8 *stream, int len),
void *arg)
{
May 22, 2013
May 22, 2013
824
825
826
827
828
829
830
831
832
SDL_LockAudio();
if ( mix_func != NULL ) {
music_data = arg;
mix_music = mix_func;
} else {
music_data = NULL;
mix_music = music_mixer;
}
SDL_UnlockAudio();
Oct 21, 1999
Oct 21, 1999
833
834
835
836
}
void *Mix_GetMusicHookData(void)
{
May 22, 2013
May 22, 2013
837
return(music_data);
Oct 21, 1999
Oct 21, 1999
838
839
}
Jun 10, 2001
Jun 10, 2001
840
841
void Mix_ChannelFinished(void (*channel_finished)(int channel))
{
May 22, 2013
May 22, 2013
842
843
844
SDL_LockAudio();
channel_done_callback = channel_finished;
SDL_UnlockAudio();
Jun 10, 2001
Jun 10, 2001
845
846
847
}
Oct 21, 1999
Oct 21, 1999
848
849
850
851
852
853
/* Reserve the first channels (0 -> n-1) for the application, i.e. don't allocate
them dynamically to the next sample if requested with a -1 value below.
Returns the number of reserved channels.
*/
int Mix_ReserveChannels(int num)
{
May 22, 2013
May 22, 2013
854
855
856
857
if (num > num_channels)
num = num_channels;
reserved_channels = num;
return num;
Oct 21, 1999
Oct 21, 1999
858
859
}
Aug 21, 2004
Aug 21, 2004
860
861
static int checkchunkintegral(Mix_Chunk *chunk)
{
May 22, 2013
May 22, 2013
862
int frame_width = 1;
Aug 21, 2004
Aug 21, 2004
863
May 22, 2013
May 22, 2013
864
865
866
867
if ((mixer.format & 0xFF) == 16) frame_width = 2;
frame_width *= mixer.channels;
while (chunk->alen % frame_width) chunk->alen--;
return chunk->alen;
Aug 21, 2004
Aug 21, 2004
868
869
}
Oct 21, 1999
Oct 21, 1999
870
871
/* Play an audio chunk on a specific channel.
If the specified channel is -1, play on the first free channel.
Oct 26, 1999
Oct 26, 1999
872
873
'ticks' is the number of milliseconds at most to play the sample, or -1
if there is no limit.
Oct 21, 1999
Oct 21, 1999
874
875
Returns which channel was used to play the sound.
*/
Oct 26, 1999
Oct 26, 1999
876
int Mix_PlayChannelTimed(int which, Mix_Chunk *chunk, int loops, int ticks)
Oct 21, 1999
Oct 21, 1999
877
{
May 22, 2013
May 22, 2013
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
int i;
/* Don't play null pointers :-) */
if ( chunk == NULL ) {
Mix_SetError("Tried to play a NULL chunk");
return(-1);
}
if ( !checkchunkintegral(chunk)) {
Mix_SetError("Tried to play a chunk with a bad frame");
return(-1);
}
/* Lock the mixer while modifying the playing channels */
SDL_LockAudio();
{
/* If which is -1, play on the first free channel */
if ( which == -1 ) {
for ( i=reserved_channels; i<num_channels; ++i ) {
if ( mix_channel[i].playing <= 0 )
break;
}
if ( i == num_channels ) {
Mix_SetError("No free channels available");
which = -1;
} else {
which = i;
}
}
/* Queue up the audio data for this channel */
if ( which >= 0 && which < num_channels ) {
Uint32 sdl_ticks = SDL_GetTicks();
if (Mix_Playing(which))
_Mix_channel_done_playing(which);
mix_channel[which].samples = chunk->abuf;
mix_channel[which].playing = chunk->alen;
mix_channel[which].looping = loops;
mix_channel[which].chunk = chunk;
mix_channel[which].paused = 0;
mix_channel[which].fading = MIX_NO_FADING;
mix_channel[which].start_time = sdl_ticks;
mix_channel[which].expire = (ticks>0) ? (sdl_ticks + ticks) : 0;
}
}
SDL_UnlockAudio();
/* Return the channel on which the sound is being played */
return(which);
Oct 23, 1999
Oct 23, 1999
926
927
}
Oct 26, 1999
Oct 26, 1999
928
929
930
/* Change the expiration delay for a channel */
int Mix_ExpireChannel(int which, int ticks)
{
May 22, 2013
May 22, 2013
931
932
933
934
935
936
937
938
939
940
941
942
943
944
int status = 0;
if ( which == -1 ) {
int i;
for ( i=0; i < num_channels; ++ i ) {
status += Mix_ExpireChannel(i, ticks);
}
} else if ( which < num_channels ) {
SDL_LockAudio();
mix_channel[which].expire = (ticks>0) ? (SDL_GetTicks() + ticks) : 0;
SDL_UnlockAudio();
++ status;
}
return(status);
Oct 26, 1999
Oct 26, 1999
945
946
}
Oct 23, 1999
Oct 23, 1999
947
/* Fade in a sound on a channel, over ms milliseconds */
Oct 26, 1999
Oct 26, 1999
948
int Mix_FadeInChannelTimed(int which, Mix_Chunk *chunk, int loops, int ms, int ticks)
Oct 23, 1999
Oct 23, 1999
949
{
May 22, 2013
May 22, 2013
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
int i;
/* Don't play null pointers :-) */
if ( chunk == NULL ) {
return(-1);
}
if ( !checkchunkintegral(chunk)) {
Mix_SetError("Tried to play a chunk with a bad frame");
return(-1);
}
/* Lock the mixer while modifying the playing channels */
SDL_LockAudio();
{
/* If which is -1, play on the first free channel */
if ( which == -1 ) {
for ( i=reserved_channels; i<num_channels; ++i ) {
if ( mix_channel[i].playing <= 0 )
break;
}
if ( i == num_channels ) {
which = -1;
} else {
which = i;
}
}
/* Queue up the audio data for this channel */
if ( which >= 0 && which < num_channels ) {
Uint32 sdl_ticks = SDL_GetTicks();
if (Mix_Playing(which))
_Mix_channel_done_playing(which);
mix_channel[which].samples = chunk->abuf;
mix_channel[which].playing = chunk->alen;
mix_channel[which].looping = loops;
mix_channel[which].chunk = chunk;
mix_channel[which].paused = 0;
mix_channel[which].fading = MIX_FADING_IN;
mix_channel[which].fade_volume = mix_channel[which].volume;
mix_channel[which].fade_volume_reset = mix_channel[which].volume;
mix_channel[which].volume = 0;
mix_channel[which].fade_length = (Uint32)ms;
mix_channel[which].start_time = mix_channel[which].ticks_fade = sdl_ticks;
mix_channel[which].expire = (ticks > 0) ? (sdl_ticks+ticks) : 0;
}
}
SDL_UnlockAudio();
/* Return the channel on which the sound is being played */
return(which);
Oct 21, 1999
Oct 21, 1999
1000
}