Skip to content

Latest commit

 

History

History
575 lines (494 loc) · 19.7 KB

music_flac.c

File metadata and controls

575 lines (494 loc) · 19.7 KB
 
Dec 31, 2011
Dec 31, 2011
2
SDL_mixer: An audio mixer library based on the SDL library
Jan 2, 2017
Jan 2, 2017
3
Copyright (C) 1997-2017 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
20
21
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.
This file is used to support SDL_LoadMUS playback of FLAC files.
May 22, 2013
May 22, 2013
22
~ Austen Dicken (admin@cvpcs.org)
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
*/
#ifdef FLAC_MUSIC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "SDL_mixer.h"
#include "dynamic_flac.h"
#include "music_flac.h"
/* This is the format of the audio mixer data */
static SDL_AudioSpec mixer;
/* Initialize the FLAC player, with the given mixer settings
This function returns 0, or -1 if there was an error.
*/
Oct 3, 2009
Oct 3, 2009
41
42
int FLAC_init(SDL_AudioSpec *mixerfmt)
{
May 22, 2013
May 22, 2013
43
44
mixer = *mixerfmt;
return(0);
45
46
47
}
/* Set the volume for an FLAC stream */
Oct 3, 2009
Oct 3, 2009
48
49
void FLAC_setvolume(FLAC_music *music, int volume)
{
May 22, 2013
May 22, 2013
50
music->volume = volume;
51
52
53
}
static FLAC__StreamDecoderReadStatus flac_read_music_cb(
May 22, 2013
May 22, 2013
54
55
56
57
const FLAC__StreamDecoder *decoder,
FLAC__byte buffer[],
size_t *bytes,
void *client_data)
Oct 3, 2009
Oct 3, 2009
58
{
May 22, 2013
May 22, 2013
59
60
61
62
FLAC_music *data = (FLAC_music*)client_data;
// make sure there is something to be reading
if (*bytes > 0) {
Jun 2, 2013
Jun 2, 2013
63
*bytes = SDL_RWread (data->src, buffer, sizeof (FLAC__byte), *bytes);
May 22, 2013
May 22, 2013
64
65
66
if (*bytes == 0 ) { // error or no data was read (EOF)
return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM;
Jun 1, 2013
Jun 1, 2013
67
} else { // data was read, continue
May 22, 2013
May 22, 2013
68
69
return FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
}
Jun 1, 2013
Jun 1, 2013
70
} else {
May 22, 2013
May 22, 2013
71
72
return FLAC__STREAM_DECODER_READ_STATUS_ABORT;
}
73
74
75
}
static FLAC__StreamDecoderSeekStatus flac_seek_music_cb(
May 22, 2013
May 22, 2013
76
77
78
const FLAC__StreamDecoder *decoder,
FLAC__uint64 absolute_byte_offset,
void *client_data)
Oct 3, 2009
Oct 3, 2009
79
{
May 22, 2013
May 22, 2013
80
81
FLAC_music *data = (FLAC_music*)client_data;
Jun 2, 2013
Jun 2, 2013
82
if (SDL_RWseek (data->src, absolute_byte_offset, RW_SEEK_SET) < 0) {
May 22, 2013
May 22, 2013
83
return FLAC__STREAM_DECODER_SEEK_STATUS_ERROR;
Jun 1, 2013
Jun 1, 2013
84
} else {
May 22, 2013
May 22, 2013
85
86
return FLAC__STREAM_DECODER_SEEK_STATUS_OK;
}
87
88
89
}
static FLAC__StreamDecoderTellStatus flac_tell_music_cb(
May 22, 2013
May 22, 2013
90
91
92
const FLAC__StreamDecoder *decoder,
FLAC__uint64 *absolute_byte_offset,
void *client_data )
Oct 3, 2009
Oct 3, 2009
93
{
May 22, 2013
May 22, 2013
94
FLAC_music *data = (FLAC_music*)client_data;
Jun 2, 2013
Jun 2, 2013
96
Sint64 pos = SDL_RWtell (data->src);
May 22, 2013
May 22, 2013
98
99
if (pos < 0) {
return FLAC__STREAM_DECODER_TELL_STATUS_ERROR;
Jun 1, 2013
Jun 1, 2013
100
} else {
May 22, 2013
May 22, 2013
101
102
103
*absolute_byte_offset = (FLAC__uint64)pos;
return FLAC__STREAM_DECODER_TELL_STATUS_OK;
}
104
105
106
}
static FLAC__StreamDecoderLengthStatus flac_length_music_cb (
May 22, 2013
May 22, 2013
107
108
109
const FLAC__StreamDecoder *decoder,
FLAC__uint64 *stream_length,
void *client_data)
Oct 3, 2009
Oct 3, 2009
110
{
May 22, 2013
May 22, 2013
111
112
FLAC_music *data = (FLAC_music*)client_data;
Jun 2, 2013
Jun 2, 2013
113
114
Sint64 pos = SDL_RWtell (data->src);
Sint64 length = SDL_RWseek (data->src, 0, RW_SEEK_END);
May 22, 2013
May 22, 2013
115
Jun 2, 2013
Jun 2, 2013
116
if (SDL_RWseek (data->src, pos, RW_SEEK_SET) != pos || length < 0) {
May 22, 2013
May 22, 2013
117
118
119
/* there was an error attempting to return the stream to the original
* position, or the length was invalid. */
return FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR;
Jun 1, 2013
Jun 1, 2013
120
} else {
May 22, 2013
May 22, 2013
121
122
123
*stream_length = (FLAC__uint64)length;
return FLAC__STREAM_DECODER_LENGTH_STATUS_OK;
}
124
125
126
}
static FLAC__bool flac_eof_music_cb(
May 22, 2013
May 22, 2013
127
128
const FLAC__StreamDecoder *decoder,
void *client_data )
Oct 3, 2009
Oct 3, 2009
129
{
May 22, 2013
May 22, 2013
130
131
FLAC_music *data = (FLAC_music*)client_data;
Jun 2, 2013
Jun 2, 2013
132
133
Sint64 pos = SDL_RWtell (data->src);
Sint64 end = SDL_RWseek (data->src, 0, RW_SEEK_END);
May 22, 2013
May 22, 2013
134
135
136
137
138
// was the original position equal to the end (a.k.a. the seek didn't move)?
if (pos == end) {
// must be EOF
return true;
Jun 1, 2013
Jun 1, 2013
139
} else {
May 22, 2013
May 22, 2013
140
// not EOF, return to the original position
Jun 2, 2013
Jun 2, 2013
141
SDL_RWseek (data->src, pos, RW_SEEK_SET);
May 22, 2013
May 22, 2013
142
143
return false;
}
144
145
146
}
static FLAC__StreamDecoderWriteStatus flac_write_music_cb(
May 22, 2013
May 22, 2013
147
148
149
150
const FLAC__StreamDecoder *decoder,
const FLAC__Frame *frame,
const FLAC__int32 *const buffer[],
void *client_data)
Oct 3, 2009
Oct 3, 2009
151
{
May 22, 2013
May 22, 2013
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
FLAC_music *data = (FLAC_music *)client_data;
size_t i;
if (data->flac_data.total_samples == 0) {
SDL_SetError ("Given FLAC file does not specify its sample count.");
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
}
if (data->flac_data.channels != 2 ||
data->flac_data.bits_per_sample != 16) {
SDL_SetError("Current FLAC support is only for 16 bit Stereo files.");
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
}
for (i = 0; i < frame->header.blocksize; i++) {
FLAC__int16 i16;
FLAC__uint16 ui16;
// make sure we still have at least two bytes that can be read (one for
// each channel)
if (data->flac_data.max_to_read >= 4) {
// does the data block exist?
if (!data->flac_data.data) {
data->flac_data.data_len = data->flac_data.max_to_read;
data->flac_data.data_read = 0;
// create it
data->flac_data.data =
(char *)SDL_malloc (data->flac_data.data_len);
if (!data->flac_data.data) {
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
}
}
i16 = (FLAC__int16)buffer[0][i];
ui16 = (FLAC__uint16)i16;
*((data->flac_data.data) + (data->flac_data.data_read++)) =
(char)(ui16);
*((data->flac_data.data) + (data->flac_data.data_read++)) =
(char)(ui16 >> 8);
i16 = (FLAC__int16)buffer[1][i];
ui16 = (FLAC__uint16)i16;
*((data->flac_data.data) + (data->flac_data.data_read++)) =
(char)(ui16);
*((data->flac_data.data) + (data->flac_data.data_read++)) =
(char)(ui16 >> 8);
data->flac_data.max_to_read -= 4;
if (data->flac_data.max_to_read < 4) {
// we need to set this so that the read halts from the
// FLAC_getsome function.
data->flac_data.max_to_read = 0;
}
}
else {
// we need to write to the overflow
if (!data->flac_data.overflow) {
Oct 13, 2017
Oct 13, 2017
214
data->flac_data.overflow_len = (int)(4 * (frame->header.blocksize - i));
May 22, 2013
May 22, 2013
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
data->flac_data.overflow_read = 0;
// make it big enough for the rest of the block
data->flac_data.overflow =
(char *)SDL_malloc (data->flac_data.overflow_len);
if (!data->flac_data.overflow) {
return FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
}
}
i16 = (FLAC__int16)buffer[0][i];
ui16 = (FLAC__uint16)i16;
*((data->flac_data.overflow) + (data->flac_data.overflow_read++)) =
(char)(ui16);
*((data->flac_data.overflow) + (data->flac_data.overflow_read++)) =
(char)(ui16 >> 8);
i16 = (FLAC__int16)buffer[1][i];
ui16 = (FLAC__uint16)i16;
*((data->flac_data.overflow) + (data->flac_data.overflow_read++)) =
(char)(ui16);
*((data->flac_data.overflow) + (data->flac_data.overflow_read++)) =
(char)(ui16 >> 8);
}
}
return FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
245
246
247
}
static void flac_metadata_music_cb(
May 22, 2013
May 22, 2013
248
249
250
const FLAC__StreamDecoder *decoder,
const FLAC__StreamMetadata *metadata,
void *client_data)
Oct 3, 2009
Oct 3, 2009
251
{
May 22, 2013
May 22, 2013
252
253
254
255
256
257
258
259
260
261
262
263
FLAC_music *data = (FLAC_music *)client_data;
if (metadata->type == FLAC__METADATA_TYPE_STREAMINFO) {
data->flac_data.sample_rate = metadata->data.stream_info.sample_rate;
data->flac_data.channels = metadata->data.stream_info.channels;
data->flac_data.total_samples =
metadata->data.stream_info.total_samples;
data->flac_data.bits_per_sample =
metadata->data.stream_info.bits_per_sample;
data->flac_data.sample_size = data->flac_data.channels *
((data->flac_data.bits_per_sample) / 8);
}
264
265
266
}
static void flac_error_music_cb(
May 22, 2013
May 22, 2013
267
268
269
const FLAC__StreamDecoder *decoder,
FLAC__StreamDecoderErrorStatus status,
void *client_data)
Oct 3, 2009
Oct 3, 2009
270
{
May 22, 2013
May 22, 2013
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
// print an SDL error based on the error status
switch (status) {
case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC:
SDL_SetError ("Error processing the FLAC file [LOST_SYNC].");
break;
case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER:
SDL_SetError ("Error processing the FLAC file [BAD_HEADER].");
break;
case FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH:
SDL_SetError ("Error processing the FLAC file [CRC_MISMATCH].");
break;
case FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM:
SDL_SetError ("Error processing the FLAC file [UNPARSEABLE].");
break;
default:
SDL_SetError ("Error processing the FLAC file [UNKNOWN].");
break;
}
289
290
291
}
/* Load an FLAC stream from an SDL_RWops object */
Jun 2, 2013
Jun 2, 2013
292
FLAC_music *FLAC_new_RW(SDL_RWops *src, int freesrc)
Oct 3, 2009
Oct 3, 2009
293
{
May 22, 2013
May 22, 2013
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
FLAC_music *music;
int init_stage = 0;
int was_error = 1;
if (!Mix_Init(MIX_INIT_FLAC)) {
return NULL;
}
music = (FLAC_music *)SDL_malloc ( sizeof (*music));
if (music) {
/* Initialize the music structure */
memset (music, 0, (sizeof (*music)));
FLAC_stop (music);
FLAC_setvolume (music, MIX_MAX_VOLUME);
music->section = -1;
Jun 2, 2013
Jun 2, 2013
309
310
music->src = src;
music->freesrc = freesrc;
May 22, 2013
May 22, 2013
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
music->flac_data.max_to_read = 0;
music->flac_data.overflow = NULL;
music->flac_data.overflow_len = 0;
music->flac_data.overflow_read = 0;
music->flac_data.data = NULL;
music->flac_data.data_len = 0;
music->flac_data.data_read = 0;
init_stage++; // stage 1!
music->flac_decoder = flac.FLAC__stream_decoder_new ();
if (music->flac_decoder != NULL) {
init_stage++; // stage 2!
if (flac.FLAC__stream_decoder_init_stream(
music->flac_decoder,
flac_read_music_cb, flac_seek_music_cb,
flac_tell_music_cb, flac_length_music_cb,
flac_eof_music_cb, flac_write_music_cb,
flac_metadata_music_cb, flac_error_music_cb,
music) == FLAC__STREAM_DECODER_INIT_STATUS_OK ) {
init_stage++; // stage 3!
if (flac.FLAC__stream_decoder_process_until_end_of_metadata
(music->flac_decoder)) {
was_error = 0;
} else {
SDL_SetError("FLAC__stream_decoder_process_until_end_of_metadata() failed");
}
} else {
SDL_SetError("FLAC__stream_decoder_init_stream() failed");
}
} else {
SDL_SetError("FLAC__stream_decoder_new() failed");
}
if (was_error) {
switch (init_stage) {
case 3:
flac.FLAC__stream_decoder_finish( music->flac_decoder );
case 2:
flac.FLAC__stream_decoder_delete( music->flac_decoder );
case 1:
case 0:
SDL_free(music);
break;
}
return NULL;
}
} else {
SDL_OutOfMemory();
return NULL;
}
return music;
367
368
369
}
/* Start playback of a given FLAC stream */
Oct 3, 2009
Oct 3, 2009
370
371
void FLAC_play(FLAC_music *music)
{
May 22, 2013
May 22, 2013
372
music->playing = 1;
373
374
375
}
/* Return non-zero if a stream is currently playing */
Oct 3, 2009
Oct 3, 2009
376
377
int FLAC_playing(FLAC_music *music)
{
May 22, 2013
May 22, 2013
378
return(music->playing);
379
380
381
}
/* Read some FLAC stream data and convert it for output */
Oct 3, 2009
Oct 3, 2009
382
383
static void FLAC_getsome(FLAC_music *music)
{
May 22, 2013
May 22, 2013
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
SDL_AudioCVT *cvt;
/* GET AUDIO WAVE DATA */
// set the max number of characters to read
music->flac_data.max_to_read = 8192;
music->flac_data.data_len = music->flac_data.max_to_read;
music->flac_data.data_read = 0;
if (!music->flac_data.data) {
music->flac_data.data = (char *)SDL_malloc (music->flac_data.data_len);
}
// we have data to read
while(music->flac_data.max_to_read > 0) {
// first check if there is data in the overflow from before
if (music->flac_data.overflow) {
size_t overflow_len = music->flac_data.overflow_read;
Jun 12, 2013
Jun 12, 2013
401
if (overflow_len > (size_t)music->flac_data.max_to_read) {
May 22, 2013
May 22, 2013
402
403
404
size_t overflow_extra_len = overflow_len -
music->flac_data.max_to_read;
Jun 1, 2013
Jun 1, 2013
405
SDL_memcpy (music->flac_data.data+music->flac_data.data_read,
May 22, 2013
May 22, 2013
406
407
music->flac_data.overflow, music->flac_data.max_to_read);
music->flac_data.data_read += music->flac_data.max_to_read;
Jun 1, 2013
Jun 1, 2013
408
SDL_memcpy (music->flac_data.overflow,
May 22, 2013
May 22, 2013
409
410
music->flac_data.overflow + music->flac_data.max_to_read,
overflow_extra_len);
Oct 13, 2017
Oct 13, 2017
411
412
music->flac_data.overflow_len = (int)overflow_extra_len;
music->flac_data.overflow_read = (int)overflow_extra_len;
May 22, 2013
May 22, 2013
413
music->flac_data.max_to_read = 0;
Jun 1, 2013
Jun 1, 2013
414
415
} else {
SDL_memcpy (music->flac_data.data+music->flac_data.data_read,
May 22, 2013
May 22, 2013
416
music->flac_data.overflow, overflow_len);
Oct 13, 2017
Oct 13, 2017
417
music->flac_data.data_read += (int)overflow_len;
Jun 1, 2013
Jun 1, 2013
418
SDL_free (music->flac_data.overflow);
May 22, 2013
May 22, 2013
419
420
421
music->flac_data.overflow = NULL;
music->flac_data.overflow_len = 0;
music->flac_data.overflow_read = 0;
Oct 13, 2017
Oct 13, 2017
422
music->flac_data.max_to_read -= (int)overflow_len;
May 22, 2013
May 22, 2013
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
}
}
else {
if (!flac.FLAC__stream_decoder_process_single (
music->flac_decoder)) {
music->flac_data.max_to_read = 0;
}
if (flac.FLAC__stream_decoder_get_state (music->flac_decoder)
== FLAC__STREAM_DECODER_END_OF_STREAM) {
music->flac_data.max_to_read = 0;
}
}
}
if (music->flac_data.data_read <= 0) {
if (music->flac_data.data_read == 0) {
music->playing = 0;
}
return;
}
cvt = &music->cvt;
if (music->section < 0) {
SDL_BuildAudioCVT (cvt, AUDIO_S16, (Uint8)music->flac_data.channels,
(int)music->flac_data.sample_rate, mixer.format,
mixer.channels, mixer.freq);
if (cvt->buf) {
Jun 1, 2013
Jun 1, 2013
450
SDL_free (cvt->buf);
May 22, 2013
May 22, 2013
451
452
453
454
455
}
cvt->buf = (Uint8 *)SDL_malloc (music->flac_data.data_len * cvt->len_mult);
music->section = 0;
}
if (cvt->buf) {
Jun 1, 2013
Jun 1, 2013
456
SDL_memcpy (cvt->buf, music->flac_data.data, music->flac_data.data_read);
May 22, 2013
May 22, 2013
457
458
459
460
461
462
463
464
465
466
467
468
469
470
if (cvt->needed) {
cvt->len = music->flac_data.data_read;
SDL_ConvertAudio (cvt);
}
else {
cvt->len_cvt = music->flac_data.data_read;
}
music->len_available = music->cvt.len_cvt;
music->snd_available = music->cvt.buf;
}
else {
SDL_SetError ("Out of memory");
music->playing = 0;
}
471
472
473
}
/* Play some of a stream previously started with FLAC_play() */
Oct 3, 2009
Oct 3, 2009
474
475
int FLAC_playAudio(FLAC_music *music, Uint8 *snd, int len)
{
May 22, 2013
May 22, 2013
476
477
478
479
480
481
482
483
484
485
486
int mixable;
while ((len > 0) && music->playing) {
if (!music->len_available) {
FLAC_getsome (music);
}
mixable = len;
if (mixable > music->len_available) {
mixable = music->len_available;
}
if (music->volume == MIX_MAX_VOLUME) {
Jun 1, 2013
Jun 1, 2013
487
SDL_memcpy (snd, music->snd_available, mixable);
May 22, 2013
May 22, 2013
488
489
}
else {
Jan 20, 2017
Jan 20, 2017
490
SDL_MixAudioFormat(snd, music->snd_available, mixer.format, mixable, music->volume);
May 22, 2013
May 22, 2013
491
492
493
494
495
496
497
498
}
music->len_available -= mixable;
music->snd_available += mixable;
len -= mixable;
snd += mixable;
}
return len;
499
500
501
}
/* Stop playback of a stream previously started with FLAC_play() */
Oct 3, 2009
Oct 3, 2009
502
503
void FLAC_stop(FLAC_music *music)
{
May 22, 2013
May 22, 2013
504
music->playing = 0;
505
506
507
}
/* Close the given FLAC_music object */
Oct 3, 2009
Oct 3, 2009
508
509
void FLAC_delete(FLAC_music *music)
{
May 22, 2013
May 22, 2013
510
511
512
513
514
515
516
if (music) {
if (music->flac_decoder) {
flac.FLAC__stream_decoder_finish (music->flac_decoder);
flac.FLAC__stream_decoder_delete (music->flac_decoder);
}
if (music->flac_data.data) {
Jun 1, 2013
Jun 1, 2013
517
SDL_free (music->flac_data.data);
May 22, 2013
May 22, 2013
518
519
520
}
if (music->flac_data.overflow) {
Jun 1, 2013
Jun 1, 2013
521
SDL_free (music->flac_data.overflow);
May 22, 2013
May 22, 2013
522
523
524
}
if (music->cvt.buf) {
Jun 1, 2013
Jun 1, 2013
525
SDL_free (music->cvt.buf);
May 22, 2013
May 22, 2013
526
527
}
Jun 2, 2013
Jun 2, 2013
528
529
if (music->freesrc) {
SDL_RWclose(music->src);
May 22, 2013
May 22, 2013
530
}
Jun 1, 2013
Jun 1, 2013
531
SDL_free (music);
May 22, 2013
May 22, 2013
532
}
533
534
535
}
/* Jump (seek) to a given position (time is in seconds) */
Oct 3, 2009
Oct 3, 2009
536
537
void FLAC_jump_to_time(FLAC_music *music, double time)
{
May 22, 2013
May 22, 2013
538
539
540
541
542
543
if (music) {
if (music->flac_decoder) {
double seek_sample = music->flac_data.sample_rate * time;
// clear data if it has data
if (music->flac_data.data) {
Jun 1, 2013
Jun 1, 2013
544
SDL_free (music->flac_data.data);
May 22, 2013
May 22, 2013
545
546
547
548
549
music->flac_data.data = NULL;
}
// clear overflow if it has data
if (music->flac_data.overflow) {
Jun 1, 2013
Jun 1, 2013
550
SDL_free (music->flac_data.overflow);
May 22, 2013
May 22, 2013
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
music->flac_data.overflow = NULL;
}
if (!flac.FLAC__stream_decoder_seek_absolute (music->flac_decoder,
(FLAC__uint64)seek_sample)) {
if (flac.FLAC__stream_decoder_get_state (music->flac_decoder)
== FLAC__STREAM_DECODER_SEEK_ERROR) {
flac.FLAC__stream_decoder_flush (music->flac_decoder);
}
SDL_SetError
("Seeking of FLAC stream failed: libFLAC seek failed.");
}
}
else {
SDL_SetError
("Seeking of FLAC stream failed: FLAC decoder was NULL.");
}
}
else {
SDL_SetError ("Seeking of FLAC stream failed: music was NULL.");
}
573
574
575
}
#endif /* FLAC_MUSIC */