filebrowser/backend/vendor/github.com/andybalholm/brotli
Graham Steffaniak b928e6557c updated with a few changes
- git directory structure changed (no more src folder)
 - search now works with filesize larger/smaller than x MB
 - search currently allows for only one search request at a time
   - cancels older requests by having them immediately return null
2023-07-21 17:41:24 -05:00
..
LICENSE updated with a few changes 2023-07-21 17:41:24 -05:00
README.md updated with a few changes 2023-07-21 17:41:24 -05:00
backward_references.go updated with a few changes 2023-07-21 17:41:24 -05:00
backward_references_hq.go updated with a few changes 2023-07-21 17:41:24 -05:00
bit_cost.go updated with a few changes 2023-07-21 17:41:24 -05:00
bit_reader.go updated with a few changes 2023-07-21 17:41:24 -05:00
block_splitter.go updated with a few changes 2023-07-21 17:41:24 -05:00
block_splitter_command.go updated with a few changes 2023-07-21 17:41:24 -05:00
block_splitter_distance.go updated with a few changes 2023-07-21 17:41:24 -05:00
block_splitter_literal.go updated with a few changes 2023-07-21 17:41:24 -05:00
brotli_bit_stream.go updated with a few changes 2023-07-21 17:41:24 -05:00
cluster.go updated with a few changes 2023-07-21 17:41:24 -05:00
cluster_command.go updated with a few changes 2023-07-21 17:41:24 -05:00
cluster_distance.go updated with a few changes 2023-07-21 17:41:24 -05:00
cluster_literal.go updated with a few changes 2023-07-21 17:41:24 -05:00
command.go updated with a few changes 2023-07-21 17:41:24 -05:00
compress_fragment.go updated with a few changes 2023-07-21 17:41:24 -05:00
compress_fragment_two_pass.go updated with a few changes 2023-07-21 17:41:24 -05:00
constants.go updated with a few changes 2023-07-21 17:41:24 -05:00
context.go updated with a few changes 2023-07-21 17:41:24 -05:00
decode.go updated with a few changes 2023-07-21 17:41:24 -05:00
dictionary.go updated with a few changes 2023-07-21 17:41:24 -05:00
dictionary_hash.go updated with a few changes 2023-07-21 17:41:24 -05:00
encode.go updated with a few changes 2023-07-21 17:41:24 -05:00
encoder_dict.go updated with a few changes 2023-07-21 17:41:24 -05:00
entropy_encode.go updated with a few changes 2023-07-21 17:41:24 -05:00
entropy_encode_static.go updated with a few changes 2023-07-21 17:41:24 -05:00
fast_log.go updated with a few changes 2023-07-21 17:41:24 -05:00
find_match_length.go updated with a few changes 2023-07-21 17:41:24 -05:00
h5.go updated with a few changes 2023-07-21 17:41:24 -05:00
h6.go updated with a few changes 2023-07-21 17:41:24 -05:00
h10.go updated with a few changes 2023-07-21 17:41:24 -05:00
hash.go updated with a few changes 2023-07-21 17:41:24 -05:00
hash_composite.go updated with a few changes 2023-07-21 17:41:24 -05:00
hash_forgetful_chain.go updated with a few changes 2023-07-21 17:41:24 -05:00
hash_longest_match_quickly.go updated with a few changes 2023-07-21 17:41:24 -05:00
hash_rolling.go updated with a few changes 2023-07-21 17:41:24 -05:00
histogram.go updated with a few changes 2023-07-21 17:41:24 -05:00
http.go updated with a few changes 2023-07-21 17:41:24 -05:00
huffman.go updated with a few changes 2023-07-21 17:41:24 -05:00
literal_cost.go updated with a few changes 2023-07-21 17:41:24 -05:00
memory.go updated with a few changes 2023-07-21 17:41:24 -05:00
metablock.go updated with a few changes 2023-07-21 17:41:24 -05:00
metablock_command.go updated with a few changes 2023-07-21 17:41:24 -05:00
metablock_distance.go updated with a few changes 2023-07-21 17:41:24 -05:00
metablock_literal.go updated with a few changes 2023-07-21 17:41:24 -05:00
params.go updated with a few changes 2023-07-21 17:41:24 -05:00
platform.go updated with a few changes 2023-07-21 17:41:24 -05:00
prefix.go updated with a few changes 2023-07-21 17:41:24 -05:00
prefix_dec.go updated with a few changes 2023-07-21 17:41:24 -05:00
quality.go updated with a few changes 2023-07-21 17:41:24 -05:00
reader.go updated with a few changes 2023-07-21 17:41:24 -05:00
ringbuffer.go updated with a few changes 2023-07-21 17:41:24 -05:00
state.go updated with a few changes 2023-07-21 17:41:24 -05:00
static_dict.go updated with a few changes 2023-07-21 17:41:24 -05:00
static_dict_lut.go updated with a few changes 2023-07-21 17:41:24 -05:00
symbol_list.go updated with a few changes 2023-07-21 17:41:24 -05:00
transform.go updated with a few changes 2023-07-21 17:41:24 -05:00
utf8_util.go updated with a few changes 2023-07-21 17:41:24 -05:00
util.go updated with a few changes 2023-07-21 17:41:24 -05:00
write_bits.go updated with a few changes 2023-07-21 17:41:24 -05:00
writer.go updated with a few changes 2023-07-21 17:41:24 -05:00

README.md

This package is a brotli compressor and decompressor implemented in Go. It was translated from the reference implementation (https://github.com/google/brotli) with the c2go tool at https://github.com/andybalholm/c2go.

I am using it in production with https://github.com/andybalholm/redwood.

API documentation is found at https://pkg.go.dev/github.com/andybalholm/brotli?tab=doc.