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/ncdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/ncdec.c') diff --git a/libavformat/ncdec.c b/libavformat/ncdec.c index 79a4dbafab..0c44aaa5be 100644 --- a/libavformat/ncdec.c +++ b/libavformat/ncdec.c @@ -66,7 +66,7 @@ static int nc_read_packet(AVFormatContext *s, AVPacket *pkt) uint32_t state=-1; while (state != NC_VIDEO_FLAG) { - if (url_feof(s->pb)) + if (s->pb->eof_reached) return AVERROR(EIO); state = (state<<8) + avio_r8(s->pb); } -- cgit v1.2.3