From 799a0722fc83ea9f6ef3df54628ecb1bf282c915 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Thu, 16 Apr 2009 00:41:31 +0000 Subject: [PATCH] Replace AVERROR(EIO) by AVERROR_EOF on end-of-file. See mailinglist thread "[PATCH] RTSP-MS 15/15: move packet_time_start zero value assignment in asf.c". Originally committed as revision 18531 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/asfdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/asfdec.c b/libavformat/asfdec.c index 16956efa1c..7b22e68997 100644 --- a/libavformat/asfdec.c +++ b/libavformat/asfdec.c @@ -702,7 +702,7 @@ int ff_asf_parse_packet(AVFormatContext *s, ByteIOContext *pb, AVPacket *pkt) ASFStream *asf_st = 0; for (;;) { if(url_feof(pb)) - return AVERROR(EIO); + return AVERROR_EOF; if (asf->packet_size_left < FRAME_HEADER_SIZE || asf->packet_segments < 1) { //asf->packet_size_left <= asf->packet_padsize) {