Skip to content

Latest commit

 

History

History
1617 lines (1407 loc) · 44.5 KB

mixer.c

File metadata and controls

1617 lines (1407 loc) · 44.5 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
Jan 5, 2019
Jan 5, 2019
3
Copyright (C) 1997-2019 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>
May 24, 2017
May 24, 2017
28
#include "SDL.h"
Oct 21, 1999
Oct 21, 1999
29
Jan 14, 2000
Jan 14, 2000
30
#include "SDL_mixer.h"
Jan 29, 2016
Jan 29, 2016
31
#include "mixer.h"
Oct 17, 2017
Oct 17, 2017
32
#include "music.h"
Sep 11, 2001
Sep 11, 2001
33
34
35
#include "load_aiff.h"
#include "load_voc.h"
Nov 26, 2019
Nov 26, 2019
36
#define MIX_INTERNAL_EFFECT__
Jul 15, 2007
Jul 15, 2007
37
38
#include "effects_internal.h"
Sep 11, 2001
Sep 11, 2001
39
/* Magic numbers for various audio file formats */
May 22, 2013
May 22, 2013
40
41
42
43
#define RIFF 0x46464952 /* "RIFF" */
#define WAVE 0x45564157 /* "WAVE" */
#define FORM 0x4d524f46 /* "FORM" */
#define CREA 0x61657243 /* "Crea" */
Oct 21, 1999
Oct 21, 1999
44
45
46
static int audio_opened = 0;
static SDL_AudioSpec mixer;
Jan 29, 2016
Jan 29, 2016
47
static SDL_AudioDeviceID audio_device;
Sep 11, 2001
Sep 11, 2001
48
49
50
typedef struct _Mix_effectinfo
{
May 22, 2013
May 22, 2013
51
52
53
54
Mix_EffectFunc_t callback;
Mix_EffectDone_t done_callback;
void *udata;
struct _Mix_effectinfo *next;
Sep 11, 2001
Sep 11, 2001
55
56
} effect_info;
Oct 21, 1999
Oct 21, 1999
57
static struct _Mix_Channel {
May 22, 2013
May 22, 2013
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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
73
} *mix_channel = NULL;
Sep 11, 2001
Sep 11, 2001
74
75
76
static effect_info *posteffects = NULL;
Oct 26, 1999
Oct 26, 1999
77
static int num_channels;
Nov 11, 1999
Nov 11, 1999
78
static int reserved_channels = 0;
Oct 21, 1999
Oct 21, 1999
79
80
Dec 26, 1999
Dec 26, 1999
81
/* Support for hooking into the mixer callback system */
Oct 21, 2017
Oct 21, 2017
82
static void (SDLCALL *mix_postmix)(void *udata, Uint8 *stream, int len) = NULL;
Dec 27, 1999
Dec 27, 1999
83
static void *mix_postmix_data = NULL;
Dec 26, 1999
Dec 26, 1999
84
Jun 10, 2001
Jun 10, 2001
85
/* rcg07062001 callback to alert when channels are done playing. */
Oct 21, 2017
Oct 21, 2017
86
static void (SDLCALL *channel_done_callback)(int channel) = NULL;
Jun 10, 2001
Jun 10, 2001
87
Oct 17, 2017
Oct 17, 2017
88
/* Support for user defined music functions */
Oct 21, 2017
Oct 21, 2017
89
static void (SDLCALL *mix_music)(void *udata, Uint8 *stream, int len) = music_mixer;
Feb 1, 2000
Feb 1, 2000
90
static void *music_data = NULL;
Oct 21, 1999
Oct 21, 1999
91
Jun 5, 2009
Jun 5, 2009
92
93
94
95
/* rcg06042009 report available decoders at runtime. */
static const char **chunk_decoders = NULL;
static int num_decoders = 0;
Mar 20, 2011
Mar 20, 2011
96
Nov 5, 2009
Nov 5, 2009
97
int Mix_GetNumChunkDecoders(void)
Jun 5, 2009
Jun 5, 2009
98
{
May 22, 2013
May 22, 2013
99
return(num_decoders);
Jun 5, 2009
Jun 5, 2009
100
101
102
103
}
const char *Mix_GetChunkDecoder(int index)
{
May 22, 2013
May 22, 2013
104
105
106
107
if ((index < 0) || (index >= num_decoders)) {
return NULL;
}
return(chunk_decoders[index]);
Jun 5, 2009
Jun 5, 2009
108
109
}
Oct 17, 2017
Oct 17, 2017
110
111
112
113
114
115
116
117
118
119
120
SDL_bool Mix_HasChunkDecoder(const char *name)
{
int index;
for (index = 0; index < num_decoders; ++index) {
if (SDL_strcasecmp(name, chunk_decoders[index]) == 0) {
return SDL_TRUE;
}
}
return SDL_FALSE;
}
Oct 25, 2017
Oct 25, 2017
121
void add_chunk_decoder(const char *decoder)
Jun 5, 2009
Jun 5, 2009
122
{
Oct 25, 2017
Oct 25, 2017
123
124
125
126
127
128
129
130
131
132
int i;
void *ptr;
/* Check to see if we already have this decoder */
for (i = 0; i < num_decoders; ++i) {
if (SDL_strcmp(chunk_decoders[i], decoder) == 0) {
return;
}
}
Nov 26, 2019
Nov 26, 2019
133
ptr = SDL_realloc((void *)chunk_decoders, (size_t)(num_decoders + 1) * sizeof (const char *));
May 22, 2013
May 22, 2013
134
135
136
137
138
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
139
}
Sep 11, 2001
Sep 11, 2001
140
141
142
143
/* rcg06192001 get linked library's version. */
const SDL_version *Mix_Linked_Version(void)
{
May 22, 2013
May 22, 2013
144
145
146
static SDL_version linked_version;
SDL_MIXER_VERSION(&linked_version);
return(&linked_version);
Sep 11, 2001
Sep 11, 2001
147
148
}
Nov 8, 2009
Nov 8, 2009
149
150
int Mix_Init(int flags)
{
May 22, 2013
May 22, 2013
151
int result = 0;
Nov 8, 2009
Nov 8, 2009
152
May 22, 2013
May 22, 2013
153
if (flags & MIX_INIT_FLAC) {
Oct 25, 2017
Oct 25, 2017
154
155
if (load_music_type(MUS_FLAC)) {
open_music_type(MUS_FLAC);
May 22, 2013
May 22, 2013
156
result |= MIX_INIT_FLAC;
Oct 17, 2017
Oct 17, 2017
157
158
} else {
Mix_SetError("FLAC support not available");
May 22, 2013
May 22, 2013
159
160
161
}
}
if (flags & MIX_INIT_MOD) {
Oct 25, 2017
Oct 25, 2017
162
163
if (load_music_type(MUS_MOD)) {
open_music_type(MUS_MOD);
May 22, 2013
May 22, 2013
164
result |= MIX_INIT_MOD;
Oct 17, 2017
Oct 17, 2017
165
166
} else {
Mix_SetError("MOD support not available");
May 22, 2013
May 22, 2013
167
168
169
}
}
if (flags & MIX_INIT_MP3) {
Oct 25, 2017
Oct 25, 2017
170
171
if (load_music_type(MUS_MP3)) {
open_music_type(MUS_MP3);
May 22, 2013
May 22, 2013
172
result |= MIX_INIT_MP3;
Oct 17, 2017
Oct 17, 2017
173
174
} else {
Mix_SetError("MP3 support not available");
May 22, 2013
May 22, 2013
175
176
177
}
}
if (flags & MIX_INIT_OGG) {
Oct 25, 2017
Oct 25, 2017
178
179
if (load_music_type(MUS_OGG)) {
open_music_type(MUS_OGG);
May 22, 2013
May 22, 2013
180
result |= MIX_INIT_OGG;
Oct 17, 2017
Oct 17, 2017
181
182
183
184
} else {
Mix_SetError("OGG support not available");
}
}
Jun 15, 2018
Jun 15, 2018
185
186
187
188
189
190
191
192
if (flags & MIX_INIT_OPUS) {
if (load_music_type(MUS_OPUS)) {
open_music_type(MUS_OPUS);
result |= MIX_INIT_OPUS;
} else {
Mix_SetError("OPUS support not available");
}
}
Oct 17, 2017
Oct 17, 2017
193
if (flags & MIX_INIT_MID) {
Oct 25, 2017
Oct 25, 2017
194
195
if (load_music_type(MUS_MID)) {
open_music_type(MUS_MID);
Oct 17, 2017
Oct 17, 2017
196
197
198
result |= MIX_INIT_MID;
} else {
Mix_SetError("MIDI support not available");
May 22, 2013
May 22, 2013
199
200
}
}
Oct 25, 2017
Oct 25, 2017
201
return result;
Nov 8, 2009
Nov 8, 2009
202
203
204
205
}
void Mix_Quit()
{
Oct 17, 2017
Oct 17, 2017
206
unload_music();
Nov 8, 2009
Nov 8, 2009
207
208
}
Apr 13, 2002
Apr 13, 2002
209
static int _Mix_remove_all_effects(int channel, effect_info **e);
Sep 11, 2001
Sep 11, 2001
210
May 3, 2002
May 3, 2002
211
212
/*
* rcg06122001 Cleanup effect callbacks.
Jan 29, 2016
Jan 29, 2016
213
* MAKE SURE Mix_LockAudio() is called before this (or you're in the
May 3, 2002
May 3, 2002
214
215
216
* audio callback).
*/
static void _Mix_channel_done_playing(int channel)
Sep 11, 2001
Sep 11, 2001
217
{
May 22, 2013
May 22, 2013
218
219
220
221
222
223
224
225
226
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
227
228
229
230
231
}
static void *Mix_DoEffects(int chan, void *snd, int len)
{
May 22, 2013
May 22, 2013
232
233
234
235
236
237
238
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) {
Nov 26, 2019
Nov 26, 2019
239
buf = SDL_malloc((size_t)len);
May 22, 2013
May 22, 2013
240
241
242
if (buf == NULL) {
return(snd);
}
Nov 26, 2019
Nov 26, 2019
243
SDL_memcpy(buf, snd, (size_t)len);
May 22, 2013
May 22, 2013
244
245
246
247
248
249
250
251
252
253
254
}
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
255
256
257
}
Oct 21, 1999
Oct 21, 1999
258
/* Mixing function */
Oct 16, 2017
Oct 16, 2017
259
260
static void SDLCALL
mix_channels(void *udata, Uint8 *stream, int len)
Oct 21, 1999
Oct 21, 1999
261
{
May 22, 2013
May 22, 2013
262
Uint8 *mix_input;
Oct 17, 2017
Oct 17, 2017
263
int i, mixable, volume = MIX_MAX_VOLUME;
May 22, 2013
May 22, 2013
264
Uint32 sdl_ticks;
Nov 18, 2019
Nov 18, 2019
265
266
(void)udata;
Oct 21, 1999
Oct 21, 1999
267
Jul 15, 2007
Jul 15, 2007
268
#if SDL_VERSION_ATLEAST(1, 3, 0)
May 22, 2013
May 22, 2013
269
/* Need to initialize the stream in SDL 1.3+ */
Nov 26, 2019
Nov 26, 2019
270
SDL_memset(stream, mixer.silence, (size_t)len);
Jul 15, 2007
Jul 15, 2007
271
#endif
Jul 8, 2007
Jul 8, 2007
272
May 22, 2013
May 22, 2013
273
/* Mix the music (must be done before the channels are added) */
Oct 21, 2017
Oct 21, 2017
274
mix_music(music_data, stream, len);
May 22, 2013
May 22, 2013
275
276
277
/* Mix any playing channels... */
sdl_ticks = SDL_GetTicks();
Oct 17, 2017
Oct 17, 2017
278
279
280
for (i=0; i<num_channels; ++i) {
if (!mix_channel[i].paused) {
if (mix_channel[i].expire > 0 && mix_channel[i].expire < sdl_ticks) {
May 22, 2013
May 22, 2013
281
282
283
284
285
286
/* 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);
Oct 17, 2017
Oct 17, 2017
287
} else if (mix_channel[i].fading != MIX_NO_FADING) {
May 22, 2013
May 22, 2013
288
Uint32 ticks = sdl_ticks - mix_channel[i].ticks_fade;
Oct 17, 2017
Oct 17, 2017
289
if (ticks >= mix_channel[i].fade_length) {
May 22, 2013
May 22, 2013
290
Mix_Volume(i, mix_channel[i].fade_volume_reset); /* Restore the volume */
Oct 17, 2017
Oct 17, 2017
291
if(mix_channel[i].fading == MIX_FADING_OUT) {
May 22, 2013
May 22, 2013
292
293
294
295
296
297
298
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 {
Oct 17, 2017
Oct 17, 2017
299
if (mix_channel[i].fading == MIX_FADING_OUT) {
May 22, 2013
May 22, 2013
300
Mix_Volume(i, (mix_channel[i].fade_volume * (mix_channel[i].fade_length-ticks))
Oct 17, 2017
Oct 17, 2017
301
/ mix_channel[i].fade_length);
May 22, 2013
May 22, 2013
302
} else {
Oct 17, 2017
Oct 17, 2017
303
Mix_Volume(i, (mix_channel[i].fade_volume * ticks) / mix_channel[i].fade_length);
May 22, 2013
May 22, 2013
304
305
306
}
}
}
Oct 17, 2017
Oct 17, 2017
307
if (mix_channel[i].playing > 0) {
May 22, 2013
May 22, 2013
308
309
310
311
312
313
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;
Oct 17, 2017
Oct 17, 2017
314
if (mixable > remaining) {
May 22, 2013
May 22, 2013
315
316
317
318
mixable = remaining;
}
mix_input = Mix_DoEffects(i, mix_channel[i].samples, mixable);
Jan 29, 2016
Jan 29, 2016
319
SDL_MixAudioFormat(stream+index,mix_input,mixer.format,mixable,volume);
May 22, 2013
May 22, 2013
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
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 */
Oct 17, 2017
Oct 17, 2017
335
while (mix_channel[i].looping && index < len) {
May 22, 2013
May 22, 2013
336
337
338
339
340
341
342
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);
Jan 29, 2016
Jan 29, 2016
343
SDL_MixAudioFormat(stream+index, mix_input, mixer.format, remaining, volume);
May 22, 2013
May 22, 2013
344
345
346
if (mix_input != mix_channel[i].chunk->abuf)
SDL_free(mix_input);
Jul 9, 2013
Jul 9, 2013
347
348
349
if (mix_channel[i].looping > 0) {
--mix_channel[i].looping;
}
May 22, 2013
May 22, 2013
350
351
352
353
mix_channel[i].samples = mix_channel[i].chunk->abuf + remaining;
mix_channel[i].playing = mix_channel[i].chunk->alen - remaining;
index += remaining;
}
Oct 17, 2017
Oct 17, 2017
354
if (! mix_channel[i].playing && mix_channel[i].looping) {
Jul 9, 2013
Jul 9, 2013
355
356
357
if (mix_channel[i].looping > 0) {
--mix_channel[i].looping;
}
May 22, 2013
May 22, 2013
358
359
360
361
362
363
364
365
366
367
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);
Oct 17, 2017
Oct 17, 2017
368
if (mix_postmix) {
May 22, 2013
May 22, 2013
369
370
mix_postmix(mix_postmix_data, stream, len);
}
Oct 21, 1999
Oct 21, 1999
371
372
}
Jul 21, 2007
Jul 21, 2007
373
#if 0
Oct 21, 1999
Oct 21, 1999
374
375
static void PrintFormat(char *title, SDL_AudioSpec *fmt)
{
May 22, 2013
May 22, 2013
376
377
378
379
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
380
}
Jul 21, 2007
Jul 21, 2007
381
#endif
Oct 21, 1999
Oct 21, 1999
382
383
/* Open the mixer with a certain desired audio format */
Jan 29, 2016
Jan 29, 2016
384
int Mix_OpenAudioDevice(int frequency, Uint16 format, int nchannels, int chunksize,
Oct 17, 2017
Oct 17, 2017
385
const char* device, int allowed_changes)
Oct 21, 1999
Oct 21, 1999
386
{
May 22, 2013
May 22, 2013
387
388
389
int i;
SDL_AudioSpec desired;
May 24, 2017
May 24, 2017
390
391
392
393
394
395
396
397
398
/* This used to call SDL_OpenAudio(), which initializes the audio
subsystem if necessary. Since SDL_OpenAudioDevice() doesn't,
we have to handle this case here. */
if (!SDL_WasInit(SDL_INIT_AUDIO)) {
if (SDL_InitSubSystem(SDL_INIT_AUDIO) < 0) {
return -1;
}
}
May 22, 2013
May 22, 2013
399
/* If the mixer is already opened, increment open count */
Oct 17, 2017
Oct 17, 2017
400
401
if (audio_opened) {
if (format == mixer.format && nchannels == mixer.channels) {
May 22, 2013
May 22, 2013
402
403
404
++audio_opened;
return(0);
}
Oct 17, 2017
Oct 17, 2017
405
while (audio_opened) {
May 22, 2013
May 22, 2013
406
407
408
409
410
411
412
413
414
415
416
417
418
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 */
Oct 17, 2017
Oct 17, 2017
419
if ((audio_device = SDL_OpenAudioDevice(device, 0, &desired, &mixer, allowed_changes)) == 0) {
May 22, 2013
May 22, 2013
420
421
return(-1);
}
Oct 21, 1999
Oct 21, 1999
422
#if 0
May 22, 2013
May 22, 2013
423
PrintFormat("Audio device", &mixer);
Oct 21, 1999
Oct 21, 1999
424
425
#endif
May 22, 2013
May 22, 2013
426
427
428
429
num_channels = MIX_CHANNELS;
mix_channel = (struct _Mix_Channel *) SDL_malloc(num_channels * sizeof(struct _Mix_Channel));
/* Clear out the audio channels */
Oct 17, 2017
Oct 17, 2017
430
for (i=0; i<num_channels; ++i) {
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
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();
add_chunk_decoder("WAVE");
add_chunk_decoder("AIFF");
add_chunk_decoder("VOC");
Oct 25, 2017
Oct 25, 2017
450
451
452
/* Initialize the music players */
open_music(&mixer);
Jun 5, 2009
Jun 5, 2009
453
May 22, 2013
May 22, 2013
454
audio_opened = 1;
Jan 29, 2016
Jan 29, 2016
455
SDL_PauseAudioDevice(audio_device, 0);
May 22, 2013
May 22, 2013
456
return(0);
Oct 21, 1999
Oct 21, 1999
457
458
}
Jan 29, 2016
Jan 29, 2016
459
460
461
/* Open the mixer with a certain desired audio format */
int Mix_OpenAudio(int frequency, Uint16 format, int nchannels, int chunksize)
{
Oct 11, 2017
Oct 11, 2017
462
463
464
return Mix_OpenAudioDevice(frequency, format, nchannels, chunksize, NULL,
SDL_AUDIO_ALLOW_FREQUENCY_CHANGE |
SDL_AUDIO_ALLOW_CHANNELS_CHANGE);
Jan 29, 2016
Jan 29, 2016
465
466
}
Oct 26, 1999
Oct 26, 1999
467
468
469
470
471
472
/* 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)
{
Oct 17, 2017
Oct 17, 2017
473
if (numchans<0 || numchans==num_channels)
May 22, 2013
May 22, 2013
474
475
return(num_channels);
Oct 17, 2017
Oct 17, 2017
476
if (numchans < num_channels) {
May 22, 2013
May 22, 2013
477
478
479
480
481
482
483
/* Stop the affected channels */
int i;
for(i=numchans; i < num_channels; i++) {
Mix_UnregisterAllEffects(i);
Mix_HaltChannel(i);
}
}
Jan 29, 2016
Jan 29, 2016
484
Mix_LockAudio();
May 22, 2013
May 22, 2013
485
mix_channel = (struct _Mix_Channel *) SDL_realloc(mix_channel, numchans * sizeof(struct _Mix_Channel));
Oct 17, 2017
Oct 17, 2017
486
if (numchans > num_channels) {
May 22, 2013
May 22, 2013
487
488
489
490
491
492
/* 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;
Oct 17, 2017
Oct 17, 2017
493
494
495
mix_channel[i].volume = MIX_MAX_VOLUME;
mix_channel[i].fade_volume = MIX_MAX_VOLUME;
mix_channel[i].fade_volume_reset = MIX_MAX_VOLUME;
May 22, 2013
May 22, 2013
496
497
498
499
500
501
502
503
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;
Jan 29, 2016
Jan 29, 2016
504
Mix_UnlockAudio();
May 22, 2013
May 22, 2013
505
return(num_channels);
Oct 26, 1999
Oct 26, 1999
506
507
}
Oct 21, 1999
Oct 21, 1999
508
509
510
/* Return the actual mixer parameters */
int Mix_QuerySpec(int *frequency, Uint16 *format, int *channels)
{
Oct 17, 2017
Oct 17, 2017
511
512
if (audio_opened) {
if (frequency) {
May 22, 2013
May 22, 2013
513
514
*frequency = mixer.freq;
}
Oct 17, 2017
Oct 17, 2017
515
if (format) {
May 22, 2013
May 22, 2013
516
517
*format = mixer.format;
}
Oct 17, 2017
Oct 17, 2017
518
if (channels) {
May 22, 2013
May 22, 2013
519
520
521
522
*channels = mixer.channels;
}
}
return(audio_opened);
Oct 21, 1999
Oct 21, 1999
523
524
}
Oct 17, 2017
Oct 17, 2017
525
typedef struct _MusicFragment
Sep 16, 2013
Sep 16, 2013
526
{
Oct 17, 2017
Oct 17, 2017
527
528
529
530
531
Uint8 *data;
int size;
struct _MusicFragment *next;
} MusicFragment;
Oct 5, 2019
Oct 5, 2019
532
static SDL_AudioSpec *Mix_LoadMusic_RW(SDL_RWops *src, int freesrc, SDL_AudioSpec *spec, Uint8 **audio_buf, Uint32 *audio_len)
Oct 17, 2017
Oct 17, 2017
533
534
{
int i;
Nov 26, 2019
Nov 26, 2019
535
Mix_MusicType music_type;
Oct 17, 2017
Oct 17, 2017
536
537
538
539
540
541
542
543
Mix_MusicInterface *interface = NULL;
void *music = NULL;
Sint64 start;
SDL_bool playing;
MusicFragment *first = NULL, *last = NULL, *fragment = NULL;
int count = 0;
int fragment_size;
Nov 26, 2019
Nov 26, 2019
544
music_type = detect_music_type(src);
Oct 25, 2017
Oct 25, 2017
545
546
547
548
if (!load_music_type(music_type) || !open_music_type(music_type)) {
return NULL;
}
Oct 17, 2017
Oct 17, 2017
549
550
551
552
553
554
555
556
*spec = mixer;
/* Use fragments sized on full audio frame boundaries - this'll do */
fragment_size = spec->size;
start = SDL_RWtell(src);
for (i = 0; i < get_num_music_interfaces(); ++i) {
interface = get_music_interface(i);
Oct 25, 2017
Oct 25, 2017
557
558
559
if (!interface->opened) {
continue;
}
Oct 17, 2017
Oct 17, 2017
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
if (interface->type != music_type) {
continue;
}
if (!interface->CreateFromRW || !interface->GetAudio) {
continue;
}
/* These music interfaces are not safe to use while music is playing */
if (interface->api == MIX_MUSIC_CMD ||
interface->api == MIX_MUSIC_MIKMOD ||
interface->api == MIX_MUSIC_NATIVEMIDI) {
continue;
}
music = interface->CreateFromRW(src, freesrc);
if (music) {
/* The interface owns the data source now */
freesrc = SDL_FALSE;
break;
}
/* Reset the stream for the next decoder */
SDL_RWseek(src, start, RW_SEEK_SET);
Sep 16, 2013
Sep 16, 2013
583
584
}
Oct 17, 2017
Oct 17, 2017
585
586
587
588
589
590
591
592
593
594
595
if (!music) {
if (freesrc) {
SDL_RWclose(src);
}
Mix_SetError("Unrecognized audio format");
return NULL;
}
Mix_LockAudio();
if (interface->Play) {
Oct 21, 2017
Oct 21, 2017
596
interface->Play(music, 1);
Oct 21, 2017
Oct 21, 2017
597
}
Oct 17, 2017
Oct 17, 2017
598
599
600
601
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
632
633
634
635
636
637
638
639
playing = SDL_TRUE;
while (playing) {
int left;
fragment = (MusicFragment *)SDL_malloc(sizeof(*fragment));
if (!fragment) {
/* Uh oh, out of memory, let's return what we have */
break;
}
fragment->data = (Uint8 *)SDL_malloc(fragment_size);
if (!fragment->data) {
/* Uh oh, out of memory, let's return what we have */
SDL_free(fragment);
break;
}
fragment->next = NULL;
left = interface->GetAudio(music, fragment->data, fragment_size);
if (left > 0) {
playing = SDL_FALSE;
} else if (interface->IsPlaying) {
playing = interface->IsPlaying(music);
}
fragment->size = (fragment_size - left);
if (!first) {
first = fragment;
}
if (last) {
last->next = fragment;
}
last = fragment;
++count;
}
if (interface->Stop) {
interface->Stop(music);
}
if (music) {
interface->Delete(music);
Sep 16, 2013
Sep 16, 2013
640
}
Oct 17, 2017
Oct 17, 2017
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
Mix_UnlockAudio();
if (count > 0) {
*audio_len = (count - 1) * fragment_size + fragment->size;
*audio_buf = (Uint8 *)SDL_malloc(*audio_len);
if (*audio_buf) {
Uint8 *dst = *audio_buf;
for (fragment = first; fragment; fragment = fragment->next) {
SDL_memcpy(dst, fragment->data, fragment->size);
dst += fragment->size;
}
} else {
SDL_OutOfMemory();
spec = NULL;
}
} else {
Mix_SetError("No audio data");
spec = NULL;
}
while (first) {
fragment = first;
first = first->next;
SDL_free(fragment->data);
SDL_free(fragment);
}
if (freesrc) {
SDL_RWclose(src);
}
return spec;
Sep 16, 2013
Sep 16, 2013
673
}
Jun 10, 2001
Jun 10, 2001
674
Oct 21, 1999
Oct 21, 1999
675
676
677
/* Load a wave file */
Mix_Chunk *Mix_LoadWAV_RW(SDL_RWops *src, int freesrc)
{
Oct 17, 2017
Oct 17, 2017
678
Uint8 magic[4];
May 22, 2013
May 22, 2013
679
680
681
682
683
684
Mix_Chunk *chunk;
SDL_AudioSpec wavespec, *loaded;
SDL_AudioCVT wavecvt;
int samplesize;
/* rcg06012001 Make sure src is valid */
Oct 17, 2017
Oct 17, 2017
685
if (!src) {
May 22, 2013
May 22, 2013
686
687
688
689
690
SDL_SetError("Mix_LoadWAV_RW with NULL src");
return(NULL);
}
/* Make sure audio has been opened */
Oct 17, 2017
Oct 17, 2017
691
if (!audio_opened) {
May 22, 2013
May 22, 2013
692
SDL_SetError("Audio device hasn't been opened");
Oct 17, 2017
Oct 17, 2017
693
if (freesrc) {
May 22, 2013
May 22, 2013
694
695
696
697
698
699
700
SDL_RWclose(src);
}
return(NULL);
}
/* Allocate the chunk memory */
chunk = (Mix_Chunk *)SDL_malloc(sizeof(Mix_Chunk));
Oct 17, 2017
Oct 17, 2017
701
if (chunk == NULL) {
May 22, 2013
May 22, 2013
702
SDL_SetError("Out of memory");
Oct 17, 2017
Oct 17, 2017
703
if (freesrc) {
May 22, 2013
May 22, 2013
704
705
706
707
708
709
SDL_RWclose(src);
}
return(NULL);
}
/* Find out what kind of audio file this is */
Oct 17, 2017
Oct 17, 2017
710
711
712
713
714
715
716
if (SDL_RWread(src, magic, 1, 4) != 4) {
if (freesrc) {
SDL_RWclose(src);
}
Mix_SetError("Couldn't read first 4 bytes of audio data");
return NULL;
}
May 22, 2013
May 22, 2013
717
/* Seek backwards for compatibility with older loaders */
Oct 17, 2017
Oct 17, 2017
718
719
720
721
722
723
SDL_RWseek(src, -4, RW_SEEK_CUR);
if (SDL_memcmp(magic, "WAVE", 4) == 0 || SDL_memcmp(magic, "RIFF", 4) == 0) {
loaded = SDL_LoadWAV_RW(src, freesrc, &wavespec, (Uint8 **)&chunk->abuf, &chunk->alen);
} else if (SDL_memcmp(magic, "FORM", 4) == 0) {
loaded = Mix_LoadAIFF_RW(src, freesrc, &wavespec, (Uint8 **)&chunk->abuf, &chunk->alen);
May 23, 2018
May 23, 2018
724
} else if (SDL_memcmp(magic, "Crea", 4) == 0) {
Oct 17, 2017
Oct 17, 2017
725
726
loaded = Mix_LoadVOC_RW(src, freesrc, &wavespec, (Uint8 **)&chunk->abuf, &chunk->alen);
} else {
Oct 5, 2019
Oct 5, 2019
727
loaded = Mix_LoadMusic_RW(src, freesrc, &wavespec, (Uint8 **)&chunk->abuf, &chunk->alen);
May 22, 2013
May 22, 2013
728
}
Oct 17, 2017
Oct 17, 2017
729
if (!loaded) {
May 22, 2013
May 22, 2013
730
731
732
733
/* The individual loaders have closed src if needed */
SDL_free(chunk);
return(NULL);
}
Jun 10, 2001
Jun 10, 2001
734
Oct 21, 1999
Oct 21, 1999
735
#if 0
May 22, 2013
May 22, 2013
736
737
PrintFormat("Audio device", &mixer);
PrintFormat("-- Wave file", &wavespec);
Oct 21, 1999
Oct 21, 1999
738
739
#endif
May 22, 2013
May 22, 2013
740
/* Build the audio converter and create conversion buffers */
Oct 17, 2017
Oct 17, 2017
741
if (wavespec.format != mixer.format ||
May 22, 2013
May 22, 2013
742
wavespec.channels != mixer.channels ||
Oct 17, 2017
Oct 17, 2017
743
744
wavespec.freq != mixer.freq) {
if (SDL_BuildAudioCVT(&wavecvt,
May 22, 2013
May 22, 2013
745
wavespec.format, wavespec.channels, wavespec.freq,
Oct 17, 2017
Oct 17, 2017
746
mixer.format, mixer.channels, mixer.freq) < 0) {
May 22, 2013
May 22, 2013
747
748
749
750
751
752
753
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);
Oct 17, 2017
Oct 17, 2017
754
if (wavecvt.buf == NULL) {
May 22, 2013
May 22, 2013
755
756
757
758
759
SDL_SetError("Out of memory");
SDL_free(chunk->abuf);
SDL_free(chunk);
return(NULL);
}
Oct 21, 2017
Oct 21, 2017
760
SDL_memcpy(wavecvt.buf, chunk->abuf, wavecvt.len);
May 22, 2013
May 22, 2013
761
762
763
SDL_free(chunk->abuf);
/* Run the audio converter */
Oct 17, 2017
Oct 17, 2017
764
if (SDL_ConvertAudio(&wavecvt) < 0) {
May 22, 2013
May 22, 2013
765
766
767
768
769
770
771
772
773
774
775
776
777
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
778
779
}
Oct 21, 1999
Oct 21, 1999
780
781
782
/* 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
783
784
785
786
Mix_Chunk *chunk;
Uint8 magic[4];
/* Make sure audio has been opened */
Oct 17, 2017
Oct 17, 2017
787
if (! audio_opened) {
May 22, 2013
May 22, 2013
788
789
790
791
792
793
SDL_SetError("Audio device hasn't been opened");
return(NULL);
}
/* Allocate the chunk memory */
chunk = (Mix_Chunk *)SDL_calloc(1,sizeof(Mix_Chunk));
Oct 17, 2017
Oct 17, 2017
794
if (chunk == NULL) {
May 22, 2013
May 22, 2013
795
796
797
798
799
800
801
802
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
803
SDL_memcpy(magic, mem, 4);
May 22, 2013
May 22, 2013
804
805
806
807
808
mem += 4;
chunk->alen = ((mem[3]<<24)|(mem[2]<<16)|(mem[1]<<8)|(mem[0]));
mem += 4;
chunk->abuf = mem;
mem += chunk->alen;
Oct 17, 2017
Oct 17, 2017
809
} while (memcmp(magic, "data", 4) != 0);
May 22, 2013
May 22, 2013
810
811
812
chunk->volume = MIX_MAX_VOLUME;
return(chunk);
Oct 21, 1999
Oct 21, 1999
813
814
}
May 18, 2002
May 18, 2002
815
816
817
/* 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
818
819
820
Mix_Chunk *chunk;
/* Make sure audio has been opened */
Oct 17, 2017
Oct 17, 2017
821
if (! audio_opened) {
May 22, 2013
May 22, 2013
822
823
824
825
826
827
SDL_SetError("Audio device hasn't been opened");
return(NULL);
}
/* Allocate the chunk memory */
chunk = (Mix_Chunk *)SDL_malloc(sizeof(Mix_Chunk));
Oct 17, 2017
Oct 17, 2017
828
if (chunk == NULL) {
May 22, 2013
May 22, 2013
829
830
831
832
833
834
835
836
837
838
839
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
840
841
}
Oct 21, 1999
Oct 21, 1999
842
843
844
/* Free an audio chunk previously loaded */
void Mix_FreeChunk(Mix_Chunk *chunk)
{
May 22, 2013
May 22, 2013
845
846
847
int i;
/* Caution -- if the chunk is playing, the mixer will crash */
Oct 17, 2017
Oct 17, 2017
848
if (chunk) {
May 22, 2013
May 22, 2013
849
/* Guarantee that this chunk isn't playing */
Jan 29, 2016
Jan 29, 2016
850
Mix_LockAudio();
Oct 17, 2017
Oct 17, 2017
851
852
853
if (mix_channel) {
for (i=0; i<num_channels; ++i) {
if (chunk == mix_channel[i].chunk) {
May 22, 2013
May 22, 2013
854
855
856
857
858
mix_channel[i].playing = 0;
mix_channel[i].looping = 0;
}
}
}
Jan 29, 2016
Jan 29, 2016
859
Mix_UnlockAudio();
May 22, 2013
May 22, 2013
860
/* Actually free the chunk */
Oct 17, 2017
Oct 17, 2017
861
if (chunk->allocated) {
May 22, 2013
May 22, 2013
862
863
864
865
SDL_free(chunk->abuf);
}
SDL_free(chunk);
}
Oct 21, 1999
Oct 21, 1999
866
867
}
Dec 26, 1999
Dec 26, 1999
868
869
870
871
/* 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.
*/
Oct 21, 2017
Oct 21, 2017
872
void Mix_SetPostMix(void (SDLCALL *mix_func)
Dec 26, 1999
Dec 26, 1999
873
874
(void *udata, Uint8 *stream, int len), void *arg)
{
Jan 29, 2016
Jan 29, 2016
875
Mix_LockAudio();
May 22, 2013
May 22, 2013
876
877
mix_postmix_data = arg;
mix_postmix = mix_func;
Jan 29, 2016
Jan 29, 2016
878
Mix_UnlockAudio();
Dec 26, 1999
Dec 26, 1999
879
880
}
Oct 21, 1999
Oct 21, 1999
881
882
883
/* Add your own music player or mixer function.
If 'mix_func' is NULL, the default music player is re-enabled.
*/
Oct 21, 2017
Oct 21, 2017
884
void Mix_HookMusic(void (SDLCALL *mix_func)(void *udata, Uint8 *stream, int len),
Oct 21, 1999
Oct 21, 1999
885
886
void *arg)
{
Jan 29, 2016
Jan 29, 2016
887
Mix_LockAudio();
Oct 17, 2017
Oct 17, 2017
888
if (mix_func != NULL) {
May 22, 2013
May 22, 2013
889
890
891
892
893
894
music_data = arg;
mix_music = mix_func;
} else {
music_data = NULL;
mix_music = music_mixer;
}
Jan 29, 2016
Jan 29, 2016
895
Mix_UnlockAudio();
Oct 21, 1999
Oct 21, 1999
896
897
898
899
}
void *Mix_GetMusicHookData(void)
{
May 22, 2013
May 22, 2013
900
return(music_data);
Oct 21, 1999
Oct 21, 1999
901
902
}
Oct 21, 2017
Oct 21, 2017
903
void Mix_ChannelFinished(void (SDLCALL *channel_finished)(int channel))
Jun 10, 2001
Jun 10, 2001
904
{
Jan 29, 2016
Jan 29, 2016
905
Mix_LockAudio();
May 22, 2013
May 22, 2013
906
channel_done_callback = channel_finished;
Jan 29, 2016
Jan 29, 2016
907
Mix_UnlockAudio();
Jun 10, 2001
Jun 10, 2001
908
909
910
}
Oct 21, 1999
Oct 21, 1999
911
912
913
914
915
916
/* 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
917
918
919
920
if (num > num_channels)
num = num_channels;
reserved_channels = num;
return num;
Oct 21, 1999
Oct 21, 1999
921
922
}
Aug 21, 2004
Aug 21, 2004
923
924
static int checkchunkintegral(Mix_Chunk *chunk)
{
May 22, 2013
May 22, 2013
925
int frame_width = 1;
Aug 21, 2004
Aug 21, 2004
926
May 22, 2013
May 22, 2013
927
928
929
930
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
931
932
}
Oct 21, 1999
Oct 21, 1999
933
934
/* 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
935
936
'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
937
938
Returns which channel was used to play the sound.
*/
Oct 26, 1999
Oct 26, 1999
939
int Mix_PlayChannelTimed(int which, Mix_Chunk *chunk, int loops, int ticks)
Oct 21, 1999
Oct 21, 1999
940
{
May 22, 2013
May 22, 2013
941
942
943
int i;
/* Don't play null pointers :-) */
Oct 17, 2017
Oct 17, 2017
944
if (chunk == NULL) {
May 22, 2013
May 22, 2013
945
946
947
Mix_SetError("Tried to play a NULL chunk");
return(-1);
}
Oct 17, 2017
Oct 17, 2017
948
if (!checkchunkintegral(chunk)) {
May 22, 2013
May 22, 2013
949
950
951
952
953
Mix_SetError("Tried to play a chunk with a bad frame");
return(-1);
}
/* Lock the mixer while modifying the playing channels */
Jan 29, 2016
Jan 29, 2016
954
Mix_LockAudio();
May 22, 2013
May 22, 2013
955
956
{
/* If which is -1, play on the first free channel */
Oct 17, 2017
Oct 17, 2017
957
958
959
if (which == -1) {
for (i=reserved_channels; i<num_channels; ++i) {
if (mix_channel[i].playing <= 0)
May 22, 2013
May 22, 2013
960
961
break;
}
Oct 17, 2017
Oct 17, 2017
962
if (i == num_channels) {
May 22, 2013
May 22, 2013
963
964
965
966
967
968
969
970
Mix_SetError("No free channels available");
which = -1;
} else {
which = i;
}
}
/* Queue up the audio data for this channel */
Oct 17, 2017
Oct 17, 2017
971
if (which >= 0 && which < num_channels) {
May 22, 2013
May 22, 2013
972
973
974
975
Uint32 sdl_ticks = SDL_GetTicks();
if (Mix_Playing(which))
_Mix_channel_done_playing(which);
mix_channel[which].samples = chunk->abuf;
Nov 17, 2019
Nov 17, 2019
976
mix_channel[which].playing = (int)chunk->alen;
May 22, 2013
May 22, 2013
977
978
979
980
981
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;
Nov 17, 2019
Nov 17, 2019
982
mix_channel[which].expire = (ticks > 0) ? (sdl_ticks + (Uint32)ticks) : 0;
May 22, 2013
May 22, 2013
983
984
}
}
Jan 29, 2016
Jan 29, 2016
985
Mix_UnlockAudio();
May 22, 2013
May 22, 2013
986
987
988
/* Return the channel on which the sound is being played */
return(which);
Oct 23, 1999
Oct 23, 1999
989
990
}
Oct 26, 1999
Oct 26, 1999
991
992
993
/* Change the expiration delay for a channel */
int Mix_ExpireChannel(int which, int ticks)
{
May 22, 2013
May 22, 2013
994
995
int status = 0;
Oct 17, 2017
Oct 17, 2017
996
if (which == -1) {
May 22, 2013
May 22, 2013
997
int i;
Oct 17, 2017
Oct 17, 2017
998
for (i=0; i < num_channels; ++ i) {
May 22, 2013
May 22, 2013
999
1000
status += Mix_ExpireChannel(i, ticks);
}