Skip to content

Latest commit

 

History

History
1610 lines (1486 loc) · 39.4 KB

music.c

File metadata and controls

1610 lines (1486 loc) · 39.4 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 2, 2016
Jan 2, 2016
3
Copyright (C) 1997-2016 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$ */
Dec 14, 2001
Dec 14, 2001
23
Oct 23, 1999
Oct 23, 1999
24
25
#include <stdlib.h>
#include <string.h>
Oct 16, 2001
Oct 16, 2001
26
#include <ctype.h>
Nov 19, 2005
Nov 19, 2005
27
#include <assert.h>
Dec 21, 1999
Dec 21, 1999
28
29
#include "SDL_endian.h"
#include "SDL_audio.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"
Jan 29, 2016
Jan 29, 2016
33
#include "mixer.h"
Oct 21, 1999
Oct 21, 1999
34
35
36
37
38
39
40
#ifdef CMD_MUSIC
#include "music_cmd.h"
#endif
#ifdef WAV_MUSIC
#include "wavestream.h"
#endif
Nov 16, 2009
Nov 16, 2009
41
42
43
#ifdef MODPLUG_MUSIC
#include "music_modplug.h"
#endif
Oct 3, 2009
Oct 3, 2009
44
45
#ifdef MOD_MUSIC
#include "music_mod.h"
Oct 21, 1999
Oct 21, 1999
46
47
#endif
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
48
49
50
# ifdef USE_TIMIDITY_MIDI
# include "timidity.h"
# endif
Mar 20, 2011
Mar 20, 2011
51
52
53
# ifdef USE_FLUIDSYNTH_MIDI
# include "fluidsynth.h"
# endif
Sep 5, 2001
Sep 5, 2001
54
55
56
# ifdef USE_NATIVE_MIDI
# include "native_midi.h"
# endif
Oct 21, 1999
Oct 21, 1999
57
#endif
Jul 3, 2000
Jul 3, 2000
58
59
60
#ifdef OGG_MUSIC
#include "music_ogg.h"
#endif
Oct 21, 1999
Oct 21, 1999
61
#ifdef MP3_MUSIC
May 12, 2006
May 12, 2006
62
#include "dynamic_mp3.h"
Jul 15, 2007
Jul 15, 2007
63
64
65
66
#endif
#ifdef MP3_MAD_MUSIC
#include "music_mad.h"
#endif
Feb 27, 2008
Feb 27, 2008
67
68
69
#ifdef FLAC_MUSIC
#include "music_flac.h"
#endif
Oct 21, 1999
Oct 21, 1999
70
Jul 15, 2007
Jul 15, 2007
71
#if defined(MP3_MUSIC) || defined(MP3_MAD_MUSIC)
Oct 21, 1999
Oct 21, 1999
72
73
74
static SDL_AudioSpec used_mixer;
#endif
Jul 15, 2007
Jul 15, 2007
75
Feb 1, 2000
Feb 1, 2000
76
77
int volatile music_active = 1;
static int volatile music_stopped = 0;
Oct 21, 1999
Oct 21, 1999
78
79
static int music_loops = 0;
static char *music_cmd = NULL;
Feb 1, 2000
Feb 1, 2000
80
static Mix_Music * volatile music_playing = NULL;
Nov 11, 1999
Nov 11, 1999
81
static int music_volume = MIX_MAX_VOLUME;
Oct 23, 1999
Oct 23, 1999
82
Oct 21, 1999
Oct 21, 1999
83
struct _Mix_Music {
May 22, 2013
May 22, 2013
84
85
Mix_MusicType type;
union {
Oct 21, 1999
Oct 21, 1999
86
#ifdef CMD_MUSIC
May 22, 2013
May 22, 2013
87
MusicCMD *cmd;
Oct 21, 1999
Oct 21, 1999
88
89
#endif
#ifdef WAV_MUSIC
May 22, 2013
May 22, 2013
90
WAVStream *wave;
Oct 21, 1999
Oct 21, 1999
91
#endif
Nov 16, 2009
Nov 16, 2009
92
#ifdef MODPLUG_MUSIC
May 22, 2013
May 22, 2013
93
modplug_data *modplug;
Nov 16, 2009
Nov 16, 2009
94
#endif
Oct 3, 2009
Oct 3, 2009
95
#ifdef MOD_MUSIC
May 22, 2013
May 22, 2013
96
struct MODULE *module;
Oct 21, 1999
Oct 21, 1999
97
98
#endif
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
99
#ifdef USE_TIMIDITY_MIDI
May 22, 2013
May 22, 2013
100
MidiSong *midi;
Sep 5, 2001
Sep 5, 2001
101
#endif
Mar 20, 2011
Mar 20, 2011
102
#ifdef USE_FLUIDSYNTH_MIDI
May 22, 2013
May 22, 2013
103
FluidSynthMidiSong *fluidsynthmidi;
Mar 20, 2011
Mar 20, 2011
104
#endif
Aug 19, 2001
Aug 19, 2001
105
#ifdef USE_NATIVE_MIDI
May 22, 2013
May 22, 2013
106
NativeMidiSong *nativemidi;
Aug 19, 2001
Aug 19, 2001
107
#endif
Oct 21, 1999
Oct 21, 1999
108
#endif
Jul 3, 2000
Jul 3, 2000
109
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
110
OGG_music *ogg;
Jul 3, 2000
Jul 3, 2000
111
#endif
Oct 21, 1999
Oct 21, 1999
112
#ifdef MP3_MUSIC
May 22, 2013
May 22, 2013
113
SMPEG *mp3;
Jul 15, 2007
Jul 15, 2007
114
115
#endif
#ifdef MP3_MAD_MUSIC
May 22, 2013
May 22, 2013
116
mad_data *mp3_mad;
Feb 27, 2008
Feb 27, 2008
117
118
#endif
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
119
FLAC_music *flac;
Oct 21, 1999
Oct 21, 1999
120
#endif
May 22, 2013
May 22, 2013
121
122
123
124
125
} data;
Mix_Fading fading;
int fade_step;
int fade_steps;
int error;
Oct 21, 1999
Oct 21, 1999
126
};
Dec 27, 1999
Dec 27, 1999
127
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
128
#ifdef USE_TIMIDITY_MIDI
Oct 21, 1999
Oct 21, 1999
129
static int timidity_ok;
Dec 17, 2001
Dec 17, 2001
130
static int samplesize;
Sep 5, 2001
Sep 5, 2001
131
#endif
Mar 20, 2011
Mar 20, 2011
132
133
134
#ifdef USE_FLUIDSYNTH_MIDI
static int fluidsynth_ok;
#endif
Aug 19, 2001
Aug 19, 2001
135
136
137
#ifdef USE_NATIVE_MIDI
static int native_midi_ok;
#endif
Dec 27, 1999
Dec 27, 1999
138
#endif
Oct 21, 1999
Oct 21, 1999
139
Nov 11, 1999
Nov 11, 1999
140
141
142
/* Used to calculate fading steps */
static int ms_per_step;
Jun 5, 2009
Jun 5, 2009
143
144
145
146
/* rcg06042009 report available decoders at runtime. */
static const char **music_decoders = NULL;
static int num_decoders = 0;
Mar 20, 2011
Mar 20, 2011
147
148
149
150
151
/* Semicolon-separated SoundFont paths */
#ifdef MID_MUSIC
char* soundfont_paths = NULL;
#endif
Nov 5, 2009
Nov 5, 2009
152
int Mix_GetNumMusicDecoders(void)
Jun 5, 2009
Jun 5, 2009
153
{
May 22, 2013
May 22, 2013
154
return(num_decoders);
Jun 5, 2009
Jun 5, 2009
155
156
157
158
}
const char *Mix_GetMusicDecoder(int index)
{
May 22, 2013
May 22, 2013
159
160
161
162
if ((index < 0) || (index >= num_decoders)) {
return NULL;
}
return(music_decoders[index]);
Jun 5, 2009
Jun 5, 2009
163
164
165
166
}
static void add_music_decoder(const char *decoder)
{
Jun 18, 2013
Jun 18, 2013
167
void *ptr = SDL_realloc((void *)music_decoders, (num_decoders + 1) * sizeof (const char *));
May 22, 2013
May 22, 2013
168
169
170
171
172
if (ptr == NULL) {
return; /* oh well, go on without it. */
}
music_decoders = (const char **) ptr;
music_decoders[num_decoders++] = decoder;
Jun 5, 2009
Jun 5, 2009
173
174
}
Oct 30, 1999
Oct 30, 1999
175
/* Local low-level functions prototypes */
Nov 9, 2003
Nov 9, 2003
176
static void music_internal_initialize_volume(void);
May 16, 2002
May 16, 2002
177
178
179
180
181
static void music_internal_volume(int volume);
static int music_internal_play(Mix_Music *music, double position);
static int music_internal_position(double position);
static int music_internal_playing();
static void music_internal_halt(void);
Oct 26, 1999
Oct 26, 1999
182
Dec 27, 1999
Dec 27, 1999
183
184
185
186
187
188
/* Support for hooking when the music has finished */
static void (*music_finished_hook)(void) = NULL;
void Mix_HookMusicFinished(void (*music_finished)(void))
{
Jan 29, 2016
Jan 29, 2016
189
Mix_LockAudio();
May 22, 2013
May 22, 2013
190
music_finished_hook = music_finished;
Jan 29, 2016
Jan 29, 2016
191
Mix_UnlockAudio();
Dec 27, 1999
Dec 27, 1999
192
193
194
}
Nov 19, 2005
Nov 19, 2005
195
/* If music isn't playing, halt it if no looping is required, restart it */
Jun 2, 2013
Jun 2, 2013
196
/* othesrchise. NOP if the music is playing */
Nov 19, 2005
Nov 19, 2005
197
198
static int music_halt_or_loop (void)
{
May 22, 2013
May 22, 2013
199
200
201
202
/* Restart music if it has to loop */
if (!music_internal_playing())
{
Jan 4, 2012
Jan 4, 2012
203
#ifdef USE_NATIVE_MIDI
May 22, 2013
May 22, 2013
204
205
206
207
208
209
210
211
212
213
/* Native MIDI handles looping internally */
if (music_playing->type == MUS_MID && native_midi_ok) {
music_loops = 0;
}
#endif
/* Restart music if it has to loop at a high level */
if (music_loops)
{
Mix_Fading current_fade;
Jul 9, 2013
Jul 9, 2013
214
215
216
if (music_loops > 0) {
--music_loops;
}
May 22, 2013
May 22, 2013
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
current_fade = music_playing->fading;
music_internal_play(music_playing, 0.0);
music_playing->fading = current_fade;
}
else
{
music_internal_halt();
if (music_finished_hook)
music_finished_hook();
return 0;
}
}
return 1;
Nov 19, 2005
Nov 19, 2005
232
233
234
235
}
Oct 21, 1999
Oct 21, 1999
236
237
238
/* Mixing function */
void music_mixer(void *udata, Uint8 *stream, int len)
{
May 22, 2013
May 22, 2013
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
int left = 0;
if ( music_playing && music_active ) {
/* Handle fading */
if ( music_playing->fading != MIX_NO_FADING ) {
if ( music_playing->fade_step++ < music_playing->fade_steps ) {
int volume;
int fade_step = music_playing->fade_step;
int fade_steps = music_playing->fade_steps;
if ( music_playing->fading == MIX_FADING_OUT ) {
volume = (music_volume * (fade_steps-fade_step)) / fade_steps;
} else { /* Fading in */
volume = (music_volume * fade_step) / fade_steps;
}
music_internal_volume(volume);
} else {
if ( music_playing->fading == MIX_FADING_OUT ) {
music_internal_halt();
if ( music_finished_hook ) {
music_finished_hook();
}
return;
}
music_playing->fading = MIX_NO_FADING;
}
}
music_halt_or_loop();
if (!music_internal_playing())
return;
switch (music_playing->type) {
Oct 21, 1999
Oct 21, 1999
272
#ifdef CMD_MUSIC
May 22, 2013
May 22, 2013
273
274
275
case MUS_CMD:
/* The playing is done externally */
break;
Oct 21, 1999
Oct 21, 1999
276
277
#endif
#ifdef WAV_MUSIC
May 22, 2013
May 22, 2013
278
279
280
case MUS_WAV:
left = WAVStream_PlaySome(stream, len);
break;
Oct 21, 1999
Oct 21, 1999
281
#endif
Nov 16, 2009
Nov 16, 2009
282
#ifdef MODPLUG_MUSIC
May 22, 2013
May 22, 2013
283
284
285
case MUS_MODPLUG:
left = modplug_playAudio(music_playing->data.modplug, stream, len);
break;
Nov 16, 2009
Nov 16, 2009
286
#endif
Oct 3, 2009
Oct 3, 2009
287
#ifdef MOD_MUSIC
May 22, 2013
May 22, 2013
288
289
290
case MUS_MOD:
left = MOD_playAudio(music_playing->data.module, stream, len);
break;
Oct 21, 1999
Oct 21, 1999
291
292
#endif
#ifdef MID_MUSIC
May 22, 2013
May 22, 2013
293
case MUS_MID:
Jan 1, 2012
Jan 1, 2012
294
#ifdef USE_NATIVE_MIDI
May 22, 2013
May 22, 2013
295
296
297
298
if ( native_midi_ok ) {
/* Native midi is handled asynchronously */
goto skip;
}
Jan 1, 2012
Jan 1, 2012
299
#endif
Mar 20, 2011
Mar 20, 2011
300
#ifdef USE_FLUIDSYNTH_MIDI
May 22, 2013
May 22, 2013
301
302
303
304
if ( fluidsynth_ok ) {
fluidsynth_playsome(music_playing->data.fluidsynthmidi, stream, len);
goto skip;
}
Mar 20, 2011
Mar 20, 2011
305
306
#endif
#ifdef USE_TIMIDITY_MIDI
May 22, 2013
May 22, 2013
307
308
309
310
311
if ( timidity_ok ) {
int samples = len / samplesize;
Timidity_PlaySome(stream, samples);
goto skip;
}
Oct 21, 1999
Oct 21, 1999
312
#endif
May 22, 2013
May 22, 2013
313
break;
Sep 5, 2001
Sep 5, 2001
314
#endif
Jul 3, 2000
Jul 3, 2000
315
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
316
317
318
319
case MUS_OGG:
left = OGG_playAudio(music_playing->data.ogg, stream, len);
break;
Jul 3, 2000
Jul 3, 2000
320
#endif
Feb 27, 2008
Feb 27, 2008
321
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
322
323
324
case MUS_FLAC:
left = FLAC_playAudio(music_playing->data.flac, stream, len);
break;
Feb 27, 2008
Feb 27, 2008
325
#endif
Oct 21, 1999
Oct 21, 1999
326
#ifdef MP3_MUSIC
May 22, 2013
May 22, 2013
327
328
329
case MUS_MP3:
left = (len - smpeg.SMPEG_playAudio(music_playing->data.mp3, stream, len));
break;
Jul 15, 2007
Jul 15, 2007
330
331
#endif
#ifdef MP3_MAD_MUSIC
May 22, 2013
May 22, 2013
332
333
334
case MUS_MP3_MAD:
left = mad_getSamples(music_playing->data.mp3_mad, stream, len);
break;
Oct 21, 1999
Oct 21, 1999
335
#endif
May 22, 2013
May 22, 2013
336
337
338
339
340
default:
/* Unknown music type?? */
break;
}
}
Oct 2, 2009
Oct 2, 2009
341
Jan 1, 2012
Jan 1, 2012
342
skip:
May 22, 2013
May 22, 2013
343
344
345
346
347
348
/* Handle seamless music looping */
if (left > 0 && left < len) {
music_halt_or_loop();
if (music_internal_playing())
music_mixer(udata, stream+(len-left), left);
}
Oct 21, 1999
Oct 21, 1999
349
350
351
352
353
354
}
/* Initialize the music players with a certain desired audio format */
int open_music(SDL_AudioSpec *mixer)
{
#ifdef WAV_MUSIC
May 22, 2013
May 22, 2013
355
356
357
if ( WAVStream_Init(mixer) == 0 ) {
add_music_decoder("WAVE");
}
Oct 21, 1999
Oct 21, 1999
358
#endif
Nov 16, 2009
Nov 16, 2009
359
#ifdef MODPLUG_MUSIC
May 22, 2013
May 22, 2013
360
361
362
if ( modplug_init(mixer) == 0 ) {
add_music_decoder("MODPLUG");
}
Nov 16, 2009
Nov 16, 2009
363
#endif
Oct 3, 2009
Oct 3, 2009
364
#ifdef MOD_MUSIC
May 22, 2013
May 22, 2013
365
366
367
if ( MOD_init(mixer) == 0 ) {
add_music_decoder("MIKMOD");
}
Oct 21, 1999
Oct 21, 1999
368
369
#endif
#ifdef MID_MUSIC
Sep 5, 2001
Sep 5, 2001
370
#ifdef USE_TIMIDITY_MIDI
May 22, 2013
May 22, 2013
371
372
373
374
375
376
377
378
samplesize = mixer->size / mixer->samples;
if ( Timidity_Init(mixer->freq, mixer->format,
mixer->channels, mixer->samples) == 0 ) {
timidity_ok = 1;
add_music_decoder("TIMIDITY");
} else {
timidity_ok = 0;
}
Sep 5, 2001
Sep 5, 2001
379
#endif
Mar 20, 2011
Mar 20, 2011
380
#ifdef USE_FLUIDSYNTH_MIDI
May 22, 2013
May 22, 2013
381
382
383
384
385
386
if ( fluidsynth_init(mixer) == 0 ) {
fluidsynth_ok = 1;
add_music_decoder("FLUIDSYNTH");
} else {
fluidsynth_ok = 0;
}
Mar 20, 2011
Mar 20, 2011
387
#endif
Aug 19, 2001
Aug 19, 2001
388
#ifdef USE_NATIVE_MIDI
Mar 20, 2011
Mar 20, 2011
389
#ifdef USE_FLUIDSYNTH_MIDI
May 22, 2013
May 22, 2013
390
391
native_midi_ok = !fluidsynth_ok;
if ( native_midi_ok )
Mar 20, 2011
Mar 20, 2011
392
#endif
Sep 5, 2001
Sep 5, 2001
393
#ifdef USE_TIMIDITY_MIDI
May 22, 2013
May 22, 2013
394
395
396
397
398
native_midi_ok = !timidity_ok;
if ( !native_midi_ok ) {
native_midi_ok = (getenv("SDL_NATIVE_MUSIC") != NULL);
}
if ( native_midi_ok )
Sep 5, 2001
Sep 5, 2001
399
#endif
May 22, 2013
May 22, 2013
400
401
402
native_midi_ok = native_midi_detect();
if ( native_midi_ok )
add_music_decoder("NATIVEMIDI");
Aug 19, 2001
Aug 19, 2001
403
#endif
Oct 21, 1999
Oct 21, 1999
404
#endif
Jul 3, 2000
Jul 3, 2000
405
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
406
407
408
if ( OGG_init(mixer) == 0 ) {
add_music_decoder("OGG");
}
Jul 3, 2000
Jul 3, 2000
409
#endif
Feb 27, 2008
Feb 27, 2008
410
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
411
412
413
if ( FLAC_init(mixer) == 0 ) {
add_music_decoder("FLAC");
}
Feb 27, 2008
Feb 27, 2008
414
#endif
Jul 15, 2007
Jul 15, 2007
415
#if defined(MP3_MUSIC) || defined(MP3_MAD_MUSIC)
May 22, 2013
May 22, 2013
416
417
418
/* Keep a copy of the mixer */
used_mixer = *mixer;
add_music_decoder("MP3");
Oct 21, 1999
Oct 21, 1999
419
#endif
Jun 5, 2009
Jun 5, 2009
420
May 22, 2013
May 22, 2013
421
422
423
music_playing = NULL;
music_stopped = 0;
Mix_VolumeMusic(SDL_MIX_MAXVOLUME);
Oct 21, 1999
Oct 21, 1999
424
May 22, 2013
May 22, 2013
425
426
/* Calculate the number of ms for each callback */
ms_per_step = (int) (((float)mixer->samples * 1000.0) / mixer->freq);
Nov 11, 1999
Nov 11, 1999
427
May 22, 2013
May 22, 2013
428
return(0);
Oct 21, 1999
Oct 21, 1999
429
430
}
Oct 16, 2001
Oct 16, 2001
431
432
433
/* Portable case-insensitive string compare function */
int MIX_string_equals(const char *str1, const char *str2)
{
May 22, 2013
May 22, 2013
434
435
436
437
438
439
440
441
while ( *str1 && *str2 ) {
if ( toupper((unsigned char)*str1) !=
toupper((unsigned char)*str2) )
break;
++str1;
++str2;
}
return (!*str1 && !*str2);
Oct 16, 2001
Oct 16, 2001
442
443
}
Jan 4, 2012
Jan 4, 2012
444
445
static int detect_mp3(Uint8 *magic)
{
May 22, 2013
May 22, 2013
446
447
448
449
450
451
452
453
454
455
456
457
458
459
if ( strncmp((char *)magic, "ID3", 3) == 0 ) {
return 1;
}
/* Detection code lifted from SMPEG */
if(((magic[0] & 0xff) != 0xff) || // No sync bits
((magic[1] & 0xf0) != 0xf0) || //
((magic[2] & 0xf0) == 0x00) || // Bitrate is 0
((magic[2] & 0xf0) == 0xf0) || // Bitrate is 15
((magic[2] & 0x0c) == 0x0c) || // Frequency is 3
((magic[1] & 0x06) == 0x00)) { // Layer is 4
return(0);
}
return 1;
Jan 4, 2012
Jan 4, 2012
460
461
462
463
464
465
466
}
/* MUS_MOD can't be auto-detected. If no other format was detected, MOD is
* assumed and MUS_MOD will be returned, meaning that the format might not
* actually be MOD-based.
*
* Returns MUS_NONE in case of errors. */
Jun 2, 2013
Jun 2, 2013
467
static Mix_MusicType detect_music_type(SDL_RWops *src)
Jan 4, 2012
Jan 4, 2012
468
{
May 22, 2013
May 22, 2013
469
470
471
Uint8 magic[5];
Uint8 moremagic[9];
Jun 2, 2013
Jun 2, 2013
472
473
Sint64 start = SDL_RWtell(src);
if (SDL_RWread(src, magic, 1, 4) != 4 || SDL_RWread(src, moremagic, 1, 8) != 8 ) {
May 22, 2013
May 22, 2013
474
475
476
Mix_SetError("Couldn't read from RWops");
return MUS_NONE;
}
Jun 2, 2013
Jun 2, 2013
477
SDL_RWseek(src, start, RW_SEEK_SET);
May 22, 2013
May 22, 2013
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
magic[4]='\0';
moremagic[8] = '\0';
/* WAVE files have the magic four bytes "RIFF"
AIFF files have the magic 12 bytes "FORM" XXXX "AIFF" */
if (((strcmp((char *)magic, "RIFF") == 0) && (strcmp((char *)(moremagic+4), "WAVE") == 0)) ||
(strcmp((char *)magic, "FORM") == 0)) {
return MUS_WAV;
}
/* Ogg Vorbis files have the magic four bytes "OggS" */
if (strcmp((char *)magic, "OggS") == 0) {
return MUS_OGG;
}
/* FLAC files have the magic four bytes "fLaC" */
if (strcmp((char *)magic, "fLaC") == 0) {
return MUS_FLAC;
}
/* MIDI files have the magic four bytes "MThd" */
if (strcmp((char *)magic, "MThd") == 0) {
return MUS_MID;
}
if (detect_mp3(magic)) {
return MUS_MP3;
}
/* Assume MOD format.
*
* Apparently there is no way to check if the file is really a MOD,
* or there are too many formats supported by MikMod/ModPlug, or
* MikMod/ModPlug does this check by itself. */
return MUS_MOD;
Jan 4, 2012
Jan 4, 2012
513
514
}
Oct 21, 1999
Oct 21, 1999
515
516
517
/* Load a music file */
Mix_Music *Mix_LoadMUS(const char *file)
{
Jun 2, 2013
Jun 2, 2013
518
SDL_RWops *src;
May 22, 2013
May 22, 2013
519
520
521
Mix_Music *music;
Mix_MusicType type;
char *ext = strrchr(file, '.');
Oct 21, 1999
Oct 21, 1999
522
Jan 4, 2012
Jan 4, 2012
523
#ifdef CMD_MUSIC
May 22, 2013
May 22, 2013
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
if ( music_cmd ) {
/* Allocate memory for the music structure */
music = (Mix_Music *)SDL_malloc(sizeof(Mix_Music));
if ( music == NULL ) {
Mix_SetError("Out of memory");
return(NULL);
}
music->error = 0;
music->type = MUS_CMD;
music->data.cmd = MusicCMD_LoadSong(music_cmd, file);
if ( music->data.cmd == NULL ) {
SDL_free(music);
music = NULL;
}
return music;
}
#endif
Jun 2, 2013
Jun 2, 2013
542
543
src = SDL_RWFromFile(file, "rb");
if ( src == NULL ) {
May 22, 2013
May 22, 2013
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
Mix_SetError("Couldn't open '%s'", file);
return NULL;
}
/* Use the extension as a first guess on the file type */
type = MUS_NONE;
ext = strrchr(file, '.');
/* No need to guard these with #ifdef *_MUSIC stuff,
* since we simply call Mix_LoadMUSType_RW() later */
if ( ext ) {
++ext; /* skip the dot in the extension */
if ( MIX_string_equals(ext, "WAV") ) {
type = MUS_WAV;
} else if ( MIX_string_equals(ext, "MID") ||
MIX_string_equals(ext, "MIDI") ||
MIX_string_equals(ext, "KAR") ) {
type = MUS_MID;
} else if ( MIX_string_equals(ext, "OGG") ) {
type = MUS_OGG;
} else if ( MIX_string_equals(ext, "FLAC") ) {
type = MUS_FLAC;
} else if ( MIX_string_equals(ext, "MPG") ||
MIX_string_equals(ext, "MPEG") ||
MIX_string_equals(ext, "MP3") ||
MIX_string_equals(ext, "MAD") ) {
type = MUS_MP3;
}
}
if ( type == MUS_NONE ) {
Jun 2, 2013
Jun 2, 2013
573
type = detect_music_type(src);
May 22, 2013
May 22, 2013
574
575
576
577
}
/* We need to know if a specific error occurs; if not, we'll set a
* generic one, so we clear the current one. */
Jun 26, 2014
Jun 26, 2014
578
SDL_ClearError();
Jun 2, 2013
Jun 2, 2013
579
music = Mix_LoadMUSType_RW(src, type, SDL_TRUE);
May 22, 2013
May 22, 2013
580
if ( music == NULL && Mix_GetError()[0] == '\0' ) {
Jun 2, 2013
Jun 2, 2013
581
Mix_SetError("Unrecognized music format");
May 22, 2013
May 22, 2013
582
583
}
return music;
Jan 4, 2012
Jan 4, 2012
584
585
}
Jun 2, 2013
Jun 2, 2013
586
Mix_Music *Mix_LoadMUS_RW(SDL_RWops *src, int freesrc)
Jan 4, 2012
Jan 4, 2012
587
{
Jun 2, 2013
Jun 2, 2013
588
return Mix_LoadMUSType_RW(src, MUS_NONE, freesrc);
Jan 4, 2012
Jan 4, 2012
589
590
}
Jun 2, 2013
Jun 2, 2013
591
Mix_Music *Mix_LoadMUSType_RW(SDL_RWops *src, Mix_MusicType type, int freesrc)
Jan 4, 2012
Jan 4, 2012
592
{
May 22, 2013
May 22, 2013
593
Mix_Music *music;
Jun 2, 2013
Jun 2, 2013
594
Sint64 start;
May 22, 2013
May 22, 2013
595
Jun 2, 2013
Jun 2, 2013
596
if (!src) {
May 22, 2013
May 22, 2013
597
598
599
Mix_SetError("RWops pointer is NULL");
return NULL;
}
Jun 2, 2013
Jun 2, 2013
600
start = SDL_RWtell(src);
May 22, 2013
May 22, 2013
601
602
603
604
/* If the caller wants auto-detection, figure out what kind of file
* this is. */
if (type == MUS_NONE) {
Jun 2, 2013
Jun 2, 2013
605
if ((type = detect_music_type(src)) == MUS_NONE) {
May 22, 2013
May 22, 2013
606
607
/* Don't call Mix_SetError() here since detect_music_type()
* does that. */
Jun 2, 2013
Jun 2, 2013
608
609
610
if (freesrc) {
SDL_RWclose(src);
}
May 22, 2013
May 22, 2013
611
612
613
614
615
616
617
618
return NULL;
}
}
/* Allocate memory for the music structure */
music = (Mix_Music *)SDL_malloc(sizeof(Mix_Music));
if (music == NULL ) {
Mix_SetError("Out of memory");
Jun 2, 2013
Jun 2, 2013
619
620
621
if (freesrc) {
SDL_RWclose(src);
}
May 22, 2013
May 22, 2013
622
623
return NULL;
}
Jun 2, 2013
Jun 2, 2013
624
music->error = 1;
May 22, 2013
May 22, 2013
625
626
switch (type) {
Oct 21, 1999
Oct 21, 1999
627
#ifdef WAV_MUSIC
May 22, 2013
May 22, 2013
628
case MUS_WAV:
Jun 2, 2013
Jun 2, 2013
629
630
631
632
music->type = MUS_WAV;
music->data.wave = WAVStream_LoadSong_RW(src, freesrc);
if (music->data.wave) {
music->error = 0;
May 22, 2013
May 22, 2013
633
634
}
break;
Oct 21, 1999
Oct 21, 1999
635
#endif
Jul 3, 2000
Jul 3, 2000
636
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
637
638
case MUS_OGG:
music->type = MUS_OGG;
Jun 2, 2013
Jun 2, 2013
639
640
641
music->data.ogg = OGG_new_RW(src, freesrc);
if (music->data.ogg) {
music->error = 0;
May 22, 2013
May 22, 2013
642
643
}
break;
Jul 3, 2000
Jul 3, 2000
644
#endif
Feb 27, 2008
Feb 27, 2008
645
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
646
647
case MUS_FLAC:
music->type = MUS_FLAC;
Jun 2, 2013
Jun 2, 2013
648
649
650
music->data.flac = FLAC_new_RW(src, freesrc);
if (music->data.flac) {
music->error = 0;
May 22, 2013
May 22, 2013
651
652
}
break;
Feb 27, 2008
Feb 27, 2008
653
#endif
Oct 21, 1999
Oct 21, 1999
654
#ifdef MP3_MUSIC
May 22, 2013
May 22, 2013
655
case MUS_MP3:
Jun 2, 2013
Jun 2, 2013
656
if (Mix_Init(MIX_INIT_MP3)) {
May 22, 2013
May 22, 2013
657
658
SMPEG_Info info;
music->type = MUS_MP3;
Jun 2, 2013
Jun 2, 2013
659
660
music->data.mp3 = smpeg.SMPEG_new_rwops(src, &info, freesrc, 0);
if (!info.has_audio) {
May 22, 2013
May 22, 2013
661
Mix_SetError("MPEG file does not have any audio stream.");
Jun 2, 2013
Jun 2, 2013
662
663
664
smpeg.SMPEG_delete(music->data.mp3);
/* Deleting the MP3 closed the source if desired */
freesrc = SDL_FALSE;
May 22, 2013
May 22, 2013
665
666
} else {
smpeg.SMPEG_actualSpec(music->data.mp3, &used_mixer);
Jun 2, 2013
Jun 2, 2013
667
music->error = 0;
May 22, 2013
May 22, 2013
668
669
670
}
}
break;
Jan 4, 2012
Jan 4, 2012
671
#elif defined(MP3_MAD_MUSIC)
May 22, 2013
May 22, 2013
672
673
case MUS_MP3:
music->type = MUS_MP3_MAD;
Jun 2, 2013
Jun 2, 2013
674
675
676
677
music->data.mp3_mad = mad_openFileRW(src, &used_mixer, freesrc);
if (music->data.mp3_mad) {
music->error = 0;
} else {
May 22, 2013
May 22, 2013
678
679
680
Mix_SetError("Could not initialize MPEG stream.");
}
break;
Jul 15, 2007
Jul 15, 2007
681
#endif
Jan 4, 2012
Jan 4, 2012
682
#ifdef MID_MUSIC
May 22, 2013
May 22, 2013
683
684
case MUS_MID:
music->type = MUS_MID;
Jan 4, 2012
Jan 4, 2012
685
#ifdef USE_NATIVE_MIDI
Jun 2, 2013
Jun 2, 2013
686
687
688
689
690
691
if (native_midi_ok) {
SDL_RWseek(src, start, RW_SEEK_SET);
music->data.nativemidi = native_midi_loadsong_RW(src, freesrc);
if (music->data.nativemidi) {
music->error = 0;
} else {
May 22, 2013
May 22, 2013
692
693
694
695
Mix_SetError("%s", native_midi_error());
}
break;
}
Jan 4, 2012
Jan 4, 2012
696
697
#endif
#ifdef USE_FLUIDSYNTH_MIDI
Jun 2, 2013
Jun 2, 2013
698
699
700
701
702
if (fluidsynth_ok) {
SDL_RWseek(src, start, RW_SEEK_SET);
music->data.fluidsynthmidi = fluidsynth_loadsong_RW(src, freesrc);
if (music->data.fluidsynthmidi) {
music->error = 0;
May 22, 2013
May 22, 2013
703
704
705
}
break;
}
Jan 4, 2012
Jan 4, 2012
706
707
#endif
#ifdef USE_TIMIDITY_MIDI
Jun 2, 2013
Jun 2, 2013
708
709
710
711
712
713
if (timidity_ok) {
SDL_RWseek(src, start, RW_SEEK_SET);
music->data.midi = Timidity_LoadSong_RW(src, freesrc);
if (music->data.midi) {
music->error = 0;
} else {
May 22, 2013
May 22, 2013
714
715
716
717
718
719
720
Mix_SetError("%s", Timidity_Error());
}
} else {
Mix_SetError("%s", Timidity_Error());
}
#endif
break;
Jan 4, 2012
Jan 4, 2012
721
722
#endif
#if defined(MODPLUG_MUSIC) || defined(MOD_MUSIC)
May 22, 2013
May 22, 2013
723
case MUS_MOD:
Jan 4, 2012
Jan 4, 2012
724
#ifdef MODPLUG_MUSIC
Jun 2, 2013
Jun 2, 2013
725
726
if (music->error) {
SDL_RWseek(src, start, RW_SEEK_SET);
May 22, 2013
May 22, 2013
727
music->type = MUS_MODPLUG;
Jun 2, 2013
Jun 2, 2013
728
729
music->data.modplug = modplug_new_RW(src, freesrc);
if (music->data.modplug) {
May 22, 2013
May 22, 2013
730
731
732
music->error = 0;
}
}
Nov 16, 2009
Nov 16, 2009
733
#endif
Oct 3, 2009
Oct 3, 2009
734
#ifdef MOD_MUSIC
Jun 2, 2013
Jun 2, 2013
735
736
if (music->error) {
SDL_RWseek(src, start, RW_SEEK_SET);
May 22, 2013
May 22, 2013
737
music->type = MUS_MOD;
Jun 2, 2013
Jun 2, 2013
738
739
music->data.module = MOD_new_RW(src, freesrc);
if (music->data.module) {
May 22, 2013
May 22, 2013
740
741
742
music->error = 0;
}
}
Oct 21, 1999
Oct 21, 1999
743
#endif
May 22, 2013
May 22, 2013
744
break;
Jan 4, 2012
Jan 4, 2012
745
746
#endif
May 22, 2013
May 22, 2013
747
748
default:
Mix_SetError("Unrecognized music format");
Jun 2, 2013
Jun 2, 2013
749
break;
May 22, 2013
May 22, 2013
750
} /* switch (want) */
Mar 20, 2011
Mar 20, 2011
751
May 22, 2013
May 22, 2013
752
753
if (music->error) {
SDL_free(music);
Jun 2, 2013
Jun 2, 2013
754
755
756
757
758
759
if (freesrc) {
SDL_RWclose(src);
} else {
SDL_RWseek(src, start, RW_SEEK_SET);
}
music = NULL;
May 22, 2013
May 22, 2013
760
}
Jun 2, 2013
Jun 2, 2013
761
return music;
Oct 21, 1999
Oct 21, 1999
762
763
764
765
766
}
/* Free a music chunk previously loaded */
void Mix_FreeMusic(Mix_Music *music)
{
May 22, 2013
May 22, 2013
767
768
if ( music ) {
/* Stop the music if it's currently playing */
Jan 29, 2016
Jan 29, 2016
769
Mix_LockAudio();
May 22, 2013
May 22, 2013
770
771
772
if ( music == music_playing ) {
/* Wait for any fade out to finish */
while ( music->fading == MIX_FADING_OUT ) {
Jan 29, 2016
Jan 29, 2016
773
Mix_UnlockAudio();
May 22, 2013
May 22, 2013
774
SDL_Delay(100);
Jan 29, 2016
Jan 29, 2016
775
Mix_LockAudio();
May 22, 2013
May 22, 2013
776
777
778
779
780
}
if ( music == music_playing ) {
music_internal_halt();
}
}
Jan 29, 2016
Jan 29, 2016
781
Mix_UnlockAudio();
May 22, 2013
May 22, 2013
782
switch (music->type) {
Oct 21, 1999
Oct 21, 1999
783
#ifdef CMD_MUSIC
May 22, 2013
May 22, 2013
784
785
786
case MUS_CMD:
MusicCMD_FreeSong(music->data.cmd);
break;
Oct 21, 1999
Oct 21, 1999
787
788
#endif
#ifdef WAV_MUSIC
May 22, 2013
May 22, 2013
789
790
791
case MUS_WAV:
WAVStream_FreeSong(music->data.wave);
break;
Oct 21, 1999
Oct 21, 1999
792
#endif
Nov 16, 2009
Nov 16, 2009
793
#ifdef MODPLUG_MUSIC
May 22, 2013
May 22, 2013
794
795
796
case MUS_MODPLUG:
modplug_delete(music->data.modplug);
break;
Nov 16, 2009
Nov 16, 2009
797
#endif
Oct 3, 2009
Oct 3, 2009
798
#ifdef MOD_MUSIC
May 22, 2013
May 22, 2013
799
800
801
case MUS_MOD:
MOD_delete(music->data.module);
break;
Oct 21, 1999
Oct 21, 1999
802
803
#endif
#ifdef MID_MUSIC
May 22, 2013
May 22, 2013
804
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
805
#ifdef USE_NATIVE_MIDI
May 22, 2013
May 22, 2013
806
807
808
809
if ( native_midi_ok ) {
native_midi_freesong(music->data.nativemidi);
goto skip;
}
Mar 20, 2011
Mar 20, 2011
810
811
#endif
#ifdef USE_FLUIDSYNTH_MIDI
May 22, 2013
May 22, 2013
812
813
814
815
if ( fluidsynth_ok ) {
fluidsynth_freesong(music->data.fluidsynthmidi);
goto skip;
}
Aug 19, 2001
Aug 19, 2001
816
#endif
Sep 5, 2001
Sep 5, 2001
817
#ifdef USE_TIMIDITY_MIDI
May 22, 2013
May 22, 2013
818
819
820
821
if ( timidity_ok ) {
Timidity_FreeSong(music->data.midi);
goto skip;
}
Sep 5, 2001
Sep 5, 2001
822
#endif
May 22, 2013
May 22, 2013
823
break;
Oct 21, 1999
Oct 21, 1999
824
#endif
Jul 3, 2000
Jul 3, 2000
825
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
826
827
828
case MUS_OGG:
OGG_delete(music->data.ogg);
break;
Jul 3, 2000
Jul 3, 2000
829
#endif
Feb 27, 2008
Feb 27, 2008
830
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
831
832
833
case MUS_FLAC:
FLAC_delete(music->data.flac);
break;
Feb 27, 2008
Feb 27, 2008
834
#endif
Oct 21, 1999
Oct 21, 1999
835
#ifdef MP3_MUSIC
May 22, 2013
May 22, 2013
836
837
838
case MUS_MP3:
smpeg.SMPEG_delete(music->data.mp3);
break;
Jul 15, 2007
Jul 15, 2007
839
840
#endif
#ifdef MP3_MAD_MUSIC
May 22, 2013
May 22, 2013
841
842
843
case MUS_MP3_MAD:
mad_closeFile(music->data.mp3_mad);
break;
Oct 21, 1999
Oct 21, 1999
844
#endif
May 22, 2013
May 22, 2013
845
846
847
848
default:
/* Unknown music type?? */
break;
}
Mar 20, 2011
Mar 20, 2011
849
850
skip:
May 22, 2013
May 22, 2013
851
852
SDL_free(music);
}
Oct 21, 1999
Oct 21, 1999
853
854
}
May 19, 2002
May 19, 2002
855
856
857
858
859
/* Find out the music format of a mixer music, or the currently playing
music, if 'music' is NULL.
*/
Mix_MusicType Mix_GetMusicType(const Mix_Music *music)
{
May 22, 2013
May 22, 2013
860
861
862
863
864
Mix_MusicType type = MUS_NONE;
if ( music ) {
type = music->type;
} else {
Jan 29, 2016
Jan 29, 2016
865
Mix_LockAudio();
May 22, 2013
May 22, 2013
866
867
868
if ( music_playing ) {
type = music_playing->type;
}
Jan 29, 2016
Jan 29, 2016
869
Mix_UnlockAudio();
May 22, 2013
May 22, 2013
870
871
}
return(type);
May 19, 2002
May 19, 2002
872
873
}
May 16, 2002
May 16, 2002
874
875
876
/* Play a music chunk. Returns 0, or -1 if there was an error.
*/
static int music_internal_play(Mix_Music *music, double position)
Oct 21, 1999
Oct 21, 1999
877
{
May 22, 2013
May 22, 2013
878
int retval = 0;
May 16, 2002
May 16, 2002
879
Jan 6, 2012
Jan 6, 2012
880
#if defined(__MACOSX__) && defined(USE_NATIVE_MIDI)
May 22, 2013
May 22, 2013
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
/* This fixes a bug with native MIDI on Mac OS X, where you
can't really stop and restart MIDI from the audio callback.
*/
if ( music == music_playing && music->type == MUS_MID && native_midi_ok ) {
/* Just a seek suffices to restart playing */
music_internal_position(position);
return 0;
}
#endif
/* Note the music we're playing */
if ( music_playing ) {
music_internal_halt();
}
music_playing = music;
/* Set the initial volume */
if ( music->type != MUS_MOD ) {
music_internal_initialize_volume();
}
/* Set up for playback */
switch (music->type) {
Oct 21, 1999
Oct 21, 1999
904
#ifdef CMD_MUSIC
May 22, 2013
May 22, 2013
905
906
907
case MUS_CMD:
MusicCMD_Start(music->data.cmd);
break;
Oct 21, 1999
Oct 21, 1999
908
909
#endif
#ifdef WAV_MUSIC
May 22, 2013
May 22, 2013
910
911
912
case MUS_WAV:
WAVStream_Start(music->data.wave);
break;
Oct 21, 1999
Oct 21, 1999
913
#endif
Nov 16, 2009
Nov 16, 2009
914
#ifdef MODPLUG_MUSIC
May 22, 2013
May 22, 2013
915
916
917
918
919
case MUS_MODPLUG:
/* can't set volume until file is loaded, so finally set it now */
music_internal_initialize_volume();
modplug_play(music->data.modplug);
break;
Nov 16, 2009
Nov 16, 2009
920
#endif
Oct 3, 2009
Oct 3, 2009
921
#ifdef MOD_MUSIC
May 22, 2013
May 22, 2013
922
923
924
925
926
case MUS_MOD:
MOD_play(music->data.module);
/* Player_SetVolume() does nothing before Player_Start() */
music_internal_initialize_volume();
break;
Oct 21, 1999
Oct 21, 1999
927
928
#endif
#ifdef MID_MUSIC
May 22, 2013
May 22, 2013
929
case MUS_MID:
Aug 19, 2001
Aug 19, 2001
930
#ifdef USE_NATIVE_MIDI
May 22, 2013
May 22, 2013
931
932
933
934
if ( native_midi_ok ) {
native_midi_start(music->data.nativemidi, music_loops);
goto skip;
}
Mar 20, 2011
Mar 20, 2011
935
936
#endif
#ifdef USE_FLUIDSYNTH_MIDI
May 22, 2013
May 22, 2013
937
938
939
940
if (fluidsynth_ok ) {
fluidsynth_start(music->data.fluidsynthmidi);
goto skip;
}
Aug 19, 2001
Aug 19, 2001
941
#endif
Sep 5, 2001
Sep 5, 2001
942
#ifdef USE_TIMIDITY_MIDI
May 22, 2013
May 22, 2013
943
944
945
946
if ( timidity_ok ) {
Timidity_Start(music->data.midi);
goto skip;
}
Sep 5, 2001
Sep 5, 2001
947
#endif
May 22, 2013
May 22, 2013
948
break;
Oct 21, 1999
Oct 21, 1999
949
#endif
Jul 3, 2000
Jul 3, 2000
950
#ifdef OGG_MUSIC
May 22, 2013
May 22, 2013
951
952
953
case MUS_OGG:
OGG_play(music->data.ogg);
break;
Jul 3, 2000
Jul 3, 2000
954
#endif
Feb 27, 2008
Feb 27, 2008
955
#ifdef FLAC_MUSIC
May 22, 2013
May 22, 2013
956
957
958
case MUS_FLAC:
FLAC_play(music->data.flac);
break;
Feb 27, 2008
Feb 27, 2008
959
#endif
Oct 21, 1999
Oct 21, 1999
960
#ifdef MP3_MUSIC
May 22, 2013
May 22, 2013
961
962
963
964
965
case MUS_MP3:
smpeg.SMPEG_enableaudio(music->data.mp3,1);
smpeg.SMPEG_enablevideo(music->data.mp3,0);
smpeg.SMPEG_play(music_playing->data.mp3);
break;
Jul 15, 2007
Jul 15, 2007
966
967
#endif
#ifdef MP3_MAD_MUSIC
May 22, 2013
May 22, 2013
968
969
970
case MUS_MP3_MAD:
mad_start(music->data.mp3_mad);
break;
Oct 21, 1999
Oct 21, 1999
971
#endif
May 22, 2013
May 22, 2013
972
973
974
975
976
default:
Mix_SetError("Can't play unknown music type");
retval = -1;
break;
}
Oct 30, 1999
Oct 30, 1999
977
Mar 20, 2011
Mar 20, 2011
978
skip:
May 22, 2013
May 22, 2013
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
/* Set the playback position, note any errors if an offset is used */
if ( retval == 0 ) {
if ( position > 0.0 ) {
if ( music_internal_position(position) < 0 ) {
Mix_SetError("Position not implemented for music type");
retval = -1;
}
} else {
music_internal_position(0.0);
}
}
/* If the setup failed, we're not playing any music anymore */
if ( retval < 0 ) {
music_playing = NULL;
}
return(retval);
May 16, 2002
May 16, 2002
996
997
}
int Mix_FadeInMusicPos(Mix_Music *music, int loops, int ms, double position)
Oct 30, 1999
Oct 30, 1999
998
{
May 22, 2013
May 22, 2013
999
1000
int retval;