From d34ec64a22907173c13e687b815d94618d2dc85b Mon Sep 17 00:00:00 2001 From: James Almer Date: Thu, 7 Aug 2014 17:12:41 -0300 Subject: replace calls to url_feof() with avio_feof() Signed-off-by: James Almer Signed-off-by: Michael Niedermayer --- libavformat/ape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/ape.c') diff --git a/libavformat/ape.c b/libavformat/ape.c index d5a786a198..fafc1dfca7 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -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; -- cgit v1.2.3