X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=bitstream.h;h=5875b0d090e6e8007d34766ee090950c819188dd;hp=ee32667eabc22ffc039b999ad9adfb3d495ce79f;hb=2b12fc963d15219721dd23eb7947bf516f2ad574;hpb=9b12b292d9b523f44174fc2b6827ec2f519b9235 diff --git a/bitstream.h b/bitstream.h index ee32667e..5875b0d0 100644 --- a/bitstream.h +++ b/bitstream.h @@ -37,7 +37,7 @@ static inline uint32_t show_bits(struct getbit_context *gbc, int num) { int idx = gbc->index; const uint8_t *p = gbc->buffer + (idx >> 3); - uint32_t x = ((p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3]); + uint32_t x = (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | p[3]; return (x << (idx & 7)) >> (32 - num); } @@ -62,7 +62,7 @@ static inline unsigned int get_bits(struct getbit_context *gbc, int n) 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))); + uint8_t tmp = gbc->buffer[idx >> 3], mask = 1 << (7 - (idx & 7)); return !!(tmp & mask); }