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/spdifdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/spdifdec.c') diff --git a/libavformat/spdifdec.c b/libavformat/spdifdec.c index 2fc567277f..b2194ea283 100644 --- a/libavformat/spdifdec.c +++ b/libavformat/spdifdec.c @@ -201,7 +201,7 @@ static int spdif_read_packet(AVFormatContext *s, AVPacket *pkt) } /* skip over the padding to the beginning of the next frame */ - url_fskip(pb, offset - pkt->size - BURST_HEADER_SIZE); + avio_seek(pb, offset - pkt->size - BURST_HEADER_SIZE, SEEK_CUR); if (!s->nb_streams) { /* first packet, create a stream */ -- cgit v1.2.3