1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Revert "jvdec: don't use deprecated url_feof()"

This reverts commit 1dac4d5547.
This commit is contained in:
Michael Niedermayer 2011-03-17 17:02:54 +01:00
parent c0b1bc8d17
commit afbfb2a81d

View File

@ -139,7 +139,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
AVIOContext *pb = s->pb;
AVStream *ast = s->streams[0];
while (!s->pb->eof_reached && jv->pts < ast->nb_index_entries) {
while (!url_feof(s->pb) && jv->pts < ast->nb_index_entries) {
const AVIndexEntry *e = ast->index_entries + jv->pts;
const JVFrame *jvf = jv->frames + jv->pts;