summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2009-11-29 14:29:18 +0000
committerNils Wallménius <nils@rockbox.org>2009-11-29 14:29:18 +0000
commit07fe3562a1195784c4a761b63b4d027cd0984c0b (patch)
tree1aca469f9b6a6c83887579d487b490f724ee1a93
parent727984b4ff75df5729e5b34af20e04b2c90d19c1 (diff)
downloadrockbox-07fe3562a1195784c4a761b63b4d027cd0984c0b.tar.gz
rockbox-07fe3562a1195784c4a761b63b4d027cd0984c0b.zip
#if 0 out unused stuff
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23782 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/codecs/libwma/bitstream.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/codecs/libwma/bitstream.c b/apps/codecs/libwma/bitstream.c
index 618148b721..25b98b9957 100644
--- a/apps/codecs/libwma/bitstream.c
+++ b/apps/codecs/libwma/bitstream.c
@@ -30,6 +30,8 @@
#include "bitstream.h"
#include <codecs/lib/codeclib.h>
+/* this stuff is unused */
+#if 0
/**
* Same as av_mallocz_static(), but does a realloc.
*
@@ -79,6 +81,7 @@ void ff_put_string(PutBitContext * pbc, char *s, int put_zero)
if(put_zero)
put_bits(pbc, 8, 0);
}
+#endif
/* VLC decoding */
@@ -247,9 +250,8 @@ int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
const void *codes, int codes_wrap, int codes_size,
int flags)
{
-
vlc->bits = nb_bits;
- vlc->table_size = 0;
+ vlc->table_size = 0;
#ifdef DEBUG_VLC
printf("build table nb_codes=%d\n", nb_codes);