mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
lavf: replace avio_seek(SEEK_CUR) with avio_skip where it makes sense
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:

committed by
Ronald S. Bultje

parent
cbf5d22d24
commit
45a8a02a41
@ -584,7 +584,7 @@ null_chunk_retry:
|
||||
((auxtag >> 16) & 0x0ff),
|
||||
((auxtag >> 24) & 0x0ff),
|
||||
auxsize);
|
||||
avio_seek(pb, auxsize, SEEK_CUR);
|
||||
avio_skip(pb, auxsize);
|
||||
vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming braindead */
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user