summaryrefslogtreecommitdiff
path: root/libavformat/aviobuf.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2007-11-03 18:29:16 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2007-11-03 18:29:16 +0000
commit7798b42df1611598a232a10d67756b2f32bd8fa5 (patch)
treef58431796bb63eac020ba28bc9587582138b44a9 /libavformat/aviobuf.c
parent897d3eef4c7ba35ec820dd5e2b378f8e368e9a18 (diff)
Add ff_ prefix to get_v()
Originally committed as revision 10912 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 1be4480c0d..8bf6c063ea 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -472,7 +472,7 @@ uint64_t get_be64(ByteIOContext *s)
return val;
}
-uint64_t get_v(ByteIOContext *bc){
+uint64_t ff_get_v(ByteIOContext *bc){
uint64_t val = 0;
int tmp;