summaryrefslogtreecommitdiff
path: root/libavformat/aviobuf.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-14 20:38:57 +0100
committerRonald S. Bultje <rsbultje@gmail.com>2011-03-16 22:59:38 -0400
commit4839c192de7782605e1b7c9cc84aaf692cf67284 (patch)
treee40c8ff6bafe53ff7052cd74a6050f0cda7dd60a /libavformat/aviobuf.c
parent073f8b10d8d7638fcee33aba04ca2a7b90bdb2c3 (diff)
lavf: move ff_get_v from avio.h to avio_internal.h
And rename it to ffio_read_varlen. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 4f39fe3529..86f4928d43 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -753,7 +753,7 @@ uint64_t avio_rb64(AVIOContext *s)
return val;
}
-uint64_t ff_get_v(AVIOContext *bc){
+uint64_t ffio_read_varlen(AVIOContext *bc){
uint64_t val = 0;
int tmp;