Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/brotli/c/enc/command.c @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 /* Copyright 2013 Google Inc. All Rights Reserved. | |
| 2 | |
| 3 Distributed under MIT license. | |
| 4 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT | |
| 5 */ | |
| 6 | |
| 7 #include "command.h" | |
| 8 | |
| 9 #include <brotli/types.h> | |
| 10 | |
| 11 #if defined(__cplusplus) || defined(c_plusplus) | |
| 12 extern "C" { | |
| 13 #endif | |
| 14 | |
| 15 const uint32_t kBrotliInsBase[BROTLI_NUM_INS_COPY_CODES] = { | |
| 16 0, 1, 2, 3, 4, 5, 6, 8, 10, 14, 18, 26, | |
| 17 34, 50, 66, 98, 130, 194, 322, 578, 1090, 2114, 6210, 22594}; | |
| 18 const uint32_t kBrotliInsExtra[BROTLI_NUM_INS_COPY_CODES] = { | |
| 19 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 12, 14, 24}; | |
| 20 const uint32_t kBrotliCopyBase[BROTLI_NUM_INS_COPY_CODES] = { | |
| 21 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 18, | |
| 22 22, 30, 38, 54, 70, 102, 134, 198, 326, 582, 1094, 2118}; | |
| 23 const uint32_t kBrotliCopyExtra[BROTLI_NUM_INS_COPY_CODES] = { | |
| 24 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 7, 8, 9, 10, 24}; | |
| 25 | |
| 26 #if defined(__cplusplus) || defined(c_plusplus) | |
| 27 } /* extern "C" */ | |
| 28 #endif |
