diff options
| author | Anton Khirnov <[email protected]> | 2011-03-04 19:57:36 +0100 |
|---|---|---|
| committer | Michael Niedermayer <[email protected]> | 2011-03-08 02:09:21 +0100 |
| commit | db44ea960d9b692e9683fffb13656a47d4166ac3 (patch) | |
| tree | 7d0eefbcd46dad56be7393987b60eeb07a4fc46a /libavformat/aviobuf.c | |
| parent | 1447dc59de9f179a99a91ca9a9d210d918b90486 (diff) | |
avio: avio_ prefix for url_fsize
Signed-off-by: Ronald S. Bultje <[email protected]>
(cherry picked from commit 76aa876e69cf78a40821e66dec0a1006e4eb23ec)
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) |
