[SCM] libav/experimental: FLV demuxer: return AVERROR_EOF upon detection of end of file.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:38:52 UTC 2013


The following commit has been merged in the experimental branch:
commit 0e9602ef93255476d8f05b2a4f4ab70fdf1f22ff
Author: Peter Ross <pross at xvid.org>
Date:   Thu Feb 19 12:19:55 2009 +0000

    FLV demuxer: return AVERROR_EOF upon detection of end of file.
    
    Originally committed as revision 17457 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index 7f3184b..06ae33a 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -320,7 +320,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
     dts |= get_byte(s->pb) << 24;
 //    av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, dts:%d\n", type, size, dts);
     if (url_feof(s->pb))
-        return AVERROR(EIO);
+        return AVERROR_EOF;
     url_fskip(s->pb, 3); /* stream id, always 0 */
     flags = 0;
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list