avio: deprecate url_fskip
avio_seek should be used instead Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
e356fc57a2
commit
0300db8ad7
@ -421,6 +421,7 @@ attribute_deprecated void put_tag(AVIOContext *s, const char *tag);
|
|||||||
attribute_deprecated int url_fopen( AVIOContext **s, const char *url, int flags);
|
attribute_deprecated int url_fopen( AVIOContext **s, const char *url, int flags);
|
||||||
attribute_deprecated int url_fclose(AVIOContext *s);
|
attribute_deprecated int url_fclose(AVIOContext *s);
|
||||||
attribute_deprecated int64_t url_fseek(AVIOContext *s, int64_t offset, int whence);
|
attribute_deprecated int64_t url_fseek(AVIOContext *s, int64_t offset, int whence);
|
||||||
|
attribute_deprecated int url_fskip(AVIOContext *s, int64_t offset);
|
||||||
/**
|
/**
|
||||||
* @}
|
* @}
|
||||||
*/
|
*/
|
||||||
@ -468,13 +469,6 @@ int avio_put_str16le(AVIOContext *s, const char *str);
|
|||||||
*/
|
*/
|
||||||
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
|
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence);
|
||||||
|
|
||||||
/**
|
|
||||||
* Skip given number of bytes forward.
|
|
||||||
* @param offset number of bytes
|
|
||||||
* @return 0 on success, <0 on error
|
|
||||||
*/
|
|
||||||
int url_fskip(AVIOContext *s, int64_t offset);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ftell() equivalent for AVIOContext.
|
* ftell() equivalent for AVIOContext.
|
||||||
* @return position or AVERROR.
|
* @return position or AVERROR.
|
||||||
|
@ -233,11 +233,13 @@ int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
|
|||||||
return offset;
|
return offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if FF_API_OLD_AVIO
|
||||||
int url_fskip(AVIOContext *s, int64_t offset)
|
int url_fskip(AVIOContext *s, int64_t offset)
|
||||||
{
|
{
|
||||||
int64_t ret = avio_seek(s, offset, SEEK_CUR);
|
int64_t ret = avio_seek(s, offset, SEEK_CUR);
|
||||||
return ret < 0 ? ret : 0;
|
return ret < 0 ? ret : 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
int64_t url_ftell(AVIOContext *s)
|
int64_t url_ftell(AVIOContext *s)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user