summaryrefslogtreecommitdiff
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 @@
30#include "bitstream.h" 30#include "bitstream.h"
31#include <codecs/lib/codeclib.h> 31#include <codecs/lib/codeclib.h>
32 32
33/* this stuff is unused */
34#if 0
33/** 35/**
34 * Same as av_mallocz_static(), but does a realloc. 36 * Same as av_mallocz_static(), but does a realloc.
35 * 37 *
@@ -79,6 +81,7 @@ void ff_put_string(PutBitContext * pbc, char *s, int put_zero)
79 if(put_zero) 81 if(put_zero)
80 put_bits(pbc, 8, 0); 82 put_bits(pbc, 8, 0);
81} 83}
84#endif
82 85
83/* VLC decoding */ 86/* VLC decoding */
84 87
@@ -247,9 +250,8 @@ int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
247 const void *codes, int codes_wrap, int codes_size, 250 const void *codes, int codes_wrap, int codes_size,
248 int flags) 251 int flags)
249{ 252{
250
251 vlc->bits = nb_bits; 253 vlc->bits = nb_bits;
252 vlc->table_size = 0; 254 vlc->table_size = 0;
253 255
254#ifdef DEBUG_VLC 256#ifdef DEBUG_VLC
255 printf("build table nb_codes=%d\n", nb_codes); 257 printf("build table nb_codes=%d\n", nb_codes);