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/txd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/txd.c') diff --git a/libavformat/txd.c b/libavformat/txd.c index 92a0c094aa..22dcfdbe77 100644 --- a/libavformat/txd.c +++ b/libavformat/txd.c @@ -73,7 +73,7 @@ next_chunk: if (chunk_size > 100) break; case TXD_EXTRA: - url_fskip(s->pb, chunk_size); + avio_seek(s->pb, chunk_size, SEEK_CUR); case TXD_FILE: case TXD_TEXTURE: goto next_chunk; -- cgit v1.2.3