asfdec: fix endless loop on EOF

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-12-24 23:21:40 +01:00
parent 47c4713a23
commit 0d4404ed65

View File

@ -765,7 +765,7 @@ static int ff_asf_get_packet(AVFormatContext *s, AVIOContext *pb)
c= avio_r8(pb);
d= avio_r8(pb);
rsize+=3;
}else{
}else if(!url_feof(pb)){
avio_seek(pb, -1, SEEK_CUR); //FIXME
}