Commit cc23d2e7 authored by Warren Dukes's avatar Warren Dukes

mute all frames that are "SKIP"'d

git-svn-id: https://svn.musicpd.org/mpd/trunk@201 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent db82d2fc
......@@ -501,12 +501,13 @@ int mp3Read(mp3DecodeData * data, Buffer * cb, DecoderControl * dc) {
}
}
if(data->muteFrame) {
while((ret=decodeNextFrameHeader(data))==DECODE_CONT ||
while((ret=decodeNextFrameHeader(data))==DECODE_CONT ||
ret==DECODE_SKIP);
if(ret==DECODE_OK && !data->muteFrame) {
while((ret=decodeNextFrame(data))==DECODE_CONT ||
ret==DECODE_SKIP);
}
else while((ret=decodeNextFrame(data))==DECODE_CONT ||
ret==DECODE_SKIP);
if(ret==DECODE_SKIP) data->muteFrame = 1;
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment