]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - bitstream.h
Remove unused show_bits().
[paraslash.git] / bitstream.h
index 07c65389081d9b4b979c5c556dc5e1a9d4ce75f1..e89ae1360d984c5979241061989153376ae80210 100644 (file)
@@ -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 :)) */