mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08: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
@ -68,7 +68,7 @@ static int vc1t_read_header(AVFormatContext *s,
|
||||
st->codec->width = avio_rl32(pb);
|
||||
if(avio_rl32(pb) != 0xC)
|
||||
return -1;
|
||||
url_fskip(pb, 8);
|
||||
avio_seek(pb, 8, SEEK_CUR);
|
||||
fps = avio_rl32(pb);
|
||||
if(fps == 0xFFFFFFFF)
|
||||
av_set_pts_info(st, 32, 1, 1000);
|
||||
|
Reference in New Issue
Block a user