summaryrefslogtreecommitdiff
path: root/libavformat/vqf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/vqf.c')
-rw-r--r--libavformat/vqf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/vqf.c b/libavformat/vqf.c
index 49ed8b4e95..94ba543ba5 100644
--- a/libavformat/vqf.c
+++ b/libavformat/vqf.c
@@ -72,7 +72,7 @@ static int vqf_read_header(AVFormatContext *s, AVFormatParameters *ap)
if (!st)
return AVERROR(ENOMEM);
- avio_seek(s->pb, 12, SEEK_CUR);
+ avio_skip(s->pb, 12);
header_size = avio_rb32(s->pb);
@@ -101,7 +101,7 @@ static int vqf_read_header(AVFormatContext *s, AVFormatParameters *ap)
st->codec->channels = avio_rb32(s->pb) + 1;
read_bitrate = avio_rb32(s->pb);
rate_flag = avio_rb32(s->pb);
- avio_seek(s->pb, len-12, SEEK_CUR);
+ avio_skip(s->pb, len-12);
st->codec->bit_rate = read_bitrate*1000;
st->codec->bits_per_coded_sample = 16;
@@ -140,7 +140,7 @@ static int vqf_read_header(AVFormatContext *s, AVFormatParameters *ap)
av_log(s, AV_LOG_ERROR, "Unknown chunk: %c%c%c%c\n",
((char*)&chunk_tag)[0], ((char*)&chunk_tag)[1],
((char*)&chunk_tag)[2], ((char*)&chunk_tag)[3]);
- avio_seek(s->pb, FFMIN(len, header_size), SEEK_CUR);
+ avio_skip(s->pb, FFMIN(len, header_size));
break;
}