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;
|
2015-09-23 10:24:06 +00:00
|
|
|
br->bit_pos_ = sizeof(br->val_) << 3;
|
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-28 13:20:24 +00:00
|
|
|
br->next_in = br->buf_;
|
2015-03-20 15:13:15 +00:00
|
|
|
}
|
|
|
|
|
2015-09-23 10:24:06 +00:00
|
|
|
int BrotliWarmupBitReader(BrotliBitReader* const br) {
|
|
|
|
if (br->bit_pos_ == (sizeof(br->val_) << 3)) {
|
|
|
|
if (!br->avail_in) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
br->bit_pos_ -= 8;
|
|
|
|
br->val_ = *br->next_in;
|
|
|
|
br->val_ <<= br->bit_pos_;
|
|
|
|
br->next_in++;
|
|
|
|
br->avail_in--;
|
2013-10-11 08:26:07 +00:00
|
|
|
}
|
2015-09-23 10:24:06 +00:00
|
|
|
return 1;
|
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
|