diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-05-23 15:08:13 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-05-23 15:08:13 +0000 |
commit | daeaccca155541ad3511f3f606a537c3f40a0686 (patch) | |
tree | d30f040d517c2d1d818fbd7a54add933e345b91a /src/mp3_decode.c | |
parent | 3ac22ac7ea2e4df156ca9e8d23f16993099fd582 (diff) | |
download | mpd-daeaccca155541ad3511f3f606a537c3f40a0686.tar.gz mpd-daeaccca155541ad3511f3f606a537c3f40a0686.tar.xz mpd-daeaccca155541ad3511f3f606a537c3f40a0686.zip |
various bugfixes for 0.10.4
git-svn-id: https://svn.musicpd.org/mpd/branches/branch-0.10.3@1143 09075e82-0dd4-0310-85a5-a0d7c8717e4f
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, |