Commit 799a0722 authored by Ronald S. Bultje's avatar Ronald S. Bultje

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
parent 7e030c47
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment