summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/speex/speex_bits.h
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/speex/speex_bits.h
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/speex/speex_bits.h')
-rw-r--r--apps/codecs/libspeex/speex/speex_bits.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/codecs/libspeex/speex/speex_bits.h b/apps/codecs/libspeex/speex/speex_bits.h
index a26fb4ce0c..fee2893380 100644
--- a/apps/codecs/libspeex/speex/speex_bits.h
+++ b/apps/codecs/libspeex/speex/speex_bits.h
@@ -62,7 +62,9 @@ typedef struct SpeexBits {
62void speex_bits_init(SpeexBits *bits); 62void speex_bits_init(SpeexBits *bits);
63 63
64/** Initializes SpeexBits struct using a pre-allocated buffer*/ 64/** Initializes SpeexBits struct using a pre-allocated buffer*/
65/* Rockbox: unused
65void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size); 66void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size);
67*/
66 68
67/** Sets the bits in a SpeexBits struct to use data from an existing buffer (for decoding without copying data) */ 69/** Sets the bits in a SpeexBits struct to use data from an existing buffer (for decoding without copying data) */
68void speex_bits_set_bit_buffer(SpeexBits *bits, void *buff, int buf_size); 70void speex_bits_set_bit_buffer(SpeexBits *bits, void *buff, int buf_size);
@@ -74,7 +76,9 @@ void speex_bits_destroy(SpeexBits *bits);
74void speex_bits_reset(SpeexBits *bits); 76void speex_bits_reset(SpeexBits *bits);
75 77
76/** Rewind the bit-stream to the beginning (ready for read) without erasing the content */ 78/** Rewind the bit-stream to the beginning (ready for read) without erasing the content */
79/* Rockbox: unused
77void speex_bits_rewind(SpeexBits *bits); 80void speex_bits_rewind(SpeexBits *bits);
81*/
78 82
79/** Initializes the bit-stream from the data in an area of memory */ 83/** Initializes the bit-stream from the data in an area of memory */
80void speex_bits_read_from(SpeexBits *bits, char *bytes, int len); 84void speex_bits_read_from(SpeexBits *bits, char *bytes, int len);
@@ -112,7 +116,9 @@ void speex_bits_pack(SpeexBits *bits, int data, int nbBits);
112 * @param nbBits Number of bits to interpret 116 * @param nbBits Number of bits to interpret
113 * @return A signed integer represented by the bits read 117 * @return A signed integer represented by the bits read
114 */ 118 */
119/* Rockbox: unused
115int speex_bits_unpack_signed(SpeexBits *bits, int nbBits); 120int speex_bits_unpack_signed(SpeexBits *bits, int nbBits);
121*/
116 122
117/** Interpret the next bits in the bit-stream as an unsigned integer 123/** Interpret the next bits in the bit-stream as an unsigned integer
118 * 124 *
@@ -127,7 +133,9 @@ unsigned int speex_bits_unpack_unsigned(SpeexBits *bits, int nbBits);
127 * @param bits Bit-stream to operate on 133 * @param bits Bit-stream to operate on
128 * @return Number of bytes in the stream 134 * @return Number of bytes in the stream
129 */ 135 */
136/* Rockbox: unused
130int speex_bits_nbytes(SpeexBits *bits); 137int speex_bits_nbytes(SpeexBits *bits);
138*/
131 139
132/** Same as speex_bits_unpack_unsigned, but without modifying the cursor position 140/** Same as speex_bits_unpack_unsigned, but without modifying the cursor position
133 * 141 *
@@ -135,7 +143,9 @@ int speex_bits_nbytes(SpeexBits *bits);
135 * @param nbBits Number of bits to look for 143 * @param nbBits Number of bits to look for
136 * @return Value of the bits peeked, interpreted as unsigned 144 * @return Value of the bits peeked, interpreted as unsigned
137 */ 145 */
146/* Rockbox: unused
138unsigned int speex_bits_peek_unsigned(SpeexBits *bits, int nbBits); 147unsigned int speex_bits_peek_unsigned(SpeexBits *bits, int nbBits);
148*/
139 149
140/** Get the value of the next bit in the stream, without modifying the 150/** Get the value of the next bit in the stream, without modifying the
141 * "cursor" position 151 * "cursor" position