summaryrefslogtreecommitdiff
path: root/libavformat/nutdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r--libavformat/nutdec.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index e3b117d8bf..c940c7ee72 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -27,17 +27,6 @@
#undef NDEBUG
#include <assert.h>
-static 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;
-}
-
static int get_str(ByteIOContext *bc, char *string, unsigned int maxlen){
unsigned int len= get_v(bc);