From 7b79305a47773aed4926726f71a8347a18262f80 Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Mon, 14 Nov 2011 01:28:05 +0100 Subject: Rename remaining url_fskip to avio_skip. --- libavformat/bintext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/bintext.c') diff --git a/libavformat/bintext.c b/libavformat/bintext.c index ea0c553400..a4f1d67ac7 100644 --- a/libavformat/bintext.c +++ b/libavformat/bintext.c @@ -178,7 +178,7 @@ static int xbin_read_header(AVFormatContext *s, if (!st) return AVERROR(ENOMEM); - url_fskip(pb, 5); + avio_skip(pb, 5); st->codec->width = get_le16(pb)<<3; st->codec->height = get_le16(pb); fontheight = avio_r8(pb); @@ -235,7 +235,7 @@ static int adf_read_header(AVFormatContext *s, if (avio_read(pb, st->codec->extradata + 2, 24) < 0) return AVERROR(EIO); - url_fskip(pb, 144); + avio_skip(pb, 144); if (avio_read(pb, st->codec->extradata + 2 + 24, 24) < 0) return AVERROR(EIO); if (avio_read(pb, st->codec->extradata + 2 + 48, 4096) < 0) -- cgit v1.2.3