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/pjsdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/pjsdec.c') diff --git a/libavformat/pjsdec.c b/libavformat/pjsdec.c index 6f5db37886..5129b70e5f 100644 --- a/libavformat/pjsdec.c +++ b/libavformat/pjsdec.c @@ -73,7 +73,7 @@ static int pjs_read_header(AVFormatContext *s) st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE; st->codec->codec_id = AV_CODEC_ID_PJS; - while (!url_feof(s->pb)) { + while (!avio_feof(s->pb)) { char line[4096]; char *p = line; const int64_t pos = avio_tell(s->pb); -- cgit v1.2.3