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
|
|
|
|
2016-08-22 19:28:22 +08:00
|
|
|
#include "../public/types.h"
|
2015-05-07 22:53:43 +08:00
|
|
|
#include "./port.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
|
|
|
|
enough space in accumulator to fix aligment. */
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#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
|