]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
Remove unused show_bits().
authorAndre Noll <maan@systemlinux.org>
Sun, 18 Oct 2009 15:24:18 +0000 (17:24 +0200)
committerAndre Noll <maan@systemlinux.org>
Wed, 18 Nov 2009 18:34:21 +0000 (19:34 +0100)
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 :)) */