projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96d3bb4
)
Remove unused show_bits().
author
Andre Noll
<maan@systemlinux.org>
Sun, 18 Oct 2009 15:24:18 +0000
(17:24 +0200)
committer
Andre Noll
<maan@systemlinux.org>
Wed, 18 Nov 2009 18:34:21 +0000
(19:34 +0100)
bitstream.h
patch
|
blob
|
history
diff --git
a/bitstream.h
b/bitstream.h
index
07c6538
..
e89ae13
100644
(file)
--- 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 :)) */