mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
[PR #114] [MERGED] Brotli custom LZ77 dictionary support. #724
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/google/brotli/pull/114
Author: @szabadka
Created: 6/12/2015
Status: ✅ Merged
Merged: 6/12/2015
Merged by: @szabadka
Base:
master← Head:master📝 Commits (1)
b43df8fBrotli custom LZ77 dictionary support.📊 Changes
8 files changed (+101 additions, -16 deletions)
View changed files
📝
dec/bit_reader.h(+0 -13)📝
dec/decode.c(+25 -3)📝
dec/decode.h(+13 -0)📝
dec/state.c(+3 -0)📝
dec/state.h(+4 -0)📝
enc/encode.cc(+18 -0)📝
enc/encode.h(+13 -0)📝
enc/hash.h(+25 -0)📄 Description
Adds functions to prepend such dictionary to the
encoder and decoder, and twiddles their internal
parameters to do as if that was a previous part of
the input. This dictionary is just a prefilled LZ77
window, it is not related to the built in transformable
brotli dictionary.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.