2013-12-16 21:45:57 +08:00
|
|
|
/* Copyright 2013 Google Inc. All Rights Reserved.
|
|
|
|
|
2015-12-11 18:11:51 +08:00
|
|
|
Distributed under MIT license.
|
2015-11-27 18:27:11 +08:00
|
|
|
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
2013-12-16 21:45:57 +08:00
|
|
|
*/
|
2013-10-11 16:26:07 +08:00
|
|
|
|
2015-03-20 22:44:15 +08:00
|
|
|
/* Bit reading helpers */
|
|
|
|
|
2013-10-11 16:26:07 +08:00
|
|
|
#include "./bit_reader.h"
|
2016-01-22 17:19:41 +08:00
|
|
|
|
2017-12-12 21:33:12 +08:00
|
|
|
#include "../common/platform.h"
|
2016-08-23 20:40:33 +08:00
|
|
|
#include <brotli/types.h>
|
2013-10-11 16:26:07 +08:00
|
|
|
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-11-06 18:46:04 +08:00
|
|
|
void BrotliInitBitReader(BrotliBitReader* const br) {
|
2013-10-11 16:26:07 +08:00
|
|
|
br->val_ = 0;
|
2015-09-23 18:24:06 +08:00
|
|
|
br->bit_pos_ = sizeof(br->val_) << 3;
|
2015-03-20 23:13:15 +08:00
|
|
|
}
|
|
|
|
|
2016-07-25 16:17:04 +08:00
|
|
|
BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br) {
|
2015-09-25 23:57:19 +08:00
|
|
|
size_t aligned_read_mask = (sizeof(br->val_) >> 1) - 1;
|
|
|
|
/* Fixing alignment after unaligned BrotliFillWindow would result accumulator
|
|
|
|
overflow. If unalignment is caused by BrotliSafeReadBits, then there is
|
2016-10-31 21:33:59 +08:00
|
|
|
enough space in accumulator to fix alignment. */
|
2015-09-25 23:57:19 +08:00
|
|
|
if (!BROTLI_ALIGNED_READ) {
|
|
|
|
aligned_read_mask = 0;
|
|
|
|
}
|
2015-11-06 18:46:04 +08:00
|
|
|
if (BrotliGetAvailableBits(br) == 0) {
|
|
|
|
if (!BrotliPullByte(br)) {
|
2016-07-25 16:17:04 +08:00
|
|
|
return BROTLI_FALSE;
|
2015-09-23 18:24:06 +08:00
|
|
|
}
|
2015-11-06 18:46:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
while ((((size_t)br->next_in) & aligned_read_mask) != 0) {
|
|
|
|
if (!BrotliPullByte(br)) {
|
|
|
|
/* If we consumed all the input, we don't care about the alignment. */
|
2016-07-25 16:17:04 +08:00
|
|
|
return BROTLI_TRUE;
|
2015-11-06 18:46:04 +08:00
|
|
|
}
|
2013-10-11 16:26:07 +08:00
|
|
|
}
|
2016-07-25 16:17:04 +08:00
|
|
|
return BROTLI_TRUE;
|
2013-10-11 16:26:07 +08:00
|
|
|
}
|
|
|
|
|
2019-04-12 19:57:42 +08:00
|
|
|
BROTLI_BOOL BrotliSafeReadBits32Slow(BrotliBitReader* const br,
|
|
|
|
uint32_t n_bits, uint32_t* val) {
|
|
|
|
uint32_t low_val;
|
|
|
|
uint32_t high_val;
|
|
|
|
BrotliBitReaderState memento;
|
|
|
|
BROTLI_DCHECK(n_bits <= 32);
|
|
|
|
BROTLI_DCHECK(n_bits > 24);
|
|
|
|
BrotliBitReaderSaveState(br, &memento);
|
|
|
|
if (!BrotliSafeReadBits(br, 16, &low_val) ||
|
|
|
|
!BrotliSafeReadBits(br, n_bits - 16, &high_val)) {
|
|
|
|
BrotliBitReaderRestoreState(br, &memento);
|
|
|
|
return BROTLI_FALSE;
|
|
|
|
}
|
|
|
|
*val = low_val | (high_val << 16);
|
|
|
|
return BROTLI_TRUE;
|
|
|
|
}
|
|
|
|
|
2013-10-11 16:26:07 +08:00
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
2016-02-18 22:03:44 +08:00
|
|
|
} /* extern "C" */
|
2013-10-11 16:26:07 +08:00
|
|
|
#endif
|