]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/aiffdec.c
Merge commit '747cd9560c2248ff2834f29cd2190646330e4676'
[ffmpeg] / libavformat / aiffdec.c
index 7accec453f54c3ec3311e770930fd76e5e614b16..91ef2a4d10653f1d5042e56c78e1acdc766db7a3 100644 (file)
@@ -58,7 +58,7 @@ static int get_tag(AVIOContext *pb, uint32_t * tag)
 {
     int size;
 
-    if (url_feof(pb))
+    if (avio_feof(pb))
         return AVERROR(EIO);
 
     *tag = avio_rl32(pb);