diff options
Diffstat (limited to 'libavformat/ncdec.c')
-rw-r--r-- | libavformat/ncdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |