Commit 0e40e27b authored by bcoudurier's avatar bcoudurier

return AVERROR_EOF

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18992 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 806a7cae
......@@ -2025,7 +2025,7 @@ static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
if (!url_is_streamed(s->pb) ||
mov_read_default(mov, s->pb, (MOVAtom){ 0, 0, INT64_MAX }) < 0 ||
url_feof(s->pb))
return -1;
return AVERROR_EOF;
dprintf(s, "read fragments, offset 0x%llx\n", url_ftell(s->pb));
goto retry;
}
......
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