]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/ape.c
Move WMA case from ff_get_audio_frame_size() to av_get_audio_frame_duration()
[ffmpeg] / libavformat / ape.c
index d5a786a198914b86fcbf8aebf1b650b8ead91797..fafc1dfca7d22fd024fab523830c441bfced0ee3 100644 (file)
@@ -389,7 +389,7 @@ static int ape_read_packet(AVFormatContext * s, AVPacket * pkt)
     APEContext *ape = s->priv_data;
     uint32_t extra_size = 8;
 
-    if (url_feof(s->pb))
+    if (avio_feof(s->pb))
         return AVERROR_EOF;
     if (ape->currentframe >= ape->totalframes)
         return AVERROR_EOF;