From 66e5b1df360a28b083bc9ec5a76e7add5f40ce1f Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 7 Mar 2011 21:50:25 +0100 Subject: avio: deprecate url_feof AVIOContext.eof_reached should be used directly instead. Signed-off-by: Ronald S. Bultje --- libavformat/idroqdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/idroqdec.c') diff --git a/libavformat/idroqdec.c b/libavformat/idroqdec.c index 391db609b7..1feb236188 100644 --- a/libavformat/idroqdec.c +++ b/libavformat/idroqdec.c @@ -111,7 +111,7 @@ static int roq_read_packet(AVFormatContext *s, while (!packet_read) { - if (url_feof(s->pb)) + if (s->pb->eof_reached) return AVERROR(EIO); /* get the next chunk preamble */ -- cgit v1.2.3