diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-11-03 18:29:16 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-11-03 18:29:16 +0000 |
commit | 7798b42df1611598a232a10d67756b2f32bd8fa5 (patch) | |
tree | f58431796bb63eac020ba28bc9587582138b44a9 /libavformat/aviobuf.c | |
parent | 897d3eef4c7ba35ec820dd5e2b378f8e368e9a18 (diff) | |
download | ffmpeg-7798b42df1611598a232a10d67756b2f32bd8fa5.tar.gz |
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.c | 2 |
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; |