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/nistspheredec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/nistspheredec.c') diff --git a/libavformat/nistspheredec.c b/libavformat/nistspheredec.c index 2c96686342..2f17f9eeb0 100644 --- a/libavformat/nistspheredec.c +++ b/libavformat/nistspheredec.c @@ -51,7 +51,7 @@ static int nist_read_header(AVFormatContext *s) if (header_size <= 0) return AVERROR_INVALIDDATA; - while (!url_feof(s->pb)) { + while (!avio_feof(s->pb)) { ff_get_line(s->pb, buffer, sizeof(buffer)); if (avio_tell(s->pb) >= header_size) -- cgit v1.2.3