Skip to content
Snippets Groups Projects
Commit 1b5b67f6 authored by Brennan Shacklett's avatar Brennan Shacklett
Browse files

Fix style error in dkboolreader.h

Change-Id: I2fac92e356ed1c78039d63e9f8757e7df3d88756
parent 05a62c0a
No related branches found
No related tags found
2 merge requests!6Rav1e 11 yushin 1,!3Rav1e 10 yushin
......@@ -57,8 +57,8 @@ const uint8_t *aom_dk_reader_find_end(struct aom_dk_reader *r);
static INLINE ptrdiff_t aom_dk_reader_tell(const struct aom_dk_reader *r) {
const size_t bits_read = (r->buffer - r->buffer_start) * CHAR_BIT;
const int count = (r->count < LOTS_OF_BITS) ? r->count
: r->count - LOTS_OF_BITS;
const int count =
(r->count < LOTS_OF_BITS) ? r->count : r->count - LOTS_OF_BITS;
return bits_read + BD_VALUE_SIZE - (count + CHAR_BIT);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment