Skip to content

Latest commit

 

History

History
1294 lines (1125 loc) · 30 KB

mixer.c

File metadata and controls

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