This commit is contained in:
Sean Barrett 2020-07-13 03:06:50 -07:00
parent add7adc3ea
commit fb1cea02f8

View File

@ -1604,7 +1604,6 @@ static uint32 get_bits(vorb *f, int n)
} }
assert(f->valid_bits >= n); assert(f->valid_bits >= n);
z = f->acc & ((1 << n)-1); z = f->acc & ((1 << n)-1);
f->acc >>= n; f->acc >>= n;
f->valid_bits -= n; f->valid_bits -= n;