mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
lavf: replace all uses of url_fskip with avio_seek
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
committed by
Ronald S. Bultje
parent
6b4aa5dac8
commit
e356fc57a2
+3
-3
@@ -72,7 +72,7 @@ static int vqf_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
if (!st)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
url_fskip(s->pb, 12);
|
||||
avio_seek(s->pb, 12, SEEK_CUR);
|
||||
|
||||
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);
|
||||
url_fskip(s->pb, len-12);
|
||||
avio_seek(s->pb, len-12, SEEK_CUR);
|
||||
|
||||
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]);
|
||||
url_fskip(s->pb, FFMIN(len, header_size));
|
||||
avio_seek(s->pb, FFMIN(len, header_size), SEEK_CUR);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user