summaryrefslogtreecommitdiff
path: root/libavformat/aviobuf.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-02-28 14:57:56 +0100
committerRonald S. Bultje <rsbultje@gmail.com>2011-03-01 12:27:08 -0500
commit0300db8ad778a194b4a8ec98f6da3de5b41c46ee (patch)
tree65163265c70e15ae8f5d146569d8699397ba57d0 /libavformat/aviobuf.c
parente356fc57a2e9887370caec58d8aafeafd1f336dc (diff)
avio: deprecate url_fskip
avio_seek should be used instead Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index a74ad21604..0c733a704b 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -233,11 +233,13 @@ int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
return offset;
}
+#if FF_API_OLD_AVIO
int url_fskip(AVIOContext *s, int64_t offset)
{
int64_t ret = avio_seek(s, offset, SEEK_CUR);
return ret < 0 ? ret : 0;
}
+#endif
int64_t url_ftell(AVIOContext *s)
{