summaryrefslogtreecommitdiff
path: root/libavformat/mlvdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/mlvdec.c')
-rw-r--r--libavformat/mlvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mlvdec.c b/libavformat/mlvdec.c
index a980ed6218..0ed1bfaa30 100644
--- a/libavformat/mlvdec.c
+++ b/libavformat/mlvdec.c
@@ -126,7 +126,7 @@ static int scan_file(AVFormatContext *avctx, AVStream *vst, AVStream *ast, int f
MlvContext *mlv = avctx->priv_data;
AVIOContext *pb = mlv->pb[file];
int ret;
- while (!url_feof(pb)) {
+ while (!avio_feof(pb)) {
int type;
unsigned int size;
type = avio_rl32(pb);