Skip to content

Latest commit

 

History

History
1476 lines (1294 loc) · 34.4 KB

mixer.c

File metadata and controls

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