Skip to content

Latest commit

 

History

History
1502 lines (1315 loc) · 35.3 KB

mixer.c

File metadata and controls

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