]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/jvdec.c
Merge commit '747cd9560c2248ff2834f29cd2190646330e4676'
[ffmpeg] / libavformat / jvdec.c
index eab450d862b609d6c1f8b811117a5900d3570fb7..21eb14d265f2b41adcf25964f28ae9973b08da9c 100644 (file)
@@ -166,7 +166,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt)
     AVIOContext *pb = s->pb;
     AVStream *ast = s->streams[0];
 
-    while (!url_feof(s->pb) && jv->pts < ast->nb_index_entries) {
+    while (!avio_feof(s->pb) && jv->pts < ast->nb_index_entries) {
         const AVIndexEntry *e   = ast->index_entries + jv->pts;
         const JVFrame      *jvf = jv->frames + jv->pts;