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/ncdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/ncdec.c') diff --git a/libavformat/ncdec.c b/libavformat/ncdec.c index 9f62f22ffb..79a4dbafab 100644 --- a/libavformat/ncdec.c +++ b/libavformat/ncdec.c @@ -73,7 +73,7 @@ static int nc_read_packet(AVFormatContext *s, AVPacket *pkt) avio_r8(s->pb); size = avio_rl16(s->pb); - url_fskip(s->pb, 9); + avio_seek(s->pb, 9, SEEK_CUR); if (size == 0) { av_log(s, AV_LOG_DEBUG, "Next packet size is zero\n"); -- cgit v1.2.3