aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/mp3_decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mp3_decode.c b/src/mp3_decode.c
index a19f85e51..58a1ab548 100644
--- a/src/mp3_decode.c
+++ b/src/mp3_decode.c
@@ -507,7 +507,7 @@ int mp3Read(mp3DecodeData * data, Buffer * cb, DecoderControl * dc) {
while((ret = decodeNextFrameHeader(data))==DECODE_CONT);
if(ret==DECODE_SKIP) skip = 1;
else if(ret==DECODE_BREAK) break;
- if(data->muteFrame) {
+ if(!data->muteFrame) {
while((ret = decodeNextFrame(data))==DECODE_CONT);
if(ret==DECODE_BREAK) break;
}