Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-04 21:57:36 +0300
committerMichael Niedermayer <michaelni@gmx.at>2011-03-08 04:09:21 +0300
commitdb44ea960d9b692e9683fffb13656a47d4166ac3 (patch)
tree7d0eefbcd46dad56be7393987b60eeb07a4fc46a /libavformat/aviobuf.c
parent1447dc59de9f179a99a91ca9a9d210d918b90486 (diff)
avio: avio_ prefix for url_fsize
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> (cherry picked from commit 76aa876e69cf78a40821e66dec0a1006e4eb23ec)
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index b21d3e3cf0..aebdd7211a 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -246,7 +246,7 @@ int64_t url_ftell(AVIOContext *s)
}
#endif
-int64_t url_fsize(AVIOContext *s)
+int64_t avio_size(AVIOContext *s)
{
int64_t size;
@@ -371,6 +371,10 @@ int64_t url_fseek(AVIOContext *s, int64_t offset, int whence)
{
return avio_seek(s, offset, whence);
}
+int64_t url_fsize(AVIOContext *s)
+{
+ return avio_size(s);
+}
#endif
int avio_put_str(AVIOContext *s, const char *str)