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
@@ -51,14 +51,14 @@ int ff_sauce_read(AVFormatContext *avctx, uint64_t *fsize, int *got_width, int g
|
||||
GET_SAUCE_META("artist", 20)
|
||||
GET_SAUCE_META("publisher", 20)
|
||||
GET_SAUCE_META("date", 8)
|
||||
url_fskip(pb, 4);
|
||||
avio_seek(pb, 4, SEEK_CUR);
|
||||
datatype = avio_r8(pb);
|
||||
filetype = avio_r8(pb);
|
||||
t1 = avio_rl16(pb);
|
||||
t2 = avio_rl16(pb);
|
||||
nb_comments = avio_r8(pb);
|
||||
flags = avio_r8(pb);
|
||||
url_fskip(pb, 4);
|
||||
avio_seek(pb, 4, SEEK_CUR);
|
||||
GET_SAUCE_META("encoder", 22);
|
||||
|
||||
if (got_width && datatype && filetype) {
|
||||
|
||||
Reference in New Issue
Block a user