X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=bitstream.h;h=e89ae1360d984c5979241061989153376ae80210;hp=07c65389081d9b4b979c5c556dc5e1a9d4ce75f1;hb=d4b77deab0304c7ba0a02a27b4b01e6af8334cbb;hpb=96d3bb449fbff0bee733fb311c23247c32a13ca1 diff --git a/bitstream.h b/bitstream.h index 07c65389..e89ae136 100644 --- a/bitstream.h +++ b/bitstream.h @@ -103,18 +103,6 @@ static inline unsigned int get_bits(struct getbit_context *s, int n) return tmp; } -/** - * Show 1-17 bits. - */ -static inline unsigned int show_bits(struct getbit_context *s, int n) -{ - register int tmp; - OPEN_READER(re, s) - UPDATE_CACHE(re, s) - tmp = SHOW_UBITS(re, s, n); - return tmp; -} - static inline void skip_bits(struct getbit_context *s, int n) { /* gcc seems to optimize this to s->index+=n for the ALT_READER :)) */