mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-16 03:50:05 +01:00
Add avio_skip()
This commit is contained in:
@@ -233,6 +233,11 @@ int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
|
||||
return offset;
|
||||
}
|
||||
|
||||
int64_t avio_skip(AVIOContext *s, int64_t offset)
|
||||
{
|
||||
return avio_seek(s, offset, SEEK_CUR);
|
||||
}
|
||||
|
||||
#if FF_API_OLD_AVIO
|
||||
int url_fskip(AVIOContext *s, int64_t offset)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user