From 1b1d79d22a9513f796f0f5e80c01ab47ab482138 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Thu, 20 May 2004 04:36:25 +0000 Subject: oops another bug fix for handling stop in decodeFirstFrame (mp3) git-svn-id: https://svn.musicpd.org/mpd/trunk@1109 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/mp3_decode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3