(State s)
| 283 | } |
| 284 | |
| 285 | static int enableLargeWindow(State s) { |
| 286 | if (s.runningState != INITIALIZED) { |
| 287 | return Utils.makeError(s, BROTLI_PANIC_STATE_NOT_FRESH); |
| 288 | } |
| 289 | s.isLargeWindow = 1; |
| 290 | return BROTLI_OK; |
| 291 | } |
| 292 | |
| 293 | // TODO(eustas): do we need byte views? |
| 294 | static int attachDictionaryChunk(State s, byte[] data) { |
no test coverage detected