From e356fc57a2e9887370caec58d8aafeafd1f336dc Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 28 Feb 2011 14:57:55 +0100 Subject: lavf: replace all uses of url_fskip with avio_seek Signed-off-by: Ronald S. Bultje --- libavformat/eacdata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/eacdata.c') diff --git a/libavformat/eacdata.c b/libavformat/eacdata.c index 6f3564e397..8fc8c4221e 100644 --- a/libavformat/eacdata.c +++ b/libavformat/eacdata.c @@ -62,7 +62,7 @@ static int cdata_read_header(AVFormatContext *s, AVFormatParameters *ap) }; sample_rate = avio_rb16(pb); - url_fskip(pb, 12); + avio_seek(pb, 12, SEEK_CUR); st = av_new_stream(s, 0); if (!st) -- cgit v1.2.3