Commit 64917ea6 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/fastaudio: Remove redundant % 32

Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 5a844b63
......@@ -92,7 +92,7 @@ static int read_bits(int bits, int *ppos, unsigned *src)
r = src[(pos - 1) / 32] >> (32 - pos % 32);
*ppos = pos;
return r & ((1 << (bits % 32)) - 1);
return r & ((1 << bits) - 1);
}
static const uint8_t bits[8] = { 6, 6, 5, 5, 4, 0, 3, 3, };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment