aboutsummaryrefslogtreecommitdiff
path: root/c/enc/encode.c
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2018-10-24 16:06:09 +0200
committerGitHub <noreply@github.com>2018-10-24 16:06:09 +0200
commitd0ffe60b87aa5ec302fcb031c8ebf726c1a1692a (patch)
treea4963c527854ab3ee63c3f7fa9a7b99818000e2a /c/enc/encode.c
parentd6d98957ca8ccb1ef45922e978bb10efca0ea541 (diff)
downloadbrotli-d0ffe60b87aa5ec302fcb031c8ebf726c1a1692a.tar.gz
Verbose CLI + start pulling "Shared-Brotli" (#722)
* Verbose CLI + start pulling "Shared-Brotli" * vesbose CLI output; fix #666 * pull `SHIFT` transforms; currently this is semantically dead code; later it will be used by "Shared-Brotli"
Diffstat (limited to 'c/enc/encode.c')
-rw-r--r--c/enc/encode.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/c/enc/encode.c b/c/enc/encode.c
index 141e70a..c82f2d3 100644
--- a/c/enc/encode.c
+++ b/c/enc/encode.c
@@ -114,8 +114,6 @@ typedef struct BrotliEncoderStateStruct {
BROTLI_BOOL is_initialized_;
} BrotliEncoderStateStruct;
-static BROTLI_BOOL EnsureInitialized(BrotliEncoderState* s);
-
static size_t InputBlockSize(BrotliEncoderState* s) {
return (size_t)1 << s->params.lgblock;
}