diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-04 19:57:36 +0100 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-03-07 11:03:39 -0500 |
commit | 76aa876e69cf78a40821e66dec0a1006e4eb23ec (patch) | |
tree | 48122de51aeb99266e25f78bc715296e7fe85d59 /libavformat/aviobuf.c | |
parent | e51975392d85e72801193123945a35fb5221248f (diff) | |
download | ffmpeg-76aa876e69cf78a40821e66dec0a1006e4eb23ec.tar.gz |
avio: avio_ prefix for url_fsize
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r-- | libavformat/aviobuf.c | 6 |
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) |