projects
/
paraslash.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Rename get_bits1() to get_bit().
[paraslash.git]
/
bitstream.h
diff --git
a/bitstream.h
b/bitstream.h
index
0c0a1eb
..
88b62f9
100644
(file)
--- a/
bitstream.h
+++ b/
bitstream.h
@@
-53,7
+53,7
@@
static inline unsigned int get_bits(struct getbit_context *gbc, int n)
}
/* This is rather hot, we can do better than get_bits(gbc, 1). */
}
/* This is rather hot, we can do better than get_bits(gbc, 1). */
-static inline unsigned int get_bit
s1
(struct getbit_context *gbc)
+static inline unsigned int get_bit(struct getbit_context *gbc)
{
int idx = gbc->index++;
uint8_t tmp = gbc->buffer[idx >> 3], mask = (1 << (7 - (idx & 7)));
{
int idx = gbc->index++;
uint8_t tmp = gbc->buffer[idx >> 3], mask = (1 << (7 - (idx & 7)));