diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-11-03 18:26:42 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-11-03 18:26:42 +0000 |
commit | 897d3eef4c7ba35ec820dd5e2b378f8e368e9a18 (patch) | |
tree | b507ded25ed11789a4664e5587526edcb2f815d2 /libavformat/aviobuf.c | |
parent | 0c904db11861a5de3a9091fb018116bde5ed567f (diff) | |
download | ffmpeg-897d3eef4c7ba35ec820dd5e2b378f8e368e9a18.tar.gz |
Make get_v() available to the other demuxers
Originally committed as revision 10911 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r-- | libavformat/aviobuf.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index c186aa2ea3..1be4480c0d 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -472,6 +472,17 @@ uint64_t get_be64(ByteIOContext *s) return val; } +uint64_t get_v(ByteIOContext *bc){ + uint64_t val = 0; + int tmp; + + do{ + tmp = get_byte(bc); + val= (val<<7) + (tmp&127); + }while(tmp&128); + return val; +} + /* link with avio functions */ #ifdef CONFIG_MUXERS |