2020-06-05 20:47:39 +00:00
|
|
|
package brotli
|
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
import "encoding/binary"
|
|
|
|
|
2020-06-05 20:47:39 +00:00
|
|
|
/* Copyright 2010 Google Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
Distributed under MIT license.
|
|
|
|
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Write bits into a byte array. */
|
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
/* This function writes bits into bytes in increasing addresses, and within
|
|
|
|
a byte least-significant-bit first.
|
2020-06-05 20:47:39 +00:00
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
The function can write up to 56 bits in one go with WriteBits
|
|
|
|
Example: let's assume that 3 bits (Rs below) have been written already:
|
2020-06-05 20:47:39 +00:00
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
BYTE-0 BYTE+1 BYTE+2
|
2020-10-16 05:06:27 +00:00
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
0000 0RRR 0000 0000 0000 0000
|
2020-10-16 05:06:27 +00:00
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
Now, we could write 5 or less bits in MSB by just sifting by 3
|
|
|
|
and OR'ing to BYTE-0.
|
2020-10-16 05:06:27 +00:00
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
For n bits, we take the last 5 bits, OR that with high bits in BYTE-0,
|
|
|
|
and locate the rest in BYTE+1, BYTE+2, etc. */
|
|
|
|
func writeBits(n_bits uint, bits uint64, pos *uint, array []byte) {
|
|
|
|
/* This branch of the code can write up to 56 bits at a time,
|
|
|
|
7 bits are lost by being perhaps already in *p and at least
|
|
|
|
1 bit is needed to initialize the bit-stream ahead (i.e. if 7
|
|
|
|
bits are in *p and we write 57 bits, then the next write will
|
|
|
|
access a byte that was never initialized). */
|
|
|
|
p := array[*pos>>3:]
|
|
|
|
v := uint64(p[0])
|
|
|
|
v |= bits << (*pos & 7)
|
|
|
|
binary.LittleEndian.PutUint64(p, v)
|
|
|
|
*pos += n_bits
|
2020-10-16 05:06:27 +00:00
|
|
|
}
|
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
func writeSingleBit(bit bool, pos *uint, array []byte) {
|
|
|
|
if bit {
|
|
|
|
writeBits(1, 1, pos, array)
|
|
|
|
} else {
|
|
|
|
writeBits(1, 0, pos, array)
|
|
|
|
}
|
2020-06-05 20:47:39 +00:00
|
|
|
}
|
|
|
|
|
2021-06-10 14:44:25 +00:00
|
|
|
func writeBitsPrepareStorage(pos uint, array []byte) {
|
|
|
|
assert(pos&7 == 0)
|
|
|
|
array[pos>>3] = 0
|
2020-06-05 20:47:39 +00:00
|
|
|
}
|