diff options
author | Conrad Meyer <cem@FreeBSD.org> | 2018-10-22 19:50:43 +0000 |
---|---|---|
committer | Conrad Meyer <cem@FreeBSD.org> | 2018-10-22 19:50:43 +0000 |
commit | 42239e68a5cfba3b37b054425eace8d14e0844e3 (patch) | |
tree | aa5c91feac3537b39efa3d9e5f85b3315206a6ed /lib/common/bitstream.h | |
parent | 1767cc4987b68ace957ea34c20634485d4232611 (diff) |
Diffstat (limited to 'lib/common/bitstream.h')
-rw-r--r-- | lib/common/bitstream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/bitstream.h b/lib/common/bitstream.h index fcf3843079a34..f7f389fe0fa83 100644 --- a/lib/common/bitstream.h +++ b/lib/common/bitstream.h @@ -426,7 +426,7 @@ MEM_STATIC size_t BIT_readBitsFast(BIT_DStream_t* bitD, U32 nbBits) * Refill `bitD` from buffer previously set in BIT_initDStream() . * This function is safe, it guarantees it will not read beyond src buffer. * @return : status of `BIT_DStream_t` internal register. - * when status == BIT_DStream_unfinished, internal register is filled with at least 25 or 57 bits */ + * when status == BIT_DStream_unfinished, internal register is filled with at least 25 or 57 bits */ MEM_STATIC BIT_DStream_status BIT_reloadDStream(BIT_DStream_t* bitD) { if (bitD->bitsConsumed > (sizeof(bitD->bitContainer)*8)) /* overflow detected, like end of stream */ |