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/daud.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/daud.c') diff --git a/libavformat/daud.c b/libavformat/daud.c index 39a994b605..f852105a0c 100644 --- a/libavformat/daud.c +++ b/libavformat/daud.c @@ -38,7 +38,7 @@ static int daud_header(AVFormatContext *s, AVFormatParameters *ap) { static int daud_packet(AVFormatContext *s, AVPacket *pkt) { AVIOContext *pb = s->pb; int ret, size; - if (url_feof(pb)) + if (pb->eof_reached) return AVERROR(EIO); size = avio_rb16(pb); avio_rb16(pb); // unknown -- cgit v1.2.3