2013-12-16 13:45:57 +00:00
|
|
|
/* Copyright 2013 Google Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2013-10-11 08:26:07 +00:00
|
|
|
|
2015-03-20 14:44:15 +00:00
|
|
|
/* Bit reading helpers */
|
|
|
|
|
2013-11-15 18:02:17 +00:00
|
|
|
#include <stdlib.h>
|
2013-10-11 08:26:07 +00:00
|
|
|
|
|
|
|
#include "./bit_reader.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-08-10 11:35:23 +00:00
|
|
|
void BrotliInitBitReader(BrotliBitReader* const br, BrotliInput input) {
|
2015-05-07 14:53:43 +00:00
|
|
|
BROTLI_DCHECK(br != NULL);
|
2013-10-11 08:26:07 +00:00
|
|
|
|
2013-11-15 18:02:17 +00:00
|
|
|
br->input_ = input;
|
2013-10-11 08:26:07 +00:00
|
|
|
br->val_ = 0;
|
|
|
|
br->bit_pos_ = 0;
|
2015-08-10 11:35:23 +00:00
|
|
|
br->avail_in = 0;
|
2013-10-11 08:26:07 +00:00
|
|
|
br->eos_ = 0;
|
2015-08-10 11:35:23 +00:00
|
|
|
br->tmp_bytes_read_ = 0;
|
|
|
|
br->next_in = NULL;
|
2015-03-20 15:13:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-10 11:35:23 +00:00
|
|
|
void BrotliWarmupBitReader(BrotliBitReader* const br) {
|
2015-03-20 15:13:15 +00:00
|
|
|
size_t i;
|
2015-08-10 11:35:23 +00:00
|
|
|
br->val_ = 0;
|
2013-11-15 18:02:17 +00:00
|
|
|
for (i = 0; i < sizeof(br->val_); ++i) {
|
2015-08-10 12:18:37 +00:00
|
|
|
#if (BROTLI_64_BITS_LITTLE_ENDIAN)
|
2015-08-10 11:35:23 +00:00
|
|
|
br->val_ |= ((uint64_t)*br->next_in) << (8 * i);
|
2015-08-10 12:18:37 +00:00
|
|
|
#else
|
|
|
|
br->val_ |= ((uint32_t)*br->next_in) << (8 * i);
|
|
|
|
#endif
|
2015-08-10 11:35:23 +00:00
|
|
|
++br->next_in;
|
|
|
|
--br->avail_in;
|
2013-10-11 08:26:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__cplusplus) || defined(c_plusplus)
|
2013-12-16 13:45:57 +00:00
|
|
|
} /* extern "C" */
|
2013-10-11 08:26:07 +00:00
|
|
|
#endif
|