summaryrefslogtreecommitdiff
path: root/apps/codecs/libspeex/speex/speex_bits.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libspeex/speex/speex_bits.h')
-rw-r--r--apps/codecs/libspeex/speex/speex_bits.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/codecs/libspeex/speex/speex_bits.h b/apps/codecs/libspeex/speex/speex_bits.h
index 88334c4214..a26fb4ce0c 100644
--- a/apps/codecs/libspeex/speex/speex_bits.h
+++ b/apps/codecs/libspeex/speex/speex_bits.h
@@ -64,6 +64,9 @@ void speex_bits_init(SpeexBits *bits);
64/** Initializes SpeexBits struct using a pre-allocated buffer*/ 64/** Initializes SpeexBits struct using a pre-allocated buffer*/
65void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size); 65void speex_bits_init_buffer(SpeexBits *bits, void *buff, int buf_size);
66 66
67/** 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);
69
67/** Frees all resources associated to a SpeexBits struct. Right now this does nothing since no resources are allocated, but this could change in the future.*/ 70/** Frees all resources associated to a SpeexBits struct. Right now this does nothing since no resources are allocated, but this could change in the future.*/
68void speex_bits_destroy(SpeexBits *bits); 71void speex_bits_destroy(SpeexBits *bits);
69 72