]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/tmv.c
Merge commit '58b68e4fdea22e22178e237bda950b09cc6f363a'
[ffmpeg] / libavformat / tmv.c
index 8be4dbffaf7c9ce9958d617caae025c06e5f4d41..ad172f43085735e34f2588b1d471f938c6ce0508 100644 (file)
@@ -154,7 +154,7 @@ static int tmv_read_packet(AVFormatContext *s, AVPacket *pkt)
     int ret, pkt_size = tmv->stream_index ?
                         tmv->audio_chunk_size : tmv->video_chunk_size;
 
-    if (url_feof(pb))
+    if (avio_feof(pb))
         return AVERROR_EOF;
 
     ret = av_get_packet(pb, pkt, pkt_size);