Skip to content

Latest commit

 

History

History
1207 lines (1047 loc) · 27.7 KB

mixer.c

File metadata and controls

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