OSDN Git Service

mp3demux: pass on error code on packet read.
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 20 Sep 2011 22:51:53 +0000 (00:51 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 20 Sep 2011 22:51:53 +0000 (00:51 +0200)
Reported-by: Tanami, Ohad
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/mp3dec.c

index f993f2a..7fe7df2 100644 (file)
@@ -174,7 +174,9 @@ static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
 
     pkt->stream_index = 0;
     if (ret <= 0) {
-        return AVERROR(EIO);
+        if(ret<0)
+            return ret;
+        return AVERROR_EOF;
     }
 
     if (ret > ID3v1_TAG_SIZE &&