aboutsummaryrefslogtreecommitdiffstats
path: root/libtoolame-dab/bitstream.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2016-02-15 02:44:20 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-02-15 02:44:20 +0100
commit22f1fce330059ef8a383cf327a023d6a9da5ad3e (patch)
tree6893f158dcaaaa1b9f1317923c32a841ba31f768 /libtoolame-dab/bitstream.h
parent891bb2592944aa2be2d81e1583e73e632e70537f (diff)
downloadODR-AudioEnc-22f1fce330059ef8a383cf327a023d6a9da5ad3e.tar.gz
ODR-AudioEnc-22f1fce330059ef8a383cf327a023d6a9da5ad3e.tar.bz2
ODR-AudioEnc-22f1fce330059ef8a383cf327a023d6a9da5ad3e.zip
Include toolame-dab as library
Diffstat (limited to 'libtoolame-dab/bitstream.h')
-rw-r--r--libtoolame-dab/bitstream.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/libtoolame-dab/bitstream.h b/libtoolame-dab/bitstream.h
new file mode 100644
index 0000000..f7759d8
--- /dev/null
+++ b/libtoolame-dab/bitstream.h
@@ -0,0 +1,21 @@
+int refill_buffer (Bit_stream_struc *);
+void empty_buffer (Bit_stream_struc *, int);
+void open_bit_stream_w (Bit_stream_struc *, char *, int);
+void close_bit_stream_w (Bit_stream_struc *);
+void alloc_buffer (Bit_stream_struc *, int);
+void desalloc_buffer (Bit_stream_struc *);
+void back_track_buffer (Bit_stream_struc *, int);
+unsigned int get1bit (Bit_stream_struc *);
+void put1bit (Bit_stream_struc *, int);
+unsigned long look_ahead (Bit_stream_struc *, int);
+unsigned long getbits (Bit_stream_struc *, int);
+extern void putbits (Bit_stream_struc *, unsigned int, int);
+void byte_ali_putbits (Bit_stream_struc *, unsigned int, int);
+unsigned long byte_ali_getbits (Bit_stream_struc *, int);
+unsigned long sstell (Bit_stream_struc *);
+int end_bs (Bit_stream_struc *);
+int seek_sync (Bit_stream_struc *, long, int);
+unsigned int hget1bit (void); /* MI */
+unsigned long hgetbits (int);
+unsigned long hsstell (void);
+void hputbuf (unsigned int, int);