constants.c 623 B

123456789101112131415
  1. /* Copyright 2013 Google Inc. All Rights Reserved.
  2. Distributed under MIT license.
  3. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
  4. */
  5. #include "./constants.h"
  6. const BrotliPrefixCodeRange
  7. _kBrotliPrefixCodeRanges[BROTLI_NUM_BLOCK_LEN_SYMBOLS] = {
  8. {1, 2}, {5, 2}, {9, 2}, {13, 2}, {17, 3}, {25, 3},
  9. {33, 3}, {41, 3}, {49, 4}, {65, 4}, {81, 4}, {97, 4},
  10. {113, 5}, {145, 5}, {177, 5}, {209, 5}, {241, 6}, {305, 6},
  11. {369, 7}, {497, 8}, {753, 9}, {1265, 10}, {2289, 11}, {4337, 12},
  12. {8433, 13}, {16625, 24}};