mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-01-06 22:25:36 +01:00
avio: avio_ prefix for url_fseek
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
committed by
Ronald S. Bultje
parent
76d8846c4e
commit
6b4aa5dac8
@@ -102,7 +102,7 @@ static int read_header(AVFormatContext *s,
|
||||
avio_rl16(pb); /* ibm-pc video bios mode */
|
||||
width = avio_rl16(pb);
|
||||
height = avio_rl16(pb);
|
||||
url_fseek(pb, length - 10, SEEK_CUR); /* unknown data */
|
||||
avio_seek(pb, length - 10, SEEK_CUR); /* unknown data */
|
||||
|
||||
/* video stream */
|
||||
st = av_new_stream(s, 0);
|
||||
@@ -181,7 +181,7 @@ static int read_packet(AVFormatContext *s,
|
||||
|
||||
default :
|
||||
av_log(s, AV_LOG_INFO, "unknown chunk type 0x%x\n", type);
|
||||
url_fseek(pb, length, SEEK_CUR);
|
||||
avio_seek(pb, length, SEEK_CUR);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user