replace calls to url_feof() with avio_feof()
Signed-off-by: James Almer <[email protected]>
Signed-off-by: Michael Niedermayer <[email protected]>
diff --git a/libavformat/mpsubdec.c b/libavformat/mpsubdec.c
index c5bdcdb..eddc594 100644
--- a/libavformat/mpsubdec.c
+++ b/libavformat/mpsubdec.c
@@ -63,7 +63,7 @@
av_bprint_init(&buf, 0, AV_BPRINT_SIZE_UNLIMITED);
- while (!url_feof(s->pb)) {
+ while (!avio_feof(s->pb)) {
char line[1024];
float start, duration;
int fps, len = ff_get_line(s->pb, line, sizeof(line));