summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/nb_celp.c
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2011-06-02 20:52:54 +0000
committerNils Wallménius <nils@rockbox.org>2011-06-02 20:52:54 +0000
commit73d0e14f4494b98e0c781934fbf19efa8d6d8418 (patch)
treecd3a80eb069dc81178a5b50020356c741116f103 /apps/codecs/libspeex/nb_celp.c
parentd860c878003142128f7beb3e38dae38007822364 (diff)
downloadrockbox-73d0e14f4494b98e0c781934fbf19efa8d6d8418.tar.gz
rockbox-73d0e14f4494b98e0c781934fbf19efa8d6d8418.zip
Disable some unused code in speex to save binsize.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29949 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex/nb_celp.c')
-rw-r--r--apps/codecs/libspeex/nb_celp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libspeex/nb_celp.c b/apps/codecs/libspeex/nb_celp.c
index 98f5e2e240..364f987472 100644
--- a/apps/codecs/libspeex/nb_celp.c
+++ b/apps/codecs/libspeex/nb_celp.c
@@ -1092,7 +1092,7 @@ static void nb_decode_lost(DecState *st, spx_word16_t *out, char *stack)
1092#endif 1092#endif
1093 1093
1094/* Just so we don't need to carry the complete wideband mode information */ 1094/* Just so we don't need to carry the complete wideband mode information */
1095static const int wb_skip_table[8] = {0, 36, 112, 192, 352, 0, 0, 0}; 1095static const unsigned short wb_skip_table[8] = {0, 36, 112, 192, 352, 0, 0, 0};
1096 1096
1097int nb_decode(void *state, SpeexBits *bits, void *vout) 1097int nb_decode(void *state, SpeexBits *bits, void *vout)
1098{ 1098{