X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=bitstream.h;h=a6349861a55092fcdc1f957d7570621fd51e6834;hp=ee32667eabc22ffc039b999ad9adfb3d495ce79f;hb=11279193cca5441c834eb6f08c65ae82c9974307;hpb=9b12b292d9b523f44174fc2b6827ec2f519b9235 diff --git a/bitstream.h b/bitstream.h index ee32667e..a6349861 100644 --- a/bitstream.h +++ b/bitstream.h @@ -36,8 +36,8 @@ struct vlc { 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]); + const char *p = (const char *)gbc->buffer + (idx >> 3); + uint32_t x = read_u32_be(p); 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); }