2013-12-16 13:45:57 +00:00
|
|
|
/* Copyright 2013 Google Inc. All Rights Reserved.
|
|
|
|
|
2015-12-11 10:11:51 +00:00
|
|
|
Distributed under MIT license.
|
2015-11-27 10:27:11 +00:00
|
|
|
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
2013-12-16 13:45:57 +00:00
|
|
|
*/
|
2013-10-11 08:26:07 +00:00
|
|
|
|
2015-03-20 14:44:15 +00:00
|
|
|
/* Bit reading helpers */
|
|
|
|
|
2013-10-11 08:26:07 +00:00
|
|
|
#include "./bit_reader.h"
|
2016-01-22 09:19:41 +00:00
|
|
|
|
2016-08-23 12:40:33 +00:00
|
|
|
#include <brotli/types.h>
|
2015-05-07 14:53:43 +00:00
|
|
|
#include "./port.h"
|
2013-10-11 08:26:07 +00:00
|
|
|
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-11-06 10:46:04 +00:00
|
|
|
void BrotliInitBitReader(BrotliBitReader* const br) {
|
2013-10-11 08:26:07 +00:00
|
|
|
br->val_ = 0;
|
2015-09-23 10:24:06 +00:00
|
|
|
br->bit_pos_ = sizeof(br->val_) << 3;
|
2015-03-20 15:13:15 +00:00
|
|
|
}
|
|
|
|
|
2016-07-25 08:17:04 +00:00
|
|
|
BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br) {
|
2015-09-25 15:57:19 +00: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 13:33:59 +00:00
|
|
|
enough space in accumulator to fix alignment. */
|
2015-09-25 15:57:19 +00:00
|
|
|
if (!BROTLI_ALIGNED_READ) {
|
|
|
|
aligned_read_mask = 0;
|
|
|
|
}
|
2015-11-06 10:46:04 +00:00
|
|
|
if (BrotliGetAvailableBits(br) == 0) {
|
|
|
|
if (!BrotliPullByte(br)) {
|
2016-07-25 08:17:04 +00:00
|
|
|
return BROTLI_FALSE;
|
2015-09-23 10:24:06 +00:00
|
|
|
}
|
2015-11-06 10:46:04 +00: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 08:17:04 +00:00
|
|
|
return BROTLI_TRUE;
|
2015-11-06 10:46:04 +00:00
|
|
|
}
|
2013-10-11 08:26:07 +00:00
|
|
|
}
|
2016-07-25 08:17:04 +00:00
|
|
|
return BROTLI_TRUE;
|
2013-10-11 08:26:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
2016-02-18 14:03:44 +00:00
|
|
|
} /* extern "C" */
|
2013-10-11 08:26:07 +00:00
|
|
|
#endif
|