aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mp3_decode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mp3_decode.c b/src/mp3_decode.c
index 3223e3360..9fd67ca1a 100644
--- a/src/mp3_decode.c
+++ b/src/mp3_decode.c
@@ -348,10 +348,10 @@ int decodeFirstFrame(mp3DecodeData * data, DecoderControl * dc) {
while((ret = decodeNextFrameHeader(data))==DECODE_CONT &&
(!dc || !dc->stop));
if(ret==DECODE_SKIP) skip = 1;
- else if(ret==DECODE_BREAK) return -1;
+ else if(ret==DECODE_BREAK || dc->stop) return -1;
while((ret = decodeNextFrame(data))==DECODE_CONT &&
(!dc || !dc->stop));
- if(ret==DECODE_BREAK) return -1;
+ if(ret==DECODE_BREAK || dc->stop) return -1;
if(!skip && ret==DECODE_OK) break;
}