diff options
Diffstat (limited to 'src/mp3_decode.c')
-rw-r--r-- | src/mp3_decode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mp3_decode.c b/src/mp3_decode.c index 618f6f5ef..90ec3b239 100644 --- a/src/mp3_decode.c +++ b/src/mp3_decode.c @@ -144,6 +144,7 @@ void initMp3DecodeData(mp3DecodeData * data) { data->currentFrame = 0; data->flush = 1; mad_stream_init(&data->stream); + data->stream.options |= MAD_OPTION_IGNORECRC; mad_frame_init(&data->frame); mad_synth_init(&data->synth); mad_timer_reset(&data->timer); @@ -227,8 +228,8 @@ int decodeNextFrame(mp3DecodeData * data) { return DECODE_BREAK; } } -#ifdef HAVE_ID3TAG if(mad_frame_decode(&data->frame,&data->stream)) { +#ifdef HAVE_ID3TAG if((data->stream).error==MAD_ERROR_LOSTSYNC) { signed long tagsize = id3_tag_query( (data->stream).this_frame, |