Revert "[hpack] Huffman read optimization" (#33655)
Reverts grpc/grpc#33269
This commit is contained in:
parent
20dfe78d95
commit
57c697d8ae
|
|
@ -36,4 +36,3 @@ src/core/debug/stats_data.cc linguist-generated=true
|
|||
src/core/experiments/experiments.h linguist-generated=true
|
||||
src/core/experiments/experiments.cc linguist-generated=true
|
||||
bazel/experiments.bzl linguist-generated=true
|
||||
test/cpp/microbenchmarks/huffman_geometries/** linguist-generated=true
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -1 +0,0 @@
|
|||
<EFBFBD><EFBFBD><11>
|
||||
|
|
@ -150,12 +150,8 @@ grpc_cc_test(
|
|||
tags = [
|
||||
"no_mac",
|
||||
"no_windows",
|
||||
"nomsan",
|
||||
],
|
||||
deps = [
|
||||
":helpers",
|
||||
"//test/cpp/microbenchmarks/huffman_geometries",
|
||||
],
|
||||
deps = [":helpers"],
|
||||
)
|
||||
|
||||
grpc_cc_test(
|
||||
|
|
|
|||
|
|
@ -17,64 +17,44 @@
|
|||
|
||||
#include <benchmark/benchmark.h>
|
||||
|
||||
#include "absl/strings/escaping.h"
|
||||
|
||||
#include "src/core/ext/transport/chttp2/transport/bin_encoder.h"
|
||||
#include "src/core/ext/transport/chttp2/transport/decode_huff.h"
|
||||
#include "src/core/lib/gprpp/no_destruct.h"
|
||||
#include "src/core/lib/slice/slice.h"
|
||||
#include "test/core/util/test_config.h"
|
||||
#include "test/cpp/microbenchmarks/huffman_geometries/index.h"
|
||||
|
||||
std::vector<uint8_t> MakeInput(int min, int max) {
|
||||
std::vector<uint8_t> v;
|
||||
std::uniform_int_distribution<> distribution(min, max);
|
||||
static std::mt19937 rd(0);
|
||||
v.reserve(1024 * 1024);
|
||||
for (int i = 0; i < 1024 * 1024; i++) {
|
||||
v.push_back(distribution(rd));
|
||||
}
|
||||
grpc_core::Slice s = grpc_core::Slice::FromCopiedBuffer(v);
|
||||
grpc_core::Slice c(grpc_chttp2_huffman_compress(s.c_slice()));
|
||||
return std::vector<uint8_t>(c.begin(), c.end());
|
||||
const std::vector<uint8_t>* Input() {
|
||||
static const grpc_core::NoDestruct<std::vector<uint8_t>> v([]() {
|
||||
std::vector<uint8_t> v;
|
||||
std::mt19937 rd(0);
|
||||
std::uniform_int_distribution<> dist_ty(0, 100);
|
||||
std::uniform_int_distribution<> dist_byte(0, 255);
|
||||
std::uniform_int_distribution<> dist_normal(32, 126);
|
||||
for (int i = 0; i < 1024 * 1024; i++) {
|
||||
if (dist_ty(rd) == 1) {
|
||||
v.push_back(dist_byte(rd));
|
||||
} else {
|
||||
v.push_back(dist_normal(rd));
|
||||
}
|
||||
}
|
||||
grpc_core::Slice s = grpc_core::Slice::FromCopiedBuffer(v);
|
||||
grpc_core::Slice c(grpc_chttp2_huffman_compress(s.c_slice()));
|
||||
return std::vector<uint8_t>(c.begin(), c.end());
|
||||
}());
|
||||
return v.get();
|
||||
}
|
||||
|
||||
std::vector<uint8_t> MakeBase64() {
|
||||
auto src = MakeInput(0, 255);
|
||||
auto s = absl::Base64Escape(
|
||||
absl::string_view(reinterpret_cast<char*>(src.data()), src.size()));
|
||||
return std::vector<uint8_t>(s.begin(), s.end());
|
||||
}
|
||||
|
||||
static const grpc_core::NoDestruct<std::vector<uint8_t>> kAllChars{
|
||||
MakeInput(0, 255)};
|
||||
static const grpc_core::NoDestruct<std::vector<uint8_t>> kAsciiChars{
|
||||
MakeInput(32, 126)};
|
||||
static const grpc_core::NoDestruct<std::vector<uint8_t>> kAlphaChars{
|
||||
MakeInput('a', 'z')};
|
||||
static const grpc_core::NoDestruct<std::vector<uint8_t>> kBase64Chars{
|
||||
MakeBase64()};
|
||||
|
||||
template <template <typename Sink> class Decoder>
|
||||
static void BM_Decode(benchmark::State& state,
|
||||
const std::vector<uint8_t>* chars) {
|
||||
static void BM_Decode(benchmark::State& state) {
|
||||
std::vector<uint8_t> output;
|
||||
auto add = [&output](uint8_t c) { output.push_back(c); };
|
||||
for (auto _ : state) {
|
||||
output.clear();
|
||||
Decoder<decltype(add)>(add, chars->data(), chars->data() + chars->size())
|
||||
grpc_core::HuffDecoder<decltype(add)>(add, Input()->data(),
|
||||
Input()->data() + Input()->size())
|
||||
.Run();
|
||||
}
|
||||
}
|
||||
|
||||
#define DECL_BENCHMARK(cls, name) \
|
||||
static auto name = BM_Decode<cls>; \
|
||||
BENCHMARK_CAPTURE(name, all_chars, &*kAllChars); \
|
||||
BENCHMARK_CAPTURE(name, base64_chars, &*kBase64Chars); \
|
||||
BENCHMARK_CAPTURE(name, ascii_chars, &*kAsciiChars); \
|
||||
BENCHMARK_CAPTURE(name, alpha_chars, &*kAlphaChars)
|
||||
|
||||
DECL_HUFFMAN_VARIANTS();
|
||||
BENCHMARK(BM_Decode);
|
||||
|
||||
// Some distros have RunSpecifiedBenchmarks under the benchmark namespace,
|
||||
// and others do not. This allows us to support both modes.
|
||||
|
|
@ -85,6 +65,7 @@ void RunTheBenchmarksNamespaced() { RunSpecifiedBenchmarks(); }
|
|||
int main(int argc, char** argv) {
|
||||
grpc::testing::TestEnvironment env(&argc, argv);
|
||||
benchmark::Initialize(&argc, argv);
|
||||
Input(); // Force initialization of input data.
|
||||
benchmark::RunTheBenchmarksNamespaced();
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,262 +0,0 @@
|
|||
# Copyright 2023 gRPC authors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# This file is autogenerated: see tools/codegen/core/gen_huffman_decompressor.cc
|
||||
|
||||
load("//bazel:grpc_build_system.bzl", "grpc_cc_library", "grpc_package")
|
||||
|
||||
licenses(["notice"])
|
||||
|
||||
grpc_package(
|
||||
name = "test/cpp/microbenchmarks/huffman_geometries",
|
||||
visibility = "public",
|
||||
)
|
||||
|
||||
grpc_cc_library(
|
||||
name = "huffman_geometries",
|
||||
srcs = [
|
||||
"decode_huff_10_10_10.cc",
|
||||
"decode_huff_10_11_9.cc",
|
||||
"decode_huff_10_12_8.cc",
|
||||
"decode_huff_10_13_7.cc",
|
||||
"decode_huff_10_14_6.cc",
|
||||
"decode_huff_10_15_5.cc",
|
||||
"decode_huff_10_16.cc",
|
||||
"decode_huff_10_5_15.cc",
|
||||
"decode_huff_10_6_14.cc",
|
||||
"decode_huff_10_7_13.cc",
|
||||
"decode_huff_10_8_12.cc",
|
||||
"decode_huff_10_9_11.cc",
|
||||
"decode_huff_11_10_9.cc",
|
||||
"decode_huff_11_11_8.cc",
|
||||
"decode_huff_11_12_7.cc",
|
||||
"decode_huff_11_13_6.cc",
|
||||
"decode_huff_11_14_5.cc",
|
||||
"decode_huff_11_15.cc",
|
||||
"decode_huff_11_16.cc",
|
||||
"decode_huff_11_5_14.cc",
|
||||
"decode_huff_11_6_13.cc",
|
||||
"decode_huff_11_7_12.cc",
|
||||
"decode_huff_11_8_11.cc",
|
||||
"decode_huff_11_9_10.cc",
|
||||
"decode_huff_12_10_8.cc",
|
||||
"decode_huff_12_11_7.cc",
|
||||
"decode_huff_12_12_6.cc",
|
||||
"decode_huff_12_13_5.cc",
|
||||
"decode_huff_12_14.cc",
|
||||
"decode_huff_12_15.cc",
|
||||
"decode_huff_12_16.cc",
|
||||
"decode_huff_12_5_13.cc",
|
||||
"decode_huff_12_6_12.cc",
|
||||
"decode_huff_12_7_11.cc",
|
||||
"decode_huff_12_8_10.cc",
|
||||
"decode_huff_12_9_9.cc",
|
||||
"decode_huff_13_10_7.cc",
|
||||
"decode_huff_13_11_6.cc",
|
||||
"decode_huff_13_12_5.cc",
|
||||
"decode_huff_13_13.cc",
|
||||
"decode_huff_13_14.cc",
|
||||
"decode_huff_13_15.cc",
|
||||
"decode_huff_13_16.cc",
|
||||
"decode_huff_13_5_12.cc",
|
||||
"decode_huff_13_6_11.cc",
|
||||
"decode_huff_13_7_10.cc",
|
||||
"decode_huff_13_8_9.cc",
|
||||
"decode_huff_13_9_8.cc",
|
||||
"decode_huff_14_10_6.cc",
|
||||
"decode_huff_14_11_5.cc",
|
||||
"decode_huff_14_12.cc",
|
||||
"decode_huff_14_13.cc",
|
||||
"decode_huff_14_14.cc",
|
||||
"decode_huff_14_15.cc",
|
||||
"decode_huff_14_16.cc",
|
||||
"decode_huff_14_5_11.cc",
|
||||
"decode_huff_14_6_10.cc",
|
||||
"decode_huff_14_7_9.cc",
|
||||
"decode_huff_14_8_8.cc",
|
||||
"decode_huff_14_9_7.cc",
|
||||
"decode_huff_15_10_5.cc",
|
||||
"decode_huff_15_11.cc",
|
||||
"decode_huff_15_12.cc",
|
||||
"decode_huff_15_13.cc",
|
||||
"decode_huff_15_14.cc",
|
||||
"decode_huff_15_15.cc",
|
||||
"decode_huff_15_5_10.cc",
|
||||
"decode_huff_15_6_9.cc",
|
||||
"decode_huff_15_7_8.cc",
|
||||
"decode_huff_15_8_7.cc",
|
||||
"decode_huff_15_9_6.cc",
|
||||
"decode_huff_16_10.cc",
|
||||
"decode_huff_16_11.cc",
|
||||
"decode_huff_16_12.cc",
|
||||
"decode_huff_16_13.cc",
|
||||
"decode_huff_16_14.cc",
|
||||
"decode_huff_16_5_9.cc",
|
||||
"decode_huff_16_6_8.cc",
|
||||
"decode_huff_16_7_7.cc",
|
||||
"decode_huff_16_8_6.cc",
|
||||
"decode_huff_16_9_5.cc",
|
||||
"decode_huff_7_10_13.cc",
|
||||
"decode_huff_7_11_12.cc",
|
||||
"decode_huff_7_12_11.cc",
|
||||
"decode_huff_7_13_10.cc",
|
||||
"decode_huff_7_14_9.cc",
|
||||
"decode_huff_7_15_8.cc",
|
||||
"decode_huff_7_16_7.cc",
|
||||
"decode_huff_7_7_16.cc",
|
||||
"decode_huff_7_8_15.cc",
|
||||
"decode_huff_7_9_14.cc",
|
||||
"decode_huff_8_10_12.cc",
|
||||
"decode_huff_8_11_11.cc",
|
||||
"decode_huff_8_12_10.cc",
|
||||
"decode_huff_8_13_9.cc",
|
||||
"decode_huff_8_14_8.cc",
|
||||
"decode_huff_8_15_7.cc",
|
||||
"decode_huff_8_16_6.cc",
|
||||
"decode_huff_8_6_16.cc",
|
||||
"decode_huff_8_7_15.cc",
|
||||
"decode_huff_8_8_14.cc",
|
||||
"decode_huff_8_9_13.cc",
|
||||
"decode_huff_9_10_11.cc",
|
||||
"decode_huff_9_11_10.cc",
|
||||
"decode_huff_9_12_9.cc",
|
||||
"decode_huff_9_13_8.cc",
|
||||
"decode_huff_9_14_7.cc",
|
||||
"decode_huff_9_15_6.cc",
|
||||
"decode_huff_9_16_5.cc",
|
||||
"decode_huff_9_5_16.cc",
|
||||
"decode_huff_9_6_15.cc",
|
||||
"decode_huff_9_7_14.cc",
|
||||
"decode_huff_9_8_13.cc",
|
||||
"decode_huff_9_9_12.cc",
|
||||
],
|
||||
hdrs = [
|
||||
"decode_huff_10_10_10.h",
|
||||
"decode_huff_10_11_9.h",
|
||||
"decode_huff_10_12_8.h",
|
||||
"decode_huff_10_13_7.h",
|
||||
"decode_huff_10_14_6.h",
|
||||
"decode_huff_10_15_5.h",
|
||||
"decode_huff_10_16.h",
|
||||
"decode_huff_10_5_15.h",
|
||||
"decode_huff_10_6_14.h",
|
||||
"decode_huff_10_7_13.h",
|
||||
"decode_huff_10_8_12.h",
|
||||
"decode_huff_10_9_11.h",
|
||||
"decode_huff_11_10_9.h",
|
||||
"decode_huff_11_11_8.h",
|
||||
"decode_huff_11_12_7.h",
|
||||
"decode_huff_11_13_6.h",
|
||||
"decode_huff_11_14_5.h",
|
||||
"decode_huff_11_15.h",
|
||||
"decode_huff_11_16.h",
|
||||
"decode_huff_11_5_14.h",
|
||||
"decode_huff_11_6_13.h",
|
||||
"decode_huff_11_7_12.h",
|
||||
"decode_huff_11_8_11.h",
|
||||
"decode_huff_11_9_10.h",
|
||||
"decode_huff_12_10_8.h",
|
||||
"decode_huff_12_11_7.h",
|
||||
"decode_huff_12_12_6.h",
|
||||
"decode_huff_12_13_5.h",
|
||||
"decode_huff_12_14.h",
|
||||
"decode_huff_12_15.h",
|
||||
"decode_huff_12_16.h",
|
||||
"decode_huff_12_5_13.h",
|
||||
"decode_huff_12_6_12.h",
|
||||
"decode_huff_12_7_11.h",
|
||||
"decode_huff_12_8_10.h",
|
||||
"decode_huff_12_9_9.h",
|
||||
"decode_huff_13_10_7.h",
|
||||
"decode_huff_13_11_6.h",
|
||||
"decode_huff_13_12_5.h",
|
||||
"decode_huff_13_13.h",
|
||||
"decode_huff_13_14.h",
|
||||
"decode_huff_13_15.h",
|
||||
"decode_huff_13_16.h",
|
||||
"decode_huff_13_5_12.h",
|
||||
"decode_huff_13_6_11.h",
|
||||
"decode_huff_13_7_10.h",
|
||||
"decode_huff_13_8_9.h",
|
||||
"decode_huff_13_9_8.h",
|
||||
"decode_huff_14_10_6.h",
|
||||
"decode_huff_14_11_5.h",
|
||||
"decode_huff_14_12.h",
|
||||
"decode_huff_14_13.h",
|
||||
"decode_huff_14_14.h",
|
||||
"decode_huff_14_15.h",
|
||||
"decode_huff_14_16.h",
|
||||
"decode_huff_14_5_11.h",
|
||||
"decode_huff_14_6_10.h",
|
||||
"decode_huff_14_7_9.h",
|
||||
"decode_huff_14_8_8.h",
|
||||
"decode_huff_14_9_7.h",
|
||||
"decode_huff_15_10_5.h",
|
||||
"decode_huff_15_11.h",
|
||||
"decode_huff_15_12.h",
|
||||
"decode_huff_15_13.h",
|
||||
"decode_huff_15_14.h",
|
||||
"decode_huff_15_15.h",
|
||||
"decode_huff_15_5_10.h",
|
||||
"decode_huff_15_6_9.h",
|
||||
"decode_huff_15_7_8.h",
|
||||
"decode_huff_15_8_7.h",
|
||||
"decode_huff_15_9_6.h",
|
||||
"decode_huff_16_10.h",
|
||||
"decode_huff_16_11.h",
|
||||
"decode_huff_16_12.h",
|
||||
"decode_huff_16_13.h",
|
||||
"decode_huff_16_14.h",
|
||||
"decode_huff_16_5_9.h",
|
||||
"decode_huff_16_6_8.h",
|
||||
"decode_huff_16_7_7.h",
|
||||
"decode_huff_16_8_6.h",
|
||||
"decode_huff_16_9_5.h",
|
||||
"decode_huff_7_10_13.h",
|
||||
"decode_huff_7_11_12.h",
|
||||
"decode_huff_7_12_11.h",
|
||||
"decode_huff_7_13_10.h",
|
||||
"decode_huff_7_14_9.h",
|
||||
"decode_huff_7_15_8.h",
|
||||
"decode_huff_7_16_7.h",
|
||||
"decode_huff_7_7_16.h",
|
||||
"decode_huff_7_8_15.h",
|
||||
"decode_huff_7_9_14.h",
|
||||
"decode_huff_8_10_12.h",
|
||||
"decode_huff_8_11_11.h",
|
||||
"decode_huff_8_12_10.h",
|
||||
"decode_huff_8_13_9.h",
|
||||
"decode_huff_8_14_8.h",
|
||||
"decode_huff_8_15_7.h",
|
||||
"decode_huff_8_16_6.h",
|
||||
"decode_huff_8_6_16.h",
|
||||
"decode_huff_8_7_15.h",
|
||||
"decode_huff_8_8_14.h",
|
||||
"decode_huff_8_9_13.h",
|
||||
"decode_huff_9_10_11.h",
|
||||
"decode_huff_9_11_10.h",
|
||||
"decode_huff_9_12_9.h",
|
||||
"decode_huff_9_13_8.h",
|
||||
"decode_huff_9_14_7.h",
|
||||
"decode_huff_9_15_6.h",
|
||||
"decode_huff_9_16_5.h",
|
||||
"decode_huff_9_5_16.h",
|
||||
"decode_huff_9_6_15.h",
|
||||
"decode_huff_9_7_14.h",
|
||||
"decode_huff_9_8_13.h",
|
||||
"decode_huff_9_9_12.h",
|
||||
"index.h",
|
||||
],
|
||||
deps = ["//:gpr_platform"],
|
||||
)
|
||||
|
|
@ -1,725 +0,0 @@
|
|||
// Copyright 2023 gRPC authors.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// This file is autogenerated: see
|
||||
// tools/codegen/core/gen_huffman_decompressor.cc
|
||||
|
||||
#include <grpc/support/port_platform.h>
|
||||
|
||||
#include "test/cpp/microbenchmarks/huffman_geometries/decode_huff_10_10_10.h"
|
||||
namespace grpc_core {
|
||||
namespace geometry_10_10_10 {
|
||||
const uint8_t HuffDecoderCommon::table2_0_emit_[10] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table2_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table3_0_emit_[36] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20, 0x25,
|
||||
0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3d, 0x41,
|
||||
0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70, 0x72, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table3_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x29, 0x2d,
|
||||
0x31, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x59,
|
||||
0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85,
|
||||
0x89, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table4_0_emit_[22] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20,
|
||||
0x25, 0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table4_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00,
|
||||
0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2d,
|
||||
0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41, 0x00,
|
||||
0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table4_1_emit_[46] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70,
|
||||
0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,
|
||||
0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56,
|
||||
0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78, 0x79, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table4_1_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49,
|
||||
0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75,
|
||||
0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1,
|
||||
0xa5, 0xa9, 0xad, 0xb1, 0xb5, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table4_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table4_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table4_ops_[2] = {
|
||||
table4_0_ops_,
|
||||
table4_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table5_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29,
|
||||
0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35,
|
||||
0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41,
|
||||
0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d,
|
||||
0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table5_1_emit_[52] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e,
|
||||
0x70, 0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,
|
||||
0x54, 0x55, 0x56, 0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78,
|
||||
0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table5_1_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d,
|
||||
0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55,
|
||||
0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6d,
|
||||
0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81, 0x00, 0x85,
|
||||
0x00, 0x89, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x95, 0x00, 0x99, 0x00, 0x9d,
|
||||
0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xad, 0x00, 0xb1, 0x00, 0xb5,
|
||||
0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table5_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table5_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table5_ops_[2] = {
|
||||
table5_0_ops_,
|
||||
table5_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table6_0_emit_[2] = {0x30, 0x31};
|
||||
const uint8_t HuffDecoderCommon::table6_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05};
|
||||
const uint8_t HuffDecoderCommon::table6_1_emit_[2] = {0x32, 0x61};
|
||||
const uint8_t HuffDecoderCommon::table6_2_emit_[2] = {0x63, 0x65};
|
||||
const uint8_t HuffDecoderCommon::table6_3_emit_[2] = {0x69, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table6_4_emit_[2] = {0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table6_5_emit_[4] = {0x20, 0x25, 0x2d, 0x2e};
|
||||
const uint8_t HuffDecoderCommon::table6_5_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d};
|
||||
const uint8_t HuffDecoderCommon::table6_6_emit_[4] = {0x2f, 0x33, 0x34, 0x35};
|
||||
const uint8_t HuffDecoderCommon::table6_7_emit_[4] = {0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table6_8_emit_[4] = {0x3d, 0x41, 0x5f, 0x62};
|
||||
const uint8_t HuffDecoderCommon::table6_9_emit_[4] = {0x64, 0x66, 0x67, 0x68};
|
||||
const uint8_t HuffDecoderCommon::table6_10_emit_[4] = {0x6c, 0x6d, 0x6e, 0x70};
|
||||
const uint8_t HuffDecoderCommon::table6_11_emit_[6] = {0x72, 0x75, 0x3a,
|
||||
0x42, 0x43, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table6_11_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
|
||||
0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15};
|
||||
const uint8_t HuffDecoderCommon::table6_12_emit_[8] = {0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table6_12_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d};
|
||||
const uint8_t HuffDecoderCommon::table6_13_emit_[8] = {0x4d, 0x4e, 0x4f, 0x50,
|
||||
0x51, 0x52, 0x53, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table6_14_emit_[8] = {0x55, 0x56, 0x57, 0x59,
|
||||
0x6a, 0x6b, 0x71, 0x76};
|
||||
const uint8_t HuffDecoderCommon::table6_15_emit_[10] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table6_15_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19,
|
||||
0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table6_emit_[16] = {
|
||||
table6_0_emit_, table6_1_emit_, table6_2_emit_, table6_3_emit_,
|
||||
table6_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table6_15_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table6_ops_[16] = {
|
||||
table6_0_ops_, table6_0_ops_, table6_0_ops_, table6_0_ops_,
|
||||
table6_0_ops_, table6_5_ops_, table6_5_ops_, table6_5_ops_,
|
||||
table6_5_ops_, table6_5_ops_, table6_5_ops_, table6_11_ops_,
|
||||
table6_12_ops_, table6_12_ops_, table6_12_ops_, table6_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table1_0_emit_[36] = {
|
||||
0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x61, 0x30, 0x63, 0x30, 0x65, 0x30,
|
||||
0x69, 0x30, 0x6f, 0x30, 0x73, 0x30, 0x74, 0x31, 0x31, 0x32, 0x31, 0x61,
|
||||
0x31, 0x63, 0x31, 0x65, 0x31, 0x69, 0x31, 0x6f, 0x31, 0x73, 0x31, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_0_inner_[22] = {
|
||||
0x000a, 0x008a, 0x018a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x010a, 0x098a, 0x0a0a, 0x0b0a, 0x0c0a,
|
||||
0x0d0a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0115};
|
||||
const uint8_t HuffDecoderCommon::table1_0_outer_[64] = {
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10, 10, 10,
|
||||
10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
||||
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21,
|
||||
21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21};
|
||||
const uint8_t HuffDecoderCommon::table1_1_emit_[36] = {
|
||||
0x32, 0x30, 0x32, 0x31, 0x32, 0x32, 0x61, 0x32, 0x63, 0x32, 0x65, 0x32,
|
||||
0x69, 0x32, 0x6f, 0x32, 0x73, 0x32, 0x74, 0x61, 0x30, 0x61, 0x31, 0x61,
|
||||
0x61, 0x63, 0x61, 0x65, 0x61, 0x69, 0x61, 0x6f, 0x61, 0x73, 0x61, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_1_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x030a, 0x0b8a, 0x0c0a,
|
||||
0x0d0a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0315};
|
||||
const uint8_t HuffDecoderCommon::table1_2_emit_[36] = {
|
||||
0x63, 0x30, 0x63, 0x31, 0x63, 0x32, 0x63, 0x61, 0x63, 0x63, 0x65, 0x63,
|
||||
0x69, 0x63, 0x6f, 0x63, 0x73, 0x63, 0x74, 0x65, 0x30, 0x65, 0x31, 0x65,
|
||||
0x32, 0x65, 0x61, 0x65, 0x65, 0x69, 0x65, 0x6f, 0x65, 0x73, 0x65, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_2_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x0b8a, 0x0c8a, 0x050a,
|
||||
0x0d8a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0515};
|
||||
const uint8_t HuffDecoderCommon::table1_3_emit_[36] = {
|
||||
0x69, 0x30, 0x69, 0x31, 0x69, 0x32, 0x69, 0x61, 0x69, 0x63, 0x69, 0x65,
|
||||
0x69, 0x69, 0x6f, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x30, 0x6f, 0x31, 0x6f,
|
||||
0x32, 0x6f, 0x61, 0x6f, 0x63, 0x6f, 0x65, 0x6f, 0x6f, 0x73, 0x6f, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_3_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x0b8a, 0x0c8a, 0x0d8a,
|
||||
0x0e8a, 0x070a, 0x0f8a, 0x100a, 0x110a, 0x0715};
|
||||
const uint8_t HuffDecoderCommon::table1_4_emit_[38] = {
|
||||
0x73, 0x30, 0x73, 0x31, 0x73, 0x32, 0x73, 0x61, 0x73, 0x63,
|
||||
0x73, 0x65, 0x73, 0x69, 0x73, 0x6f, 0x73, 0x73, 0x74, 0x30,
|
||||
0x74, 0x31, 0x74, 0x32, 0x74, 0x61, 0x74, 0x63, 0x74, 0x65,
|
||||
0x74, 0x69, 0x74, 0x6f, 0x74, 0x73, 0x74, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_4_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x080a, 0x088a, 0x0015, 0x090a, 0x0a0a, 0x0b0a, 0x0c0a, 0x0d0a,
|
||||
0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x120a, 0x0915};
|
||||
const uint16_t HuffDecoderCommon::table1_5_inner_[4] = {0x0016, 0x0096, 0x0116,
|
||||
0x0196};
|
||||
const uint8_t HuffDecoderCommon::table1_5_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3};
|
||||
const uint16_t HuffDecoderCommon::table1_11_inner_[6] = {
|
||||
0x0016, 0x0096, 0x0117, 0x0197, 0x0217, 0x0297};
|
||||
const uint8_t HuffDecoderCommon::table1_11_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3,
|
||||
3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5};
|
||||
const uint16_t HuffDecoderCommon::table1_12_inner_[8] = {
|
||||
0x0017, 0x0097, 0x0117, 0x0197, 0x0217, 0x0297, 0x0317, 0x0397};
|
||||
const uint8_t HuffDecoderCommon::table1_12_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5,
|
||||
5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7};
|
||||
const uint8_t HuffDecoderCommon::table1_15_emit_[15] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b,
|
||||
0x58, 0x5a, 0x21, 0x22, 0x28, 0x29, 0x3f};
|
||||
const uint16_t HuffDecoderCommon::table1_15_inner_[18] = {
|
||||
0x0017, 0x0097, 0x0117, 0x0197, 0x0218, 0x0298, 0x0318, 0x0398, 0x0418,
|
||||
0x0498, 0x051a, 0x059a, 0x061a, 0x069a, 0x071a, 0x002a, 0x003a, 0x004a};
|
||||
const uint8_t HuffDecoderCommon::table1_15_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6,
|
||||
7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 10, 11, 12, 13, 14, 15, 16, 17};
|
||||
const uint8_t* const HuffDecoderCommon::table1_emit_[16] = {
|
||||
table1_0_emit_, table1_1_emit_, table1_2_emit_, table1_3_emit_,
|
||||
table1_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table1_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table1_inner_[16] = {
|
||||
table1_0_inner_, table1_1_inner_, table1_2_inner_, table1_3_inner_,
|
||||
table1_4_inner_, table1_5_inner_, table1_5_inner_, table1_5_inner_,
|
||||
table1_5_inner_, table1_5_inner_, table1_5_inner_, table1_11_inner_,
|
||||
table1_12_inner_, table1_12_inner_, table1_12_inner_, table1_15_inner_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table1_outer_[16] = {
|
||||
table1_0_outer_, table1_0_outer_, table1_0_outer_, table1_0_outer_,
|
||||
table1_0_outer_, table1_5_outer_, table1_5_outer_, table1_5_outer_,
|
||||
table1_5_outer_, table1_5_outer_, table1_5_outer_, table1_11_outer_,
|
||||
table1_12_outer_, table1_12_outer_, table1_12_outer_, table1_15_outer_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table9_0_emit_[6] = {0x00, 0x24, 0x40,
|
||||
0x5b, 0x5d, 0x7e};
|
||||
const uint8_t HuffDecoderCommon::table9_0_inner_[8] = {0x00, 0x04, 0x08, 0x0c,
|
||||
0x10, 0x14, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table10_0_emit_[8] = {0x00, 0x24, 0x40, 0x5b,
|
||||
0x5d, 0x7e, 0x5e, 0x7d};
|
||||
const uint8_t HuffDecoderCommon::table10_0_inner_[10] = {
|
||||
0x00, 0x01, 0x05, 0x09, 0x0d, 0x11, 0x15, 0x19, 0x1d, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table10_0_outer_[16] = {
|
||||
0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 7, 8, 0, 9};
|
||||
const uint8_t HuffDecoderCommon::table11_0_emit_[11] = {
|
||||
0x00, 0x24, 0x40, 0x5b, 0x5d, 0x7e, 0x5e, 0x7d, 0x3c, 0x60, 0x7b};
|
||||
const uint8_t HuffDecoderCommon::table11_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x19, 0x00, 0x1d, 0x21, 0x25, 0x29, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table12_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
|
||||
0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table13_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25,
|
||||
0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table14_0_emit_[40] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63,
|
||||
0x00, 0x65, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74,
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63,
|
||||
0x24, 0x65, 0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_0_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x48, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x50,
|
||||
0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x90, 0x98, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x52};
|
||||
const uint8_t HuffDecoderCommon::table14_1_emit_[40] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63,
|
||||
0x40, 0x65, 0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74,
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63,
|
||||
0x5b, 0x65, 0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_2_emit_[40] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63,
|
||||
0x5d, 0x65, 0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74,
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63,
|
||||
0x7e, 0x65, 0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_3_emit_[5] = {0x5e, 0x7d, 0x3c, 0x60,
|
||||
0x7b};
|
||||
const uint8_t HuffDecoderCommon::table14_3_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x12, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table14_emit_[4] = {
|
||||
table14_0_emit_,
|
||||
table14_1_emit_,
|
||||
table14_2_emit_,
|
||||
table14_3_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table14_ops_[4] = {
|
||||
table14_0_ops_,
|
||||
table14_0_ops_,
|
||||
table14_0_ops_,
|
||||
table14_3_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table15_0_emit_[72] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65,
|
||||
0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x25,
|
||||
0x00, 0x2d, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35,
|
||||
0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41,
|
||||
0x00, 0x5f, 0x00, 0x62, 0x00, 0x64, 0x00, 0x66, 0x00, 0x67, 0x00, 0x68,
|
||||
0x00, 0x6c, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x70, 0x00, 0x72, 0x00, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table15_0_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0051, 0x0059, 0x0061, 0x0069,
|
||||
0x0071, 0x0079, 0x0081, 0x0089, 0x0091, 0x0099, 0x00a1, 0x00a9,
|
||||
0x00b1, 0x00b9, 0x00c1, 0x00c9, 0x00d1, 0x00d9, 0x00e1, 0x00e9,
|
||||
0x00f1, 0x00f9, 0x0101, 0x0109, 0x0111, 0x0119, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table15_1_emit_[72] = {
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63, 0x24, 0x65,
|
||||
0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74, 0x24, 0x20, 0x24, 0x25,
|
||||
0x24, 0x2d, 0x24, 0x2e, 0x24, 0x2f, 0x24, 0x33, 0x24, 0x34, 0x24, 0x35,
|
||||
0x24, 0x36, 0x24, 0x37, 0x24, 0x38, 0x24, 0x39, 0x24, 0x3d, 0x24, 0x41,
|
||||
0x24, 0x5f, 0x24, 0x62, 0x24, 0x64, 0x24, 0x66, 0x24, 0x67, 0x24, 0x68,
|
||||
0x24, 0x6c, 0x24, 0x6d, 0x24, 0x6e, 0x24, 0x70, 0x24, 0x72, 0x24, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_2_emit_[72] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63, 0x40, 0x65,
|
||||
0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74, 0x40, 0x20, 0x40, 0x25,
|
||||
0x40, 0x2d, 0x40, 0x2e, 0x40, 0x2f, 0x40, 0x33, 0x40, 0x34, 0x40, 0x35,
|
||||
0x40, 0x36, 0x40, 0x37, 0x40, 0x38, 0x40, 0x39, 0x40, 0x3d, 0x40, 0x41,
|
||||
0x40, 0x5f, 0x40, 0x62, 0x40, 0x64, 0x40, 0x66, 0x40, 0x67, 0x40, 0x68,
|
||||
0x40, 0x6c, 0x40, 0x6d, 0x40, 0x6e, 0x40, 0x70, 0x40, 0x72, 0x40, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_3_emit_[72] = {
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63, 0x5b, 0x65,
|
||||
0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74, 0x5b, 0x20, 0x5b, 0x25,
|
||||
0x5b, 0x2d, 0x5b, 0x2e, 0x5b, 0x2f, 0x5b, 0x33, 0x5b, 0x34, 0x5b, 0x35,
|
||||
0x5b, 0x36, 0x5b, 0x37, 0x5b, 0x38, 0x5b, 0x39, 0x5b, 0x3d, 0x5b, 0x41,
|
||||
0x5b, 0x5f, 0x5b, 0x62, 0x5b, 0x64, 0x5b, 0x66, 0x5b, 0x67, 0x5b, 0x68,
|
||||
0x5b, 0x6c, 0x5b, 0x6d, 0x5b, 0x6e, 0x5b, 0x70, 0x5b, 0x72, 0x5b, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_4_emit_[72] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d, 0x65,
|
||||
0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20, 0x5d, 0x25,
|
||||
0x5d, 0x2d, 0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d, 0x34, 0x5d, 0x35,
|
||||
0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39, 0x5d, 0x3d, 0x5d, 0x41,
|
||||
0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66, 0x5d, 0x67, 0x5d, 0x68,
|
||||
0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70, 0x5d, 0x72, 0x5d, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_5_emit_[72] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e, 0x65,
|
||||
0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20, 0x7e, 0x25,
|
||||
0x7e, 0x2d, 0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e, 0x34, 0x7e, 0x35,
|
||||
0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39, 0x7e, 0x3d, 0x7e, 0x41,
|
||||
0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66, 0x7e, 0x67, 0x7e, 0x68,
|
||||
0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70, 0x7e, 0x72, 0x7e, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_6_emit_[40] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63,
|
||||
0x5e, 0x65, 0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74,
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63,
|
||||
0x7d, 0x65, 0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table15_6_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0051, 0x0059, 0x0061, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0052};
|
||||
const uint8_t HuffDecoderCommon::table15_7_emit_[6] = {0x3c, 0x60, 0x7b,
|
||||
0x5c, 0xc3, 0xd0};
|
||||
const uint16_t HuffDecoderCommon::table15_7_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000a,
|
||||
0x000e, 0x0012, 0x0016, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table15_emit_[8] = {
|
||||
table15_0_emit_, table15_1_emit_, table15_2_emit_, table15_3_emit_,
|
||||
table15_4_emit_, table15_5_emit_, table15_6_emit_, table15_7_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table15_ops_[8] = {
|
||||
table15_0_ops_, table15_0_ops_, table15_0_ops_, table15_0_ops_,
|
||||
table15_0_ops_, table15_0_ops_, table15_6_ops_, table15_7_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table8_0_emit_[1] = {0x00};
|
||||
const uint16_t HuffDecoderCommon::table8_0_ops_[64] = {
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003};
|
||||
const uint8_t HuffDecoderCommon::table8_2_emit_[1] = {0x24};
|
||||
const uint8_t HuffDecoderCommon::table8_4_emit_[1] = {0x40};
|
||||
const uint8_t HuffDecoderCommon::table8_6_emit_[1] = {0x5b};
|
||||
const uint8_t HuffDecoderCommon::table8_8_emit_[1] = {0x5d};
|
||||
const uint8_t HuffDecoderCommon::table8_10_emit_[1] = {0x7e};
|
||||
const uint8_t HuffDecoderCommon::table8_12_emit_[1] = {0x5e};
|
||||
const uint16_t HuffDecoderCommon::table8_12_ops_[64] = {
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004};
|
||||
const uint8_t HuffDecoderCommon::table8_13_emit_[1] = {0x7d};
|
||||
const uint8_t HuffDecoderCommon::table8_14_emit_[2] = {0x3c, 0x60};
|
||||
const uint16_t HuffDecoderCommon::table8_14_ops_[64] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205,
|
||||
0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205,
|
||||
0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205,
|
||||
0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205};
|
||||
const uint8_t HuffDecoderCommon::table8_15_emit_[12] = {
|
||||
0x7b, 0x5c, 0xc3, 0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0, 0xe2};
|
||||
const uint16_t HuffDecoderCommon::table8_15_ops_[64] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0209, 0x0209, 0x0409, 0x0409, 0x0609, 0x0609, 0x080a, 0x0a0a,
|
||||
0x0c0a, 0x0e0a, 0x100a, 0x120a, 0x140a, 0x160a, 0x001a, 0x002a,
|
||||
0x003a, 0x004a, 0x005a, 0x006a, 0x007a, 0x008a, 0x009a, 0x00aa,
|
||||
0x00ba, 0x00ca, 0x00da, 0x00ea, 0x00fa, 0x010a, 0x011a, 0x012a};
|
||||
const uint8_t* const HuffDecoderCommon::table8_emit_[16] = {
|
||||
table8_0_emit_, table8_0_emit_, table8_2_emit_, table8_2_emit_,
|
||||
table8_4_emit_, table8_4_emit_, table8_6_emit_, table8_6_emit_,
|
||||
table8_8_emit_, table8_8_emit_, table8_10_emit_, table8_10_emit_,
|
||||
table8_12_emit_, table8_13_emit_, table8_14_emit_, table8_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table8_ops_[16] = {
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_12_ops_, table8_12_ops_, table8_14_ops_, table8_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table28_0_emit_[8] = {0x01, 0x87, 0x89, 0x8a,
|
||||
0x8b, 0x8c, 0x8d, 0x8f};
|
||||
const uint8_t HuffDecoderCommon::table28_0_inner_[8] = {0x03, 0x07, 0x0b, 0x0f,
|
||||
0x13, 0x17, 0x1b, 0x1f};
|
||||
const uint8_t HuffDecoderCommon::table29_0_emit_[8] = {0x93, 0x95, 0x96, 0x97,
|
||||
0x98, 0x9b, 0x9d, 0x9e};
|
||||
const uint8_t HuffDecoderCommon::table30_0_emit_[8] = {0xa5, 0xa6, 0xa8, 0xae,
|
||||
0xaf, 0xb4, 0xb6, 0xb7};
|
||||
const uint8_t HuffDecoderCommon::table34_0_emit_[5] = {0xbc, 0xbf, 0xc5, 0xe7,
|
||||
0xef};
|
||||
const uint8_t HuffDecoderCommon::table34_0_inner_[6] = {0x00, 0x02, 0x04,
|
||||
0x06, 0x08, 0x01};
|
||||
const uint8_t HuffDecoderCommon::table33_0_emit_[11] = {
|
||||
0xbc, 0xbf, 0xc5, 0xe7, 0xef, 0x09, 0x8e, 0x90, 0x91, 0x94, 0x9f};
|
||||
const uint8_t HuffDecoderCommon::table33_0_inner_[11] = {
|
||||
0x03, 0x0b, 0x13, 0x1b, 0x23, 0x2c, 0x34, 0x3c, 0x44, 0x4c, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table36_0_emit_[6] = {0xab, 0xce, 0xd7,
|
||||
0xe1, 0xec, 0xed};
|
||||
const uint8_t HuffDecoderCommon::table37_0_emit_[10] = {
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table37_0_ops_[32] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x19, 0x1d, 0x21, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table38_0_emit_[25] = {
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea,
|
||||
0xeb, 0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5,
|
||||
0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff};
|
||||
const uint8_t HuffDecoderCommon::table38_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x29,
|
||||
0x2d, 0x31, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49, 0x4d, 0x51, 0x55,
|
||||
0x59, 0x5d, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table39_0_emit_[44] = {
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb, 0xc0,
|
||||
0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee, 0xf0,
|
||||
0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf,
|
||||
0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe};
|
||||
const uint8_t HuffDecoderCommon::table39_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2d, 0x00, 0x31, 0x00, 0x35,
|
||||
0x00, 0x39, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d,
|
||||
0x00, 0x51, 0x00, 0x55, 0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x65, 0x69,
|
||||
0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99,
|
||||
0x9d, 0xa1, 0xa5, 0xa9, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table40_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25};
|
||||
const uint8_t HuffDecoderCommon::table40_1_emit_[63] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee,
|
||||
0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde,
|
||||
0xdf, 0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd,
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x0b, 0x0c, 0x0e,
|
||||
0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a,
|
||||
0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint8_t HuffDecoderCommon::table40_1_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39,
|
||||
0x00, 0x3d, 0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51,
|
||||
0x00, 0x55, 0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69,
|
||||
0x00, 0x6d, 0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81,
|
||||
0x00, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1, 0xa5, 0xa9, 0xad,
|
||||
0xb1, 0xb5, 0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0xd1, 0xd5, 0xd9, 0xdd,
|
||||
0xe1, 0xe5, 0xe9, 0xed, 0xf1, 0xf5, 0xf9, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table40_emit_[2] = {
|
||||
table37_0_emit_,
|
||||
table40_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table40_ops_[2] = {
|
||||
table40_0_ops_,
|
||||
table40_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table41_0_emit_[40] = {
|
||||
0xab, 0x30, 0xab, 0x31, 0xab, 0x32, 0xab, 0x61, 0xab, 0x63,
|
||||
0xab, 0x65, 0xab, 0x69, 0xab, 0x6f, 0xab, 0x73, 0xab, 0x74,
|
||||
0xce, 0x30, 0xce, 0x31, 0xce, 0x32, 0xce, 0x61, 0xce, 0x63,
|
||||
0xce, 0x65, 0xce, 0x69, 0xce, 0x6f, 0xce, 0x73, 0xce, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table41_1_emit_[40] = {
|
||||
0xd7, 0x30, 0xd7, 0x31, 0xd7, 0x32, 0xd7, 0x61, 0xd7, 0x63,
|
||||
0xd7, 0x65, 0xd7, 0x69, 0xd7, 0x6f, 0xd7, 0x73, 0xd7, 0x74,
|
||||
0xe1, 0x30, 0xe1, 0x31, 0xe1, 0x32, 0xe1, 0x61, 0xe1, 0x63,
|
||||
0xe1, 0x65, 0xe1, 0x69, 0xe1, 0x6f, 0xe1, 0x73, 0xe1, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table41_2_emit_[40] = {
|
||||
0xec, 0x30, 0xec, 0x31, 0xec, 0x32, 0xec, 0x61, 0xec, 0x63,
|
||||
0xec, 0x65, 0xec, 0x69, 0xec, 0x6f, 0xec, 0x73, 0xec, 0x74,
|
||||
0xed, 0x30, 0xed, 0x31, 0xed, 0x32, 0xed, 0x61, 0xed, 0x63,
|
||||
0xed, 0x65, 0xed, 0x69, 0xed, 0x6f, 0xed, 0x73, 0xed, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table41_3_emit_[4] = {0xc7, 0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table41_3_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e};
|
||||
const uint8_t HuffDecoderCommon::table41_4_emit_[8] = {0xc0, 0xc1, 0xc8, 0xc9,
|
||||
0xca, 0xcd, 0xd2, 0xd5};
|
||||
const uint8_t HuffDecoderCommon::table41_4_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x12, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x16, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x1a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x1e};
|
||||
const uint8_t HuffDecoderCommon::table41_5_emit_[9] = {
|
||||
0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc};
|
||||
const uint8_t HuffDecoderCommon::table41_5_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x12, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x16, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x1a, 0x01, 0x01, 0x01, 0x1e, 0x01, 0x01, 0x01, 0x22};
|
||||
const uint8_t HuffDecoderCommon::table41_6_emit_[16] = {
|
||||
0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf, 0xf1, 0xf4,
|
||||
0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint8_t HuffDecoderCommon::table41_6_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01,
|
||||
0x0a, 0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x12, 0x01, 0x01,
|
||||
0x01, 0x16, 0x01, 0x01, 0x01, 0x1a, 0x01, 0x01, 0x01, 0x1e, 0x01,
|
||||
0x01, 0x01, 0x22, 0x01, 0x01, 0x01, 0x26, 0x01, 0x01, 0x01, 0x2a,
|
||||
0x01, 0x01, 0x01, 0x2e, 0x01, 0x01, 0x01, 0x32, 0x01, 0x01, 0x01,
|
||||
0x36, 0x01, 0x01, 0x01, 0x3a, 0x01, 0x01, 0x01, 0x3e};
|
||||
const uint8_t HuffDecoderCommon::table41_7_emit_[30] = {
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x0b, 0x0c,
|
||||
0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18,
|
||||
0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint8_t HuffDecoderCommon::table41_7_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x02, 0x01, 0x06, 0x01, 0x0a, 0x01, 0x0e, 0x01,
|
||||
0x12, 0x01, 0x16, 0x01, 0x1a, 0x01, 0x1e, 0x01, 0x22, 0x01, 0x26,
|
||||
0x01, 0x2a, 0x01, 0x2e, 0x01, 0x32, 0x01, 0x36, 0x01, 0x3a, 0x01,
|
||||
0x3e, 0x01, 0x42, 0x01, 0x46, 0x01, 0x4a, 0x01, 0x4e, 0x01, 0x52,
|
||||
0x01, 0x56, 0x01, 0x5a, 0x01, 0x5e, 0x01, 0x62, 0x01, 0x66, 0x01,
|
||||
0x6a, 0x01, 0x6e, 0x01, 0x72, 0x01, 0x76, 0x01, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table41_emit_[8] = {
|
||||
table41_0_emit_, table41_1_emit_, table41_2_emit_, table41_3_emit_,
|
||||
table41_4_emit_, table41_5_emit_, table41_6_emit_, table41_7_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table41_ops_[8] = {
|
||||
table14_0_ops_, table14_0_ops_, table14_0_ops_, table41_3_ops_,
|
||||
table41_4_ops_, table41_5_ops_, table41_6_ops_, table41_7_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table35_0_emit_[1] = {0xab};
|
||||
const uint8_t HuffDecoderCommon::table35_1_emit_[1] = {0xce};
|
||||
const uint8_t HuffDecoderCommon::table35_2_emit_[1] = {0xd7};
|
||||
const uint8_t HuffDecoderCommon::table35_3_emit_[1] = {0xe1};
|
||||
const uint8_t HuffDecoderCommon::table35_4_emit_[1] = {0xec};
|
||||
const uint8_t HuffDecoderCommon::table35_5_emit_[1] = {0xed};
|
||||
const uint8_t HuffDecoderCommon::table35_6_emit_[2] = {0xc7, 0xcf};
|
||||
const uint16_t HuffDecoderCommon::table35_6_ops_[64] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025};
|
||||
const uint8_t HuffDecoderCommon::table35_7_emit_[2] = {0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table35_8_emit_[4] = {0xc0, 0xc1, 0xc8, 0xc9};
|
||||
const uint16_t HuffDecoderCommon::table35_8_ops_[64] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066,
|
||||
0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066};
|
||||
const uint8_t HuffDecoderCommon::table35_9_emit_[4] = {0xca, 0xcd, 0xd2, 0xd5};
|
||||
const uint8_t HuffDecoderCommon::table35_10_emit_[4] = {0xda, 0xdb, 0xee, 0xf0};
|
||||
const uint8_t HuffDecoderCommon::table35_11_emit_[5] = {0xf2, 0xf3, 0xff, 0xcb,
|
||||
0xcc};
|
||||
const uint16_t HuffDecoderCommon::table35_11_ops_[64] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087};
|
||||
const uint8_t HuffDecoderCommon::table35_12_emit_[8] = {0xd3, 0xd4, 0xd6, 0xdd,
|
||||
0xde, 0xdf, 0xf1, 0xf4};
|
||||
const uint16_t HuffDecoderCommon::table35_12_ops_[64] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007,
|
||||
0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047,
|
||||
0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087,
|
||||
0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00a7,
|
||||
0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00c7,
|
||||
0x00e7, 0x00e7, 0x00e7, 0x00e7, 0x00e7, 0x00e7, 0x00e7, 0x00e7};
|
||||
const uint8_t HuffDecoderCommon::table35_13_emit_[8] = {0xf5, 0xf6, 0xf7, 0xf8,
|
||||
0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint8_t HuffDecoderCommon::table35_14_emit_[15] = {
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
|
||||
0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11, 0x12};
|
||||
const uint16_t HuffDecoderCommon::table35_14_ops_[64] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007,
|
||||
0x0028, 0x0028, 0x0028, 0x0028, 0x0048, 0x0048, 0x0048, 0x0048,
|
||||
0x0068, 0x0068, 0x0068, 0x0068, 0x0088, 0x0088, 0x0088, 0x0088,
|
||||
0x00a8, 0x00a8, 0x00a8, 0x00a8, 0x00c8, 0x00c8, 0x00c8, 0x00c8,
|
||||
0x00e8, 0x00e8, 0x00e8, 0x00e8, 0x0108, 0x0108, 0x0108, 0x0108,
|
||||
0x0128, 0x0128, 0x0128, 0x0128, 0x0148, 0x0148, 0x0148, 0x0148,
|
||||
0x0168, 0x0168, 0x0168, 0x0168, 0x0188, 0x0188, 0x0188, 0x0188,
|
||||
0x01a8, 0x01a8, 0x01a8, 0x01a8, 0x01c8, 0x01c8, 0x01c8, 0x01c8};
|
||||
const uint8_t HuffDecoderCommon::table35_15_emit_[18] = {
|
||||
0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c,
|
||||
0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9, 0x0a, 0x0d, 0x16};
|
||||
const uint16_t HuffDecoderCommon::table35_15_ops_[64] = {
|
||||
0x0008, 0x0008, 0x0008, 0x0008, 0x0028, 0x0028, 0x0028, 0x0028,
|
||||
0x0048, 0x0048, 0x0048, 0x0048, 0x0068, 0x0068, 0x0068, 0x0068,
|
||||
0x0088, 0x0088, 0x0088, 0x0088, 0x00a8, 0x00a8, 0x00a8, 0x00a8,
|
||||
0x00c8, 0x00c8, 0x00c8, 0x00c8, 0x00e8, 0x00e8, 0x00e8, 0x00e8,
|
||||
0x0108, 0x0108, 0x0108, 0x0108, 0x0128, 0x0128, 0x0128, 0x0128,
|
||||
0x0148, 0x0148, 0x0148, 0x0148, 0x0168, 0x0168, 0x0168, 0x0168,
|
||||
0x0188, 0x0188, 0x0188, 0x0188, 0x01a8, 0x01a8, 0x01a8, 0x01a8,
|
||||
0x01c8, 0x01c8, 0x01c8, 0x01c8, 0x01ea, 0x020a, 0x022a, 0x001a};
|
||||
const uint8_t* const HuffDecoderCommon::table35_emit_[16] = {
|
||||
table35_0_emit_, table35_1_emit_, table35_2_emit_, table35_3_emit_,
|
||||
table35_4_emit_, table35_5_emit_, table35_6_emit_, table35_7_emit_,
|
||||
table35_8_emit_, table35_9_emit_, table35_10_emit_, table35_11_emit_,
|
||||
table35_12_emit_, table35_13_emit_, table35_14_emit_, table35_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table35_ops_[16] = {
|
||||
table8_12_ops_, table8_12_ops_, table8_12_ops_, table8_12_ops_,
|
||||
table8_12_ops_, table8_12_ops_, table35_6_ops_, table35_6_ops_,
|
||||
table35_8_ops_, table35_8_ops_, table35_8_ops_, table35_11_ops_,
|
||||
table35_12_ops_, table35_12_ops_, table35_14_ops_, table35_15_ops_,
|
||||
};
|
||||
} // namespace geometry_10_10_10
|
||||
} // namespace grpc_core
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,766 +0,0 @@
|
|||
// Copyright 2023 gRPC authors.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// This file is autogenerated: see
|
||||
// tools/codegen/core/gen_huffman_decompressor.cc
|
||||
|
||||
#include <grpc/support/port_platform.h>
|
||||
|
||||
#include "test/cpp/microbenchmarks/huffman_geometries/decode_huff_10_11_9.h"
|
||||
namespace grpc_core {
|
||||
namespace geometry_10_11_9 {
|
||||
const uint8_t HuffDecoderCommon::table2_0_emit_[10] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table2_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table3_0_emit_[36] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20, 0x25,
|
||||
0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3d, 0x41,
|
||||
0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70, 0x72, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table3_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x29, 0x2d,
|
||||
0x31, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x59,
|
||||
0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85,
|
||||
0x89, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table4_0_emit_[22] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20,
|
||||
0x25, 0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table4_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00,
|
||||
0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2d,
|
||||
0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41, 0x00,
|
||||
0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table4_1_emit_[46] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70,
|
||||
0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,
|
||||
0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56,
|
||||
0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78, 0x79, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table4_1_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49,
|
||||
0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75,
|
||||
0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1,
|
||||
0xa5, 0xa9, 0xad, 0xb1, 0xb5, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table4_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table4_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table4_ops_[2] = {
|
||||
table4_0_ops_,
|
||||
table4_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table5_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29,
|
||||
0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35,
|
||||
0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41,
|
||||
0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d,
|
||||
0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table5_1_emit_[52] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e,
|
||||
0x70, 0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,
|
||||
0x54, 0x55, 0x56, 0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78,
|
||||
0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table5_1_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d,
|
||||
0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55,
|
||||
0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6d,
|
||||
0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81, 0x00, 0x85,
|
||||
0x00, 0x89, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x95, 0x00, 0x99, 0x00, 0x9d,
|
||||
0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xad, 0x00, 0xb1, 0x00, 0xb5,
|
||||
0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table5_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table5_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table5_ops_[2] = {
|
||||
table5_0_ops_,
|
||||
table5_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table6_0_emit_[2] = {0x30, 0x31};
|
||||
const uint8_t HuffDecoderCommon::table6_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05};
|
||||
const uint8_t HuffDecoderCommon::table6_1_emit_[2] = {0x32, 0x61};
|
||||
const uint8_t HuffDecoderCommon::table6_2_emit_[2] = {0x63, 0x65};
|
||||
const uint8_t HuffDecoderCommon::table6_3_emit_[2] = {0x69, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table6_4_emit_[2] = {0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table6_5_emit_[4] = {0x20, 0x25, 0x2d, 0x2e};
|
||||
const uint8_t HuffDecoderCommon::table6_5_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d};
|
||||
const uint8_t HuffDecoderCommon::table6_6_emit_[4] = {0x2f, 0x33, 0x34, 0x35};
|
||||
const uint8_t HuffDecoderCommon::table6_7_emit_[4] = {0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table6_8_emit_[4] = {0x3d, 0x41, 0x5f, 0x62};
|
||||
const uint8_t HuffDecoderCommon::table6_9_emit_[4] = {0x64, 0x66, 0x67, 0x68};
|
||||
const uint8_t HuffDecoderCommon::table6_10_emit_[4] = {0x6c, 0x6d, 0x6e, 0x70};
|
||||
const uint8_t HuffDecoderCommon::table6_11_emit_[6] = {0x72, 0x75, 0x3a,
|
||||
0x42, 0x43, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table6_11_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
|
||||
0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15};
|
||||
const uint8_t HuffDecoderCommon::table6_12_emit_[8] = {0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table6_12_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d};
|
||||
const uint8_t HuffDecoderCommon::table6_13_emit_[8] = {0x4d, 0x4e, 0x4f, 0x50,
|
||||
0x51, 0x52, 0x53, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table6_14_emit_[8] = {0x55, 0x56, 0x57, 0x59,
|
||||
0x6a, 0x6b, 0x71, 0x76};
|
||||
const uint8_t HuffDecoderCommon::table6_15_emit_[10] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table6_15_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19,
|
||||
0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table6_emit_[16] = {
|
||||
table6_0_emit_, table6_1_emit_, table6_2_emit_, table6_3_emit_,
|
||||
table6_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table6_15_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table6_ops_[16] = {
|
||||
table6_0_ops_, table6_0_ops_, table6_0_ops_, table6_0_ops_,
|
||||
table6_0_ops_, table6_5_ops_, table6_5_ops_, table6_5_ops_,
|
||||
table6_5_ops_, table6_5_ops_, table6_5_ops_, table6_11_ops_,
|
||||
table6_12_ops_, table6_12_ops_, table6_12_ops_, table6_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table1_0_emit_[36] = {
|
||||
0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x61, 0x30, 0x63, 0x30, 0x65, 0x30,
|
||||
0x69, 0x30, 0x6f, 0x30, 0x73, 0x30, 0x74, 0x31, 0x31, 0x32, 0x31, 0x61,
|
||||
0x31, 0x63, 0x31, 0x65, 0x31, 0x69, 0x31, 0x6f, 0x31, 0x73, 0x31, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_0_inner_[22] = {
|
||||
0x000a, 0x008a, 0x018a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x010a, 0x098a, 0x0a0a, 0x0b0a, 0x0c0a,
|
||||
0x0d0a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0115};
|
||||
const uint8_t HuffDecoderCommon::table1_0_outer_[64] = {
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10, 10, 10,
|
||||
10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
||||
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21,
|
||||
21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21};
|
||||
const uint8_t HuffDecoderCommon::table1_1_emit_[36] = {
|
||||
0x32, 0x30, 0x32, 0x31, 0x32, 0x32, 0x61, 0x32, 0x63, 0x32, 0x65, 0x32,
|
||||
0x69, 0x32, 0x6f, 0x32, 0x73, 0x32, 0x74, 0x61, 0x30, 0x61, 0x31, 0x61,
|
||||
0x61, 0x63, 0x61, 0x65, 0x61, 0x69, 0x61, 0x6f, 0x61, 0x73, 0x61, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_1_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x030a, 0x0b8a, 0x0c0a,
|
||||
0x0d0a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0315};
|
||||
const uint8_t HuffDecoderCommon::table1_2_emit_[36] = {
|
||||
0x63, 0x30, 0x63, 0x31, 0x63, 0x32, 0x63, 0x61, 0x63, 0x63, 0x65, 0x63,
|
||||
0x69, 0x63, 0x6f, 0x63, 0x73, 0x63, 0x74, 0x65, 0x30, 0x65, 0x31, 0x65,
|
||||
0x32, 0x65, 0x61, 0x65, 0x65, 0x69, 0x65, 0x6f, 0x65, 0x73, 0x65, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_2_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x0b8a, 0x0c8a, 0x050a,
|
||||
0x0d8a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0515};
|
||||
const uint8_t HuffDecoderCommon::table1_3_emit_[36] = {
|
||||
0x69, 0x30, 0x69, 0x31, 0x69, 0x32, 0x69, 0x61, 0x69, 0x63, 0x69, 0x65,
|
||||
0x69, 0x69, 0x6f, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x30, 0x6f, 0x31, 0x6f,
|
||||
0x32, 0x6f, 0x61, 0x6f, 0x63, 0x6f, 0x65, 0x6f, 0x6f, 0x73, 0x6f, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_3_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x0b8a, 0x0c8a, 0x0d8a,
|
||||
0x0e8a, 0x070a, 0x0f8a, 0x100a, 0x110a, 0x0715};
|
||||
const uint8_t HuffDecoderCommon::table1_4_emit_[38] = {
|
||||
0x73, 0x30, 0x73, 0x31, 0x73, 0x32, 0x73, 0x61, 0x73, 0x63,
|
||||
0x73, 0x65, 0x73, 0x69, 0x73, 0x6f, 0x73, 0x73, 0x74, 0x30,
|
||||
0x74, 0x31, 0x74, 0x32, 0x74, 0x61, 0x74, 0x63, 0x74, 0x65,
|
||||
0x74, 0x69, 0x74, 0x6f, 0x74, 0x73, 0x74, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_4_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x080a, 0x088a, 0x0015, 0x090a, 0x0a0a, 0x0b0a, 0x0c0a, 0x0d0a,
|
||||
0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x120a, 0x0915};
|
||||
const uint16_t HuffDecoderCommon::table1_5_inner_[4] = {0x0016, 0x0096, 0x0116,
|
||||
0x0196};
|
||||
const uint8_t HuffDecoderCommon::table1_5_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3};
|
||||
const uint16_t HuffDecoderCommon::table1_11_inner_[6] = {
|
||||
0x0016, 0x0096, 0x0117, 0x0197, 0x0217, 0x0297};
|
||||
const uint8_t HuffDecoderCommon::table1_11_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3,
|
||||
3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5};
|
||||
const uint16_t HuffDecoderCommon::table1_12_inner_[8] = {
|
||||
0x0017, 0x0097, 0x0117, 0x0197, 0x0217, 0x0297, 0x0317, 0x0397};
|
||||
const uint8_t HuffDecoderCommon::table1_12_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5,
|
||||
5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7};
|
||||
const uint8_t HuffDecoderCommon::table1_15_emit_[15] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b,
|
||||
0x58, 0x5a, 0x21, 0x22, 0x28, 0x29, 0x3f};
|
||||
const uint16_t HuffDecoderCommon::table1_15_inner_[18] = {
|
||||
0x0017, 0x0097, 0x0117, 0x0197, 0x0218, 0x0298, 0x0318, 0x0398, 0x0418,
|
||||
0x0498, 0x051a, 0x059a, 0x061a, 0x069a, 0x071a, 0x002a, 0x003a, 0x004a};
|
||||
const uint8_t HuffDecoderCommon::table1_15_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6,
|
||||
7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 10, 11, 12, 13, 14, 15, 16, 17};
|
||||
const uint8_t* const HuffDecoderCommon::table1_emit_[16] = {
|
||||
table1_0_emit_, table1_1_emit_, table1_2_emit_, table1_3_emit_,
|
||||
table1_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table1_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table1_inner_[16] = {
|
||||
table1_0_inner_, table1_1_inner_, table1_2_inner_, table1_3_inner_,
|
||||
table1_4_inner_, table1_5_inner_, table1_5_inner_, table1_5_inner_,
|
||||
table1_5_inner_, table1_5_inner_, table1_5_inner_, table1_11_inner_,
|
||||
table1_12_inner_, table1_12_inner_, table1_12_inner_, table1_15_inner_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table1_outer_[16] = {
|
||||
table1_0_outer_, table1_0_outer_, table1_0_outer_, table1_0_outer_,
|
||||
table1_0_outer_, table1_5_outer_, table1_5_outer_, table1_5_outer_,
|
||||
table1_5_outer_, table1_5_outer_, table1_5_outer_, table1_11_outer_,
|
||||
table1_12_outer_, table1_12_outer_, table1_12_outer_, table1_15_outer_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table9_0_emit_[6] = {0x00, 0x24, 0x40,
|
||||
0x5b, 0x5d, 0x7e};
|
||||
const uint8_t HuffDecoderCommon::table9_0_inner_[8] = {0x00, 0x04, 0x08, 0x0c,
|
||||
0x10, 0x14, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table10_0_emit_[8] = {0x00, 0x24, 0x40, 0x5b,
|
||||
0x5d, 0x7e, 0x5e, 0x7d};
|
||||
const uint8_t HuffDecoderCommon::table10_0_inner_[10] = {
|
||||
0x00, 0x01, 0x05, 0x09, 0x0d, 0x11, 0x15, 0x19, 0x1d, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table10_0_outer_[16] = {
|
||||
0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 7, 8, 0, 9};
|
||||
const uint8_t HuffDecoderCommon::table11_0_emit_[11] = {
|
||||
0x00, 0x24, 0x40, 0x5b, 0x5d, 0x7e, 0x5e, 0x7d, 0x3c, 0x60, 0x7b};
|
||||
const uint8_t HuffDecoderCommon::table11_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x19, 0x00, 0x1d, 0x21, 0x25, 0x29, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table12_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
|
||||
0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table13_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25,
|
||||
0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table14_0_emit_[40] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63,
|
||||
0x00, 0x65, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74,
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63,
|
||||
0x24, 0x65, 0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_0_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x48, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x50,
|
||||
0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x90, 0x98, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x52};
|
||||
const uint8_t HuffDecoderCommon::table14_1_emit_[40] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63,
|
||||
0x40, 0x65, 0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74,
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63,
|
||||
0x5b, 0x65, 0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_2_emit_[40] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63,
|
||||
0x5d, 0x65, 0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74,
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63,
|
||||
0x7e, 0x65, 0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_3_emit_[5] = {0x5e, 0x7d, 0x3c, 0x60,
|
||||
0x7b};
|
||||
const uint8_t HuffDecoderCommon::table14_3_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x12, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table14_emit_[4] = {
|
||||
table14_0_emit_,
|
||||
table14_1_emit_,
|
||||
table14_2_emit_,
|
||||
table14_3_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table14_ops_[4] = {
|
||||
table14_0_ops_,
|
||||
table14_0_ops_,
|
||||
table14_0_ops_,
|
||||
table14_3_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table15_0_emit_[72] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65,
|
||||
0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x25,
|
||||
0x00, 0x2d, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35,
|
||||
0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41,
|
||||
0x00, 0x5f, 0x00, 0x62, 0x00, 0x64, 0x00, 0x66, 0x00, 0x67, 0x00, 0x68,
|
||||
0x00, 0x6c, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x70, 0x00, 0x72, 0x00, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table15_0_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0051, 0x0059, 0x0061, 0x0069,
|
||||
0x0071, 0x0079, 0x0081, 0x0089, 0x0091, 0x0099, 0x00a1, 0x00a9,
|
||||
0x00b1, 0x00b9, 0x00c1, 0x00c9, 0x00d1, 0x00d9, 0x00e1, 0x00e9,
|
||||
0x00f1, 0x00f9, 0x0101, 0x0109, 0x0111, 0x0119, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table15_1_emit_[72] = {
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63, 0x24, 0x65,
|
||||
0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74, 0x24, 0x20, 0x24, 0x25,
|
||||
0x24, 0x2d, 0x24, 0x2e, 0x24, 0x2f, 0x24, 0x33, 0x24, 0x34, 0x24, 0x35,
|
||||
0x24, 0x36, 0x24, 0x37, 0x24, 0x38, 0x24, 0x39, 0x24, 0x3d, 0x24, 0x41,
|
||||
0x24, 0x5f, 0x24, 0x62, 0x24, 0x64, 0x24, 0x66, 0x24, 0x67, 0x24, 0x68,
|
||||
0x24, 0x6c, 0x24, 0x6d, 0x24, 0x6e, 0x24, 0x70, 0x24, 0x72, 0x24, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_2_emit_[72] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63, 0x40, 0x65,
|
||||
0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74, 0x40, 0x20, 0x40, 0x25,
|
||||
0x40, 0x2d, 0x40, 0x2e, 0x40, 0x2f, 0x40, 0x33, 0x40, 0x34, 0x40, 0x35,
|
||||
0x40, 0x36, 0x40, 0x37, 0x40, 0x38, 0x40, 0x39, 0x40, 0x3d, 0x40, 0x41,
|
||||
0x40, 0x5f, 0x40, 0x62, 0x40, 0x64, 0x40, 0x66, 0x40, 0x67, 0x40, 0x68,
|
||||
0x40, 0x6c, 0x40, 0x6d, 0x40, 0x6e, 0x40, 0x70, 0x40, 0x72, 0x40, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_3_emit_[72] = {
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63, 0x5b, 0x65,
|
||||
0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74, 0x5b, 0x20, 0x5b, 0x25,
|
||||
0x5b, 0x2d, 0x5b, 0x2e, 0x5b, 0x2f, 0x5b, 0x33, 0x5b, 0x34, 0x5b, 0x35,
|
||||
0x5b, 0x36, 0x5b, 0x37, 0x5b, 0x38, 0x5b, 0x39, 0x5b, 0x3d, 0x5b, 0x41,
|
||||
0x5b, 0x5f, 0x5b, 0x62, 0x5b, 0x64, 0x5b, 0x66, 0x5b, 0x67, 0x5b, 0x68,
|
||||
0x5b, 0x6c, 0x5b, 0x6d, 0x5b, 0x6e, 0x5b, 0x70, 0x5b, 0x72, 0x5b, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_4_emit_[72] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d, 0x65,
|
||||
0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20, 0x5d, 0x25,
|
||||
0x5d, 0x2d, 0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d, 0x34, 0x5d, 0x35,
|
||||
0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39, 0x5d, 0x3d, 0x5d, 0x41,
|
||||
0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66, 0x5d, 0x67, 0x5d, 0x68,
|
||||
0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70, 0x5d, 0x72, 0x5d, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_5_emit_[72] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e, 0x65,
|
||||
0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20, 0x7e, 0x25,
|
||||
0x7e, 0x2d, 0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e, 0x34, 0x7e, 0x35,
|
||||
0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39, 0x7e, 0x3d, 0x7e, 0x41,
|
||||
0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66, 0x7e, 0x67, 0x7e, 0x68,
|
||||
0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70, 0x7e, 0x72, 0x7e, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_6_emit_[40] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63,
|
||||
0x5e, 0x65, 0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74,
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63,
|
||||
0x7d, 0x65, 0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table15_6_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0051, 0x0059, 0x0061, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0052};
|
||||
const uint8_t HuffDecoderCommon::table15_7_emit_[6] = {0x3c, 0x60, 0x7b,
|
||||
0x5c, 0xc3, 0xd0};
|
||||
const uint16_t HuffDecoderCommon::table15_7_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000a,
|
||||
0x000e, 0x0012, 0x0016, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table15_emit_[8] = {
|
||||
table15_0_emit_, table15_1_emit_, table15_2_emit_, table15_3_emit_,
|
||||
table15_4_emit_, table15_5_emit_, table15_6_emit_, table15_7_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table15_ops_[8] = {
|
||||
table15_0_ops_, table15_0_ops_, table15_0_ops_, table15_0_ops_,
|
||||
table15_0_ops_, table15_0_ops_, table15_6_ops_, table15_7_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table16_0_emit_[44] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63, 0x00,
|
||||
0x65, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20,
|
||||
0x00, 0x25, 0x00, 0x2d, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x33, 0x00,
|
||||
0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39};
|
||||
const uint16_t HuffDecoderCommon::table16_0_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0009,
|
||||
0x0000, 0x0000, 0x0000, 0x0011, 0x0000, 0x0000, 0x0000, 0x0019,
|
||||
0x0000, 0x0000, 0x0000, 0x0021, 0x0000, 0x0000, 0x0000, 0x0029,
|
||||
0x0000, 0x0000, 0x0000, 0x0031, 0x0000, 0x0000, 0x0000, 0x0039,
|
||||
0x0000, 0x0000, 0x0000, 0x0041, 0x0000, 0x0000, 0x0000, 0x0049,
|
||||
0x0000, 0x0051, 0x0000, 0x0059, 0x0000, 0x0061, 0x0000, 0x0069,
|
||||
0x0000, 0x0071, 0x0000, 0x0079, 0x0000, 0x0081, 0x0000, 0x0089,
|
||||
0x0000, 0x0091, 0x0000, 0x0099, 0x0000, 0x00a1, 0x0000, 0x00a9};
|
||||
const uint8_t HuffDecoderCommon::table16_1_emit_[92] = {
|
||||
0x00, 0x3d, 0x00, 0x41, 0x00, 0x5f, 0x00, 0x62, 0x00, 0x64, 0x00, 0x66,
|
||||
0x00, 0x67, 0x00, 0x68, 0x00, 0x6c, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x70,
|
||||
0x00, 0x72, 0x00, 0x75, 0x00, 0x3a, 0x00, 0x42, 0x00, 0x43, 0x00, 0x44,
|
||||
0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4a,
|
||||
0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x4f, 0x00, 0x50,
|
||||
0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56,
|
||||
0x00, 0x57, 0x00, 0x59, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x71, 0x00, 0x76,
|
||||
0x00, 0x77, 0x00, 0x78, 0x00, 0x79, 0x00, 0x7a};
|
||||
const uint16_t HuffDecoderCommon::table16_1_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0000, 0x0051, 0x0000, 0x0059,
|
||||
0x0000, 0x0061, 0x0000, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x00a1, 0x00a9, 0x00b1, 0x00b9, 0x00c1, 0x00c9,
|
||||
0x00d1, 0x00d9, 0x00e1, 0x00e9, 0x00f1, 0x00f9, 0x0101, 0x0109,
|
||||
0x0111, 0x0119, 0x0121, 0x0129, 0x0131, 0x0139, 0x0141, 0x0149,
|
||||
0x0151, 0x0159, 0x0161, 0x0169, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table16_2_emit_[44] = {
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63, 0x24,
|
||||
0x65, 0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74, 0x24, 0x20,
|
||||
0x24, 0x25, 0x24, 0x2d, 0x24, 0x2e, 0x24, 0x2f, 0x24, 0x33, 0x24,
|
||||
0x34, 0x24, 0x35, 0x24, 0x36, 0x24, 0x37, 0x24, 0x38, 0x24, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_3_emit_[92] = {
|
||||
0x24, 0x3d, 0x24, 0x41, 0x24, 0x5f, 0x24, 0x62, 0x24, 0x64, 0x24, 0x66,
|
||||
0x24, 0x67, 0x24, 0x68, 0x24, 0x6c, 0x24, 0x6d, 0x24, 0x6e, 0x24, 0x70,
|
||||
0x24, 0x72, 0x24, 0x75, 0x24, 0x3a, 0x24, 0x42, 0x24, 0x43, 0x24, 0x44,
|
||||
0x24, 0x45, 0x24, 0x46, 0x24, 0x47, 0x24, 0x48, 0x24, 0x49, 0x24, 0x4a,
|
||||
0x24, 0x4b, 0x24, 0x4c, 0x24, 0x4d, 0x24, 0x4e, 0x24, 0x4f, 0x24, 0x50,
|
||||
0x24, 0x51, 0x24, 0x52, 0x24, 0x53, 0x24, 0x54, 0x24, 0x55, 0x24, 0x56,
|
||||
0x24, 0x57, 0x24, 0x59, 0x24, 0x6a, 0x24, 0x6b, 0x24, 0x71, 0x24, 0x76,
|
||||
0x24, 0x77, 0x24, 0x78, 0x24, 0x79, 0x24, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_4_emit_[44] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63, 0x40,
|
||||
0x65, 0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74, 0x40, 0x20,
|
||||
0x40, 0x25, 0x40, 0x2d, 0x40, 0x2e, 0x40, 0x2f, 0x40, 0x33, 0x40,
|
||||
0x34, 0x40, 0x35, 0x40, 0x36, 0x40, 0x37, 0x40, 0x38, 0x40, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_5_emit_[92] = {
|
||||
0x40, 0x3d, 0x40, 0x41, 0x40, 0x5f, 0x40, 0x62, 0x40, 0x64, 0x40, 0x66,
|
||||
0x40, 0x67, 0x40, 0x68, 0x40, 0x6c, 0x40, 0x6d, 0x40, 0x6e, 0x40, 0x70,
|
||||
0x40, 0x72, 0x40, 0x75, 0x40, 0x3a, 0x40, 0x42, 0x40, 0x43, 0x40, 0x44,
|
||||
0x40, 0x45, 0x40, 0x46, 0x40, 0x47, 0x40, 0x48, 0x40, 0x49, 0x40, 0x4a,
|
||||
0x40, 0x4b, 0x40, 0x4c, 0x40, 0x4d, 0x40, 0x4e, 0x40, 0x4f, 0x40, 0x50,
|
||||
0x40, 0x51, 0x40, 0x52, 0x40, 0x53, 0x40, 0x54, 0x40, 0x55, 0x40, 0x56,
|
||||
0x40, 0x57, 0x40, 0x59, 0x40, 0x6a, 0x40, 0x6b, 0x40, 0x71, 0x40, 0x76,
|
||||
0x40, 0x77, 0x40, 0x78, 0x40, 0x79, 0x40, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_6_emit_[44] = {
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63, 0x5b,
|
||||
0x65, 0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74, 0x5b, 0x20,
|
||||
0x5b, 0x25, 0x5b, 0x2d, 0x5b, 0x2e, 0x5b, 0x2f, 0x5b, 0x33, 0x5b,
|
||||
0x34, 0x5b, 0x35, 0x5b, 0x36, 0x5b, 0x37, 0x5b, 0x38, 0x5b, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_7_emit_[92] = {
|
||||
0x5b, 0x3d, 0x5b, 0x41, 0x5b, 0x5f, 0x5b, 0x62, 0x5b, 0x64, 0x5b, 0x66,
|
||||
0x5b, 0x67, 0x5b, 0x68, 0x5b, 0x6c, 0x5b, 0x6d, 0x5b, 0x6e, 0x5b, 0x70,
|
||||
0x5b, 0x72, 0x5b, 0x75, 0x5b, 0x3a, 0x5b, 0x42, 0x5b, 0x43, 0x5b, 0x44,
|
||||
0x5b, 0x45, 0x5b, 0x46, 0x5b, 0x47, 0x5b, 0x48, 0x5b, 0x49, 0x5b, 0x4a,
|
||||
0x5b, 0x4b, 0x5b, 0x4c, 0x5b, 0x4d, 0x5b, 0x4e, 0x5b, 0x4f, 0x5b, 0x50,
|
||||
0x5b, 0x51, 0x5b, 0x52, 0x5b, 0x53, 0x5b, 0x54, 0x5b, 0x55, 0x5b, 0x56,
|
||||
0x5b, 0x57, 0x5b, 0x59, 0x5b, 0x6a, 0x5b, 0x6b, 0x5b, 0x71, 0x5b, 0x76,
|
||||
0x5b, 0x77, 0x5b, 0x78, 0x5b, 0x79, 0x5b, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_8_emit_[44] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d,
|
||||
0x65, 0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20,
|
||||
0x5d, 0x25, 0x5d, 0x2d, 0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d,
|
||||
0x34, 0x5d, 0x35, 0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_9_emit_[92] = {
|
||||
0x5d, 0x3d, 0x5d, 0x41, 0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66,
|
||||
0x5d, 0x67, 0x5d, 0x68, 0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70,
|
||||
0x5d, 0x72, 0x5d, 0x75, 0x5d, 0x3a, 0x5d, 0x42, 0x5d, 0x43, 0x5d, 0x44,
|
||||
0x5d, 0x45, 0x5d, 0x46, 0x5d, 0x47, 0x5d, 0x48, 0x5d, 0x49, 0x5d, 0x4a,
|
||||
0x5d, 0x4b, 0x5d, 0x4c, 0x5d, 0x4d, 0x5d, 0x4e, 0x5d, 0x4f, 0x5d, 0x50,
|
||||
0x5d, 0x51, 0x5d, 0x52, 0x5d, 0x53, 0x5d, 0x54, 0x5d, 0x55, 0x5d, 0x56,
|
||||
0x5d, 0x57, 0x5d, 0x59, 0x5d, 0x6a, 0x5d, 0x6b, 0x5d, 0x71, 0x5d, 0x76,
|
||||
0x5d, 0x77, 0x5d, 0x78, 0x5d, 0x79, 0x5d, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_10_emit_[44] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e,
|
||||
0x65, 0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20,
|
||||
0x7e, 0x25, 0x7e, 0x2d, 0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e,
|
||||
0x34, 0x7e, 0x35, 0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_11_emit_[92] = {
|
||||
0x7e, 0x3d, 0x7e, 0x41, 0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66,
|
||||
0x7e, 0x67, 0x7e, 0x68, 0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70,
|
||||
0x7e, 0x72, 0x7e, 0x75, 0x7e, 0x3a, 0x7e, 0x42, 0x7e, 0x43, 0x7e, 0x44,
|
||||
0x7e, 0x45, 0x7e, 0x46, 0x7e, 0x47, 0x7e, 0x48, 0x7e, 0x49, 0x7e, 0x4a,
|
||||
0x7e, 0x4b, 0x7e, 0x4c, 0x7e, 0x4d, 0x7e, 0x4e, 0x7e, 0x4f, 0x7e, 0x50,
|
||||
0x7e, 0x51, 0x7e, 0x52, 0x7e, 0x53, 0x7e, 0x54, 0x7e, 0x55, 0x7e, 0x56,
|
||||
0x7e, 0x57, 0x7e, 0x59, 0x7e, 0x6a, 0x7e, 0x6b, 0x7e, 0x71, 0x7e, 0x76,
|
||||
0x7e, 0x77, 0x7e, 0x78, 0x7e, 0x79, 0x7e, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_12_emit_[72] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63, 0x5e, 0x65,
|
||||
0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74, 0x5e, 0x20, 0x5e, 0x25,
|
||||
0x5e, 0x2d, 0x5e, 0x2e, 0x5e, 0x2f, 0x5e, 0x33, 0x5e, 0x34, 0x5e, 0x35,
|
||||
0x5e, 0x36, 0x5e, 0x37, 0x5e, 0x38, 0x5e, 0x39, 0x5e, 0x3d, 0x5e, 0x41,
|
||||
0x5e, 0x5f, 0x5e, 0x62, 0x5e, 0x64, 0x5e, 0x66, 0x5e, 0x67, 0x5e, 0x68,
|
||||
0x5e, 0x6c, 0x5e, 0x6d, 0x5e, 0x6e, 0x5e, 0x70, 0x5e, 0x72, 0x5e, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table16_13_emit_[72] = {
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63, 0x7d, 0x65,
|
||||
0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74, 0x7d, 0x20, 0x7d, 0x25,
|
||||
0x7d, 0x2d, 0x7d, 0x2e, 0x7d, 0x2f, 0x7d, 0x33, 0x7d, 0x34, 0x7d, 0x35,
|
||||
0x7d, 0x36, 0x7d, 0x37, 0x7d, 0x38, 0x7d, 0x39, 0x7d, 0x3d, 0x7d, 0x41,
|
||||
0x7d, 0x5f, 0x7d, 0x62, 0x7d, 0x64, 0x7d, 0x66, 0x7d, 0x67, 0x7d, 0x68,
|
||||
0x7d, 0x6c, 0x7d, 0x6d, 0x7d, 0x6e, 0x7d, 0x70, 0x7d, 0x72, 0x7d, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table16_14_emit_[40] = {
|
||||
0x3c, 0x30, 0x3c, 0x31, 0x3c, 0x32, 0x3c, 0x61, 0x3c, 0x63,
|
||||
0x3c, 0x65, 0x3c, 0x69, 0x3c, 0x6f, 0x3c, 0x73, 0x3c, 0x74,
|
||||
0x60, 0x30, 0x60, 0x31, 0x60, 0x32, 0x60, 0x61, 0x60, 0x63,
|
||||
0x60, 0x65, 0x60, 0x69, 0x60, 0x6f, 0x60, 0x73, 0x60, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table16_15_emit_[31] = {
|
||||
0x7b, 0x30, 0x7b, 0x31, 0x7b, 0x32, 0x7b, 0x61, 0x7b, 0x63, 0x7b,
|
||||
0x65, 0x7b, 0x69, 0x7b, 0x6f, 0x7b, 0x73, 0x7b, 0x74, 0x5c, 0xc3,
|
||||
0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0, 0xe2};
|
||||
const uint16_t HuffDecoderCommon::table16_15_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0052, 0x0000, 0x0056, 0x0000, 0x005a, 0x005e, 0x0062,
|
||||
0x0066, 0x006a, 0x006e, 0x0072, 0x0076, 0x007a, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table16_emit_[16] = {
|
||||
table16_0_emit_, table16_1_emit_, table16_2_emit_, table16_3_emit_,
|
||||
table16_4_emit_, table16_5_emit_, table16_6_emit_, table16_7_emit_,
|
||||
table16_8_emit_, table16_9_emit_, table16_10_emit_, table16_11_emit_,
|
||||
table16_12_emit_, table16_13_emit_, table16_14_emit_, table16_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table16_ops_[16] = {
|
||||
table16_0_ops_, table16_1_ops_, table16_0_ops_, table16_1_ops_,
|
||||
table16_0_ops_, table16_1_ops_, table16_0_ops_, table16_1_ops_,
|
||||
table16_0_ops_, table16_1_ops_, table16_0_ops_, table16_1_ops_,
|
||||
table15_0_ops_, table15_0_ops_, table15_6_ops_, table16_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table8_0_emit_[1] = {0x00};
|
||||
const uint16_t HuffDecoderCommon::table8_0_ops_[64] = {
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003};
|
||||
const uint8_t HuffDecoderCommon::table8_4_emit_[1] = {0x24};
|
||||
const uint8_t HuffDecoderCommon::table8_8_emit_[1] = {0x40};
|
||||
const uint8_t HuffDecoderCommon::table8_12_emit_[1] = {0x5b};
|
||||
const uint8_t HuffDecoderCommon::table8_16_emit_[1] = {0x5d};
|
||||
const uint8_t HuffDecoderCommon::table8_20_emit_[1] = {0x7e};
|
||||
const uint8_t HuffDecoderCommon::table8_24_emit_[1] = {0x5e};
|
||||
const uint16_t HuffDecoderCommon::table8_24_ops_[64] = {
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004};
|
||||
const uint8_t HuffDecoderCommon::table8_26_emit_[1] = {0x7d};
|
||||
const uint8_t HuffDecoderCommon::table8_28_emit_[1] = {0x3c};
|
||||
const uint16_t HuffDecoderCommon::table8_28_ops_[64] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005};
|
||||
const uint8_t HuffDecoderCommon::table8_29_emit_[1] = {0x60};
|
||||
const uint8_t HuffDecoderCommon::table8_30_emit_[1] = {0x7b};
|
||||
const uint8_t HuffDecoderCommon::table8_31_emit_[24] = {
|
||||
0x5c, 0xc3, 0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0, 0xe2, 0x99,
|
||||
0xa1, 0xa7, 0xac, 0xb0, 0xb1, 0xb3, 0xd1, 0xd8, 0xd9, 0xe3, 0xe5, 0xe6};
|
||||
const uint16_t HuffDecoderCommon::table8_31_ops_[64] = {
|
||||
0x0009, 0x0009, 0x0009, 0x0009, 0x0209, 0x0209, 0x0209, 0x0209,
|
||||
0x0409, 0x0409, 0x0409, 0x0409, 0x060a, 0x060a, 0x080a, 0x080a,
|
||||
0x0a0a, 0x0a0a, 0x0c0a, 0x0c0a, 0x0e0a, 0x0e0a, 0x100a, 0x100a,
|
||||
0x120a, 0x120a, 0x140a, 0x140a, 0x160b, 0x180b, 0x1a0b, 0x1c0b,
|
||||
0x1e0b, 0x200b, 0x220b, 0x240b, 0x260b, 0x280b, 0x2a0b, 0x2c0b,
|
||||
0x2e0b, 0x001b, 0x002b, 0x003b, 0x004b, 0x005b, 0x006b, 0x007b,
|
||||
0x008b, 0x009b, 0x00ab, 0x00bb, 0x00cb, 0x00db, 0x00eb, 0x00fb,
|
||||
0x010b, 0x011b, 0x012b, 0x013b, 0x014b, 0x015b, 0x016b, 0x017b};
|
||||
const uint8_t* const HuffDecoderCommon::table8_emit_[32] = {
|
||||
table8_0_emit_, table8_0_emit_, table8_0_emit_, table8_0_emit_,
|
||||
table8_4_emit_, table8_4_emit_, table8_4_emit_, table8_4_emit_,
|
||||
table8_8_emit_, table8_8_emit_, table8_8_emit_, table8_8_emit_,
|
||||
table8_12_emit_, table8_12_emit_, table8_12_emit_, table8_12_emit_,
|
||||
table8_16_emit_, table8_16_emit_, table8_16_emit_, table8_16_emit_,
|
||||
table8_20_emit_, table8_20_emit_, table8_20_emit_, table8_20_emit_,
|
||||
table8_24_emit_, table8_24_emit_, table8_26_emit_, table8_26_emit_,
|
||||
table8_28_emit_, table8_29_emit_, table8_30_emit_, table8_31_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table8_ops_[32] = {
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_24_ops_, table8_24_ops_, table8_24_ops_, table8_24_ops_,
|
||||
table8_28_ops_, table8_28_ops_, table8_28_ops_, table8_31_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table38_0_emit_[6] = {0xab, 0xce, 0xd7,
|
||||
0xe1, 0xec, 0xed};
|
||||
const uint8_t HuffDecoderCommon::table38_0_inner_[7] = {0x00, 0x02, 0x04, 0x06,
|
||||
0x08, 0x0a, 0x01};
|
||||
const uint8_t HuffDecoderCommon::table37_0_emit_[10] = {
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table37_0_inner_[10] = {
|
||||
0x03, 0x0b, 0x13, 0x1b, 0x23, 0x2b, 0x34, 0x3c, 0x44, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table39_0_emit_[7] = {0xef, 0x09, 0x8e, 0x90,
|
||||
0x91, 0x94, 0x9f};
|
||||
const uint8_t HuffDecoderCommon::table39_0_inner_[7] = {0x02, 0x07, 0x0b, 0x0f,
|
||||
0x13, 0x17, 0x1b};
|
||||
const uint8_t HuffDecoderCommon::table42_0_emit_[15] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5,
|
||||
0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff};
|
||||
const uint8_t HuffDecoderCommon::table42_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x28,
|
||||
0x2c, 0x30, 0x34, 0x38, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table43_0_emit_[34] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee, 0xf0,
|
||||
0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf, 0xf1,
|
||||
0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe};
|
||||
const uint8_t HuffDecoderCommon::table43_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x3d, 0x41, 0x45,
|
||||
0x49, 0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71,
|
||||
0x75, 0x79, 0x7d, 0x81, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table44_0_emit_[63] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee,
|
||||
0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde,
|
||||
0xdf, 0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd,
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x0b, 0x0c, 0x0e,
|
||||
0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a,
|
||||
0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint8_t HuffDecoderCommon::table44_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39,
|
||||
0x00, 0x3d, 0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51,
|
||||
0x00, 0x55, 0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69,
|
||||
0x00, 0x6d, 0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81,
|
||||
0x00, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1, 0xa5, 0xa9, 0xad,
|
||||
0xb1, 0xb5, 0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0xd1, 0xd5, 0xd9, 0xdd,
|
||||
0xe1, 0xe5, 0xe9, 0xed, 0xf1, 0xf5, 0xf9, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table45_0_ops_[256] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39,
|
||||
0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x45,
|
||||
0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x51,
|
||||
0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x5d,
|
||||
0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x69,
|
||||
0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x75,
|
||||
0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x81,
|
||||
0x00, 0x00, 0x00, 0x85, 0x00, 0x89, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x95,
|
||||
0x00, 0x99, 0x00, 0x9d, 0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xad,
|
||||
0x00, 0xb1, 0x00, 0xb5, 0x00, 0xb9, 0x00, 0xbd, 0x00, 0xc1, 0x00, 0xc5,
|
||||
0x00, 0xc9, 0x00, 0xcd, 0x00, 0xd1, 0x00, 0xd5, 0x00, 0xd9, 0x00, 0xdd,
|
||||
0x00, 0xe1, 0x00, 0xe5, 0x00, 0xe9, 0x00, 0xed, 0x00, 0xf1, 0x00, 0xf5,
|
||||
0x00, 0xf9, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table41_0_emit_[2] = {0xc0, 0xc1};
|
||||
const uint16_t HuffDecoderCommon::table41_0_ops_[32] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025};
|
||||
const uint8_t HuffDecoderCommon::table41_1_emit_[2] = {0xc8, 0xc9};
|
||||
const uint8_t HuffDecoderCommon::table41_2_emit_[2] = {0xca, 0xcd};
|
||||
const uint8_t HuffDecoderCommon::table41_3_emit_[2] = {0xd2, 0xd5};
|
||||
const uint8_t HuffDecoderCommon::table41_4_emit_[2] = {0xda, 0xdb};
|
||||
const uint8_t HuffDecoderCommon::table41_5_emit_[2] = {0xee, 0xf0};
|
||||
const uint8_t HuffDecoderCommon::table41_6_emit_[2] = {0xf2, 0xf3};
|
||||
const uint8_t HuffDecoderCommon::table41_7_emit_[3] = {0xff, 0xcb, 0xcc};
|
||||
const uint16_t HuffDecoderCommon::table41_7_ops_[32] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046};
|
||||
const uint8_t HuffDecoderCommon::table41_8_emit_[4] = {0xd3, 0xd4, 0xd6, 0xdd};
|
||||
const uint16_t HuffDecoderCommon::table41_8_ops_[32] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066};
|
||||
const uint8_t HuffDecoderCommon::table41_9_emit_[4] = {0xde, 0xdf, 0xf1, 0xf4};
|
||||
const uint8_t HuffDecoderCommon::table41_10_emit_[4] = {0xf5, 0xf6, 0xf7, 0xf8};
|
||||
const uint8_t HuffDecoderCommon::table41_11_emit_[4] = {0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint8_t HuffDecoderCommon::table41_12_emit_[7] = {0xfe, 0x02, 0x03, 0x04,
|
||||
0x05, 0x06, 0x07};
|
||||
const uint16_t HuffDecoderCommon::table41_12_ops_[32] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0027, 0x0027, 0x0027, 0x0027, 0x0047, 0x0047, 0x0047, 0x0047,
|
||||
0x0067, 0x0067, 0x0067, 0x0067, 0x0087, 0x0087, 0x0087, 0x0087,
|
||||
0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00c7, 0x00c7, 0x00c7, 0x00c7};
|
||||
const uint8_t HuffDecoderCommon::table41_13_emit_[8] = {0x08, 0x0b, 0x0c, 0x0e,
|
||||
0x0f, 0x10, 0x11, 0x12};
|
||||
const uint16_t HuffDecoderCommon::table41_13_ops_[32] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0087, 0x0087, 0x0087, 0x0087, 0x00a7, 0x00a7, 0x00a7, 0x00a7,
|
||||
0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00e7, 0x00e7, 0x00e7, 0x00e7};
|
||||
const uint8_t HuffDecoderCommon::table41_14_emit_[8] = {0x13, 0x14, 0x15, 0x17,
|
||||
0x18, 0x19, 0x1a, 0x1b};
|
||||
const uint8_t HuffDecoderCommon::table41_15_emit_[10] = {
|
||||
0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9, 0x0a, 0x0d, 0x16};
|
||||
const uint16_t HuffDecoderCommon::table41_15_ops_[32] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0087, 0x0087, 0x0087, 0x0087, 0x00a7, 0x00a7, 0x00a7, 0x00a7,
|
||||
0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00e9, 0x0109, 0x0129, 0x0019};
|
||||
const uint8_t* const HuffDecoderCommon::table41_emit_[16] = {
|
||||
table41_0_emit_, table41_1_emit_, table41_2_emit_, table41_3_emit_,
|
||||
table41_4_emit_, table41_5_emit_, table41_6_emit_, table41_7_emit_,
|
||||
table41_8_emit_, table41_9_emit_, table41_10_emit_, table41_11_emit_,
|
||||
table41_12_emit_, table41_13_emit_, table41_14_emit_, table41_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table41_ops_[16] = {
|
||||
table41_0_ops_, table41_0_ops_, table41_0_ops_, table41_0_ops_,
|
||||
table41_0_ops_, table41_0_ops_, table41_0_ops_, table41_7_ops_,
|
||||
table41_8_ops_, table41_8_ops_, table41_8_ops_, table41_8_ops_,
|
||||
table41_12_ops_, table41_13_ops_, table41_13_ops_, table41_15_ops_,
|
||||
};
|
||||
} // namespace geometry_10_11_9
|
||||
} // namespace grpc_core
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,976 +0,0 @@
|
|||
// Copyright 2023 gRPC authors.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// This file is autogenerated: see
|
||||
// tools/codegen/core/gen_huffman_decompressor.cc
|
||||
|
||||
#include <grpc/support/port_platform.h>
|
||||
|
||||
#include "test/cpp/microbenchmarks/huffman_geometries/decode_huff_10_12_8.h"
|
||||
namespace grpc_core {
|
||||
namespace geometry_10_12_8 {
|
||||
const uint8_t HuffDecoderCommon::table2_0_emit_[10] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table2_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table3_0_emit_[36] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20, 0x25,
|
||||
0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3d, 0x41,
|
||||
0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70, 0x72, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table3_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x29, 0x2d,
|
||||
0x31, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x59,
|
||||
0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85,
|
||||
0x89, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table4_0_emit_[22] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20,
|
||||
0x25, 0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table4_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00,
|
||||
0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2d,
|
||||
0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41, 0x00,
|
||||
0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table4_1_emit_[46] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70,
|
||||
0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,
|
||||
0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56,
|
||||
0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78, 0x79, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table4_1_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49,
|
||||
0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75,
|
||||
0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1,
|
||||
0xa5, 0xa9, 0xad, 0xb1, 0xb5, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table4_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table4_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table4_ops_[2] = {
|
||||
table4_0_ops_,
|
||||
table4_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table5_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29,
|
||||
0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35,
|
||||
0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41,
|
||||
0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d,
|
||||
0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table5_1_emit_[52] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e,
|
||||
0x70, 0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,
|
||||
0x54, 0x55, 0x56, 0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78,
|
||||
0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table5_1_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d,
|
||||
0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55,
|
||||
0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6d,
|
||||
0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81, 0x00, 0x85,
|
||||
0x00, 0x89, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x95, 0x00, 0x99, 0x00, 0x9d,
|
||||
0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xad, 0x00, 0xb1, 0x00, 0xb5,
|
||||
0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table5_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table5_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table5_ops_[2] = {
|
||||
table5_0_ops_,
|
||||
table5_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table6_0_emit_[2] = {0x30, 0x31};
|
||||
const uint8_t HuffDecoderCommon::table6_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05};
|
||||
const uint8_t HuffDecoderCommon::table6_1_emit_[2] = {0x32, 0x61};
|
||||
const uint8_t HuffDecoderCommon::table6_2_emit_[2] = {0x63, 0x65};
|
||||
const uint8_t HuffDecoderCommon::table6_3_emit_[2] = {0x69, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table6_4_emit_[2] = {0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table6_5_emit_[4] = {0x20, 0x25, 0x2d, 0x2e};
|
||||
const uint8_t HuffDecoderCommon::table6_5_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d};
|
||||
const uint8_t HuffDecoderCommon::table6_6_emit_[4] = {0x2f, 0x33, 0x34, 0x35};
|
||||
const uint8_t HuffDecoderCommon::table6_7_emit_[4] = {0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table6_8_emit_[4] = {0x3d, 0x41, 0x5f, 0x62};
|
||||
const uint8_t HuffDecoderCommon::table6_9_emit_[4] = {0x64, 0x66, 0x67, 0x68};
|
||||
const uint8_t HuffDecoderCommon::table6_10_emit_[4] = {0x6c, 0x6d, 0x6e, 0x70};
|
||||
const uint8_t HuffDecoderCommon::table6_11_emit_[6] = {0x72, 0x75, 0x3a,
|
||||
0x42, 0x43, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table6_11_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
|
||||
0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15};
|
||||
const uint8_t HuffDecoderCommon::table6_12_emit_[8] = {0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table6_12_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d};
|
||||
const uint8_t HuffDecoderCommon::table6_13_emit_[8] = {0x4d, 0x4e, 0x4f, 0x50,
|
||||
0x51, 0x52, 0x53, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table6_14_emit_[8] = {0x55, 0x56, 0x57, 0x59,
|
||||
0x6a, 0x6b, 0x71, 0x76};
|
||||
const uint8_t HuffDecoderCommon::table6_15_emit_[10] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table6_15_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19,
|
||||
0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table6_emit_[16] = {
|
||||
table6_0_emit_, table6_1_emit_, table6_2_emit_, table6_3_emit_,
|
||||
table6_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table6_15_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table6_ops_[16] = {
|
||||
table6_0_ops_, table6_0_ops_, table6_0_ops_, table6_0_ops_,
|
||||
table6_0_ops_, table6_5_ops_, table6_5_ops_, table6_5_ops_,
|
||||
table6_5_ops_, table6_5_ops_, table6_5_ops_, table6_11_ops_,
|
||||
table6_12_ops_, table6_12_ops_, table6_12_ops_, table6_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table1_0_emit_[36] = {
|
||||
0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x61, 0x30, 0x63, 0x30, 0x65, 0x30,
|
||||
0x69, 0x30, 0x6f, 0x30, 0x73, 0x30, 0x74, 0x31, 0x31, 0x32, 0x31, 0x61,
|
||||
0x31, 0x63, 0x31, 0x65, 0x31, 0x69, 0x31, 0x6f, 0x31, 0x73, 0x31, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_0_inner_[22] = {
|
||||
0x000a, 0x008a, 0x018a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x010a, 0x098a, 0x0a0a, 0x0b0a, 0x0c0a,
|
||||
0x0d0a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0115};
|
||||
const uint8_t HuffDecoderCommon::table1_0_outer_[64] = {
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10, 10, 10,
|
||||
10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
||||
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21,
|
||||
21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21};
|
||||
const uint8_t HuffDecoderCommon::table1_1_emit_[36] = {
|
||||
0x32, 0x30, 0x32, 0x31, 0x32, 0x32, 0x61, 0x32, 0x63, 0x32, 0x65, 0x32,
|
||||
0x69, 0x32, 0x6f, 0x32, 0x73, 0x32, 0x74, 0x61, 0x30, 0x61, 0x31, 0x61,
|
||||
0x61, 0x63, 0x61, 0x65, 0x61, 0x69, 0x61, 0x6f, 0x61, 0x73, 0x61, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_1_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x030a, 0x0b8a, 0x0c0a,
|
||||
0x0d0a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0315};
|
||||
const uint8_t HuffDecoderCommon::table1_2_emit_[36] = {
|
||||
0x63, 0x30, 0x63, 0x31, 0x63, 0x32, 0x63, 0x61, 0x63, 0x63, 0x65, 0x63,
|
||||
0x69, 0x63, 0x6f, 0x63, 0x73, 0x63, 0x74, 0x65, 0x30, 0x65, 0x31, 0x65,
|
||||
0x32, 0x65, 0x61, 0x65, 0x65, 0x69, 0x65, 0x6f, 0x65, 0x73, 0x65, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_2_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x0b8a, 0x0c8a, 0x050a,
|
||||
0x0d8a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0515};
|
||||
const uint8_t HuffDecoderCommon::table1_3_emit_[36] = {
|
||||
0x69, 0x30, 0x69, 0x31, 0x69, 0x32, 0x69, 0x61, 0x69, 0x63, 0x69, 0x65,
|
||||
0x69, 0x69, 0x6f, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x30, 0x6f, 0x31, 0x6f,
|
||||
0x32, 0x6f, 0x61, 0x6f, 0x63, 0x6f, 0x65, 0x6f, 0x6f, 0x73, 0x6f, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_3_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x0b8a, 0x0c8a, 0x0d8a,
|
||||
0x0e8a, 0x070a, 0x0f8a, 0x100a, 0x110a, 0x0715};
|
||||
const uint8_t HuffDecoderCommon::table1_4_emit_[38] = {
|
||||
0x73, 0x30, 0x73, 0x31, 0x73, 0x32, 0x73, 0x61, 0x73, 0x63,
|
||||
0x73, 0x65, 0x73, 0x69, 0x73, 0x6f, 0x73, 0x73, 0x74, 0x30,
|
||||
0x74, 0x31, 0x74, 0x32, 0x74, 0x61, 0x74, 0x63, 0x74, 0x65,
|
||||
0x74, 0x69, 0x74, 0x6f, 0x74, 0x73, 0x74, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_4_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x080a, 0x088a, 0x0015, 0x090a, 0x0a0a, 0x0b0a, 0x0c0a, 0x0d0a,
|
||||
0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x120a, 0x0915};
|
||||
const uint16_t HuffDecoderCommon::table1_5_inner_[4] = {0x0016, 0x0096, 0x0116,
|
||||
0x0196};
|
||||
const uint8_t HuffDecoderCommon::table1_5_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3};
|
||||
const uint16_t HuffDecoderCommon::table1_11_inner_[6] = {
|
||||
0x0016, 0x0096, 0x0117, 0x0197, 0x0217, 0x0297};
|
||||
const uint8_t HuffDecoderCommon::table1_11_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3,
|
||||
3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5};
|
||||
const uint16_t HuffDecoderCommon::table1_12_inner_[8] = {
|
||||
0x0017, 0x0097, 0x0117, 0x0197, 0x0217, 0x0297, 0x0317, 0x0397};
|
||||
const uint8_t HuffDecoderCommon::table1_12_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5,
|
||||
5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7};
|
||||
const uint8_t HuffDecoderCommon::table1_15_emit_[15] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b,
|
||||
0x58, 0x5a, 0x21, 0x22, 0x28, 0x29, 0x3f};
|
||||
const uint16_t HuffDecoderCommon::table1_15_inner_[18] = {
|
||||
0x0017, 0x0097, 0x0117, 0x0197, 0x0218, 0x0298, 0x0318, 0x0398, 0x0418,
|
||||
0x0498, 0x051a, 0x059a, 0x061a, 0x069a, 0x071a, 0x002a, 0x003a, 0x004a};
|
||||
const uint8_t HuffDecoderCommon::table1_15_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6,
|
||||
7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 10, 11, 12, 13, 14, 15, 16, 17};
|
||||
const uint8_t* const HuffDecoderCommon::table1_emit_[16] = {
|
||||
table1_0_emit_, table1_1_emit_, table1_2_emit_, table1_3_emit_,
|
||||
table1_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table1_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table1_inner_[16] = {
|
||||
table1_0_inner_, table1_1_inner_, table1_2_inner_, table1_3_inner_,
|
||||
table1_4_inner_, table1_5_inner_, table1_5_inner_, table1_5_inner_,
|
||||
table1_5_inner_, table1_5_inner_, table1_5_inner_, table1_11_inner_,
|
||||
table1_12_inner_, table1_12_inner_, table1_12_inner_, table1_15_inner_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table1_outer_[16] = {
|
||||
table1_0_outer_, table1_0_outer_, table1_0_outer_, table1_0_outer_,
|
||||
table1_0_outer_, table1_5_outer_, table1_5_outer_, table1_5_outer_,
|
||||
table1_5_outer_, table1_5_outer_, table1_5_outer_, table1_11_outer_,
|
||||
table1_12_outer_, table1_12_outer_, table1_12_outer_, table1_15_outer_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table9_0_emit_[6] = {0x00, 0x24, 0x40,
|
||||
0x5b, 0x5d, 0x7e};
|
||||
const uint8_t HuffDecoderCommon::table9_0_inner_[8] = {0x00, 0x04, 0x08, 0x0c,
|
||||
0x10, 0x14, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table10_0_emit_[8] = {0x00, 0x24, 0x40, 0x5b,
|
||||
0x5d, 0x7e, 0x5e, 0x7d};
|
||||
const uint8_t HuffDecoderCommon::table10_0_inner_[10] = {
|
||||
0x00, 0x01, 0x05, 0x09, 0x0d, 0x11, 0x15, 0x19, 0x1d, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table10_0_outer_[16] = {
|
||||
0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 7, 8, 0, 9};
|
||||
const uint8_t HuffDecoderCommon::table11_0_emit_[11] = {
|
||||
0x00, 0x24, 0x40, 0x5b, 0x5d, 0x7e, 0x5e, 0x7d, 0x3c, 0x60, 0x7b};
|
||||
const uint8_t HuffDecoderCommon::table11_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x19, 0x00, 0x1d, 0x21, 0x25, 0x29, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table12_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
|
||||
0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table13_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25,
|
||||
0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table14_0_emit_[40] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63,
|
||||
0x00, 0x65, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74,
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63,
|
||||
0x24, 0x65, 0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_0_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x48, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x50,
|
||||
0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x90, 0x98, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x52};
|
||||
const uint8_t HuffDecoderCommon::table14_1_emit_[40] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63,
|
||||
0x40, 0x65, 0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74,
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63,
|
||||
0x5b, 0x65, 0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_2_emit_[40] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63,
|
||||
0x5d, 0x65, 0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74,
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63,
|
||||
0x7e, 0x65, 0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_3_emit_[5] = {0x5e, 0x7d, 0x3c, 0x60,
|
||||
0x7b};
|
||||
const uint8_t HuffDecoderCommon::table14_3_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x12, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table14_emit_[4] = {
|
||||
table14_0_emit_,
|
||||
table14_1_emit_,
|
||||
table14_2_emit_,
|
||||
table14_3_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table14_ops_[4] = {
|
||||
table14_0_ops_,
|
||||
table14_0_ops_,
|
||||
table14_0_ops_,
|
||||
table14_3_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table15_0_emit_[72] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63, 0x00, 0x65,
|
||||
0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x25,
|
||||
0x00, 0x2d, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35,
|
||||
0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41,
|
||||
0x00, 0x5f, 0x00, 0x62, 0x00, 0x64, 0x00, 0x66, 0x00, 0x67, 0x00, 0x68,
|
||||
0x00, 0x6c, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x70, 0x00, 0x72, 0x00, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table15_0_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0051, 0x0059, 0x0061, 0x0069,
|
||||
0x0071, 0x0079, 0x0081, 0x0089, 0x0091, 0x0099, 0x00a1, 0x00a9,
|
||||
0x00b1, 0x00b9, 0x00c1, 0x00c9, 0x00d1, 0x00d9, 0x00e1, 0x00e9,
|
||||
0x00f1, 0x00f9, 0x0101, 0x0109, 0x0111, 0x0119, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table15_1_emit_[72] = {
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63, 0x24, 0x65,
|
||||
0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74, 0x24, 0x20, 0x24, 0x25,
|
||||
0x24, 0x2d, 0x24, 0x2e, 0x24, 0x2f, 0x24, 0x33, 0x24, 0x34, 0x24, 0x35,
|
||||
0x24, 0x36, 0x24, 0x37, 0x24, 0x38, 0x24, 0x39, 0x24, 0x3d, 0x24, 0x41,
|
||||
0x24, 0x5f, 0x24, 0x62, 0x24, 0x64, 0x24, 0x66, 0x24, 0x67, 0x24, 0x68,
|
||||
0x24, 0x6c, 0x24, 0x6d, 0x24, 0x6e, 0x24, 0x70, 0x24, 0x72, 0x24, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_2_emit_[72] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63, 0x40, 0x65,
|
||||
0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74, 0x40, 0x20, 0x40, 0x25,
|
||||
0x40, 0x2d, 0x40, 0x2e, 0x40, 0x2f, 0x40, 0x33, 0x40, 0x34, 0x40, 0x35,
|
||||
0x40, 0x36, 0x40, 0x37, 0x40, 0x38, 0x40, 0x39, 0x40, 0x3d, 0x40, 0x41,
|
||||
0x40, 0x5f, 0x40, 0x62, 0x40, 0x64, 0x40, 0x66, 0x40, 0x67, 0x40, 0x68,
|
||||
0x40, 0x6c, 0x40, 0x6d, 0x40, 0x6e, 0x40, 0x70, 0x40, 0x72, 0x40, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_3_emit_[72] = {
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63, 0x5b, 0x65,
|
||||
0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74, 0x5b, 0x20, 0x5b, 0x25,
|
||||
0x5b, 0x2d, 0x5b, 0x2e, 0x5b, 0x2f, 0x5b, 0x33, 0x5b, 0x34, 0x5b, 0x35,
|
||||
0x5b, 0x36, 0x5b, 0x37, 0x5b, 0x38, 0x5b, 0x39, 0x5b, 0x3d, 0x5b, 0x41,
|
||||
0x5b, 0x5f, 0x5b, 0x62, 0x5b, 0x64, 0x5b, 0x66, 0x5b, 0x67, 0x5b, 0x68,
|
||||
0x5b, 0x6c, 0x5b, 0x6d, 0x5b, 0x6e, 0x5b, 0x70, 0x5b, 0x72, 0x5b, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_4_emit_[72] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d, 0x65,
|
||||
0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20, 0x5d, 0x25,
|
||||
0x5d, 0x2d, 0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d, 0x34, 0x5d, 0x35,
|
||||
0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39, 0x5d, 0x3d, 0x5d, 0x41,
|
||||
0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66, 0x5d, 0x67, 0x5d, 0x68,
|
||||
0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70, 0x5d, 0x72, 0x5d, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_5_emit_[72] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e, 0x65,
|
||||
0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20, 0x7e, 0x25,
|
||||
0x7e, 0x2d, 0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e, 0x34, 0x7e, 0x35,
|
||||
0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39, 0x7e, 0x3d, 0x7e, 0x41,
|
||||
0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66, 0x7e, 0x67, 0x7e, 0x68,
|
||||
0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70, 0x7e, 0x72, 0x7e, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table15_6_emit_[40] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63,
|
||||
0x5e, 0x65, 0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74,
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63,
|
||||
0x7d, 0x65, 0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table15_6_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0051, 0x0059, 0x0061, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0052};
|
||||
const uint8_t HuffDecoderCommon::table15_7_emit_[6] = {0x3c, 0x60, 0x7b,
|
||||
0x5c, 0xc3, 0xd0};
|
||||
const uint16_t HuffDecoderCommon::table15_7_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000a,
|
||||
0x000e, 0x0012, 0x0016, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table15_emit_[8] = {
|
||||
table15_0_emit_, table15_1_emit_, table15_2_emit_, table15_3_emit_,
|
||||
table15_4_emit_, table15_5_emit_, table15_6_emit_, table15_7_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table15_ops_[8] = {
|
||||
table15_0_ops_, table15_0_ops_, table15_0_ops_, table15_0_ops_,
|
||||
table15_0_ops_, table15_0_ops_, table15_6_ops_, table15_7_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table16_0_emit_[44] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63, 0x00,
|
||||
0x65, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74, 0x00, 0x20,
|
||||
0x00, 0x25, 0x00, 0x2d, 0x00, 0x2e, 0x00, 0x2f, 0x00, 0x33, 0x00,
|
||||
0x34, 0x00, 0x35, 0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39};
|
||||
const uint16_t HuffDecoderCommon::table16_0_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0009,
|
||||
0x0000, 0x0000, 0x0000, 0x0011, 0x0000, 0x0000, 0x0000, 0x0019,
|
||||
0x0000, 0x0000, 0x0000, 0x0021, 0x0000, 0x0000, 0x0000, 0x0029,
|
||||
0x0000, 0x0000, 0x0000, 0x0031, 0x0000, 0x0000, 0x0000, 0x0039,
|
||||
0x0000, 0x0000, 0x0000, 0x0041, 0x0000, 0x0000, 0x0000, 0x0049,
|
||||
0x0000, 0x0051, 0x0000, 0x0059, 0x0000, 0x0061, 0x0000, 0x0069,
|
||||
0x0000, 0x0071, 0x0000, 0x0079, 0x0000, 0x0081, 0x0000, 0x0089,
|
||||
0x0000, 0x0091, 0x0000, 0x0099, 0x0000, 0x00a1, 0x0000, 0x00a9};
|
||||
const uint8_t HuffDecoderCommon::table16_1_emit_[92] = {
|
||||
0x00, 0x3d, 0x00, 0x41, 0x00, 0x5f, 0x00, 0x62, 0x00, 0x64, 0x00, 0x66,
|
||||
0x00, 0x67, 0x00, 0x68, 0x00, 0x6c, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x70,
|
||||
0x00, 0x72, 0x00, 0x75, 0x00, 0x3a, 0x00, 0x42, 0x00, 0x43, 0x00, 0x44,
|
||||
0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4a,
|
||||
0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x4f, 0x00, 0x50,
|
||||
0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56,
|
||||
0x00, 0x57, 0x00, 0x59, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x71, 0x00, 0x76,
|
||||
0x00, 0x77, 0x00, 0x78, 0x00, 0x79, 0x00, 0x7a};
|
||||
const uint16_t HuffDecoderCommon::table16_1_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0000, 0x0051, 0x0000, 0x0059,
|
||||
0x0000, 0x0061, 0x0000, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x00a1, 0x00a9, 0x00b1, 0x00b9, 0x00c1, 0x00c9,
|
||||
0x00d1, 0x00d9, 0x00e1, 0x00e9, 0x00f1, 0x00f9, 0x0101, 0x0109,
|
||||
0x0111, 0x0119, 0x0121, 0x0129, 0x0131, 0x0139, 0x0141, 0x0149,
|
||||
0x0151, 0x0159, 0x0161, 0x0169, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table16_2_emit_[44] = {
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63, 0x24,
|
||||
0x65, 0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74, 0x24, 0x20,
|
||||
0x24, 0x25, 0x24, 0x2d, 0x24, 0x2e, 0x24, 0x2f, 0x24, 0x33, 0x24,
|
||||
0x34, 0x24, 0x35, 0x24, 0x36, 0x24, 0x37, 0x24, 0x38, 0x24, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_3_emit_[92] = {
|
||||
0x24, 0x3d, 0x24, 0x41, 0x24, 0x5f, 0x24, 0x62, 0x24, 0x64, 0x24, 0x66,
|
||||
0x24, 0x67, 0x24, 0x68, 0x24, 0x6c, 0x24, 0x6d, 0x24, 0x6e, 0x24, 0x70,
|
||||
0x24, 0x72, 0x24, 0x75, 0x24, 0x3a, 0x24, 0x42, 0x24, 0x43, 0x24, 0x44,
|
||||
0x24, 0x45, 0x24, 0x46, 0x24, 0x47, 0x24, 0x48, 0x24, 0x49, 0x24, 0x4a,
|
||||
0x24, 0x4b, 0x24, 0x4c, 0x24, 0x4d, 0x24, 0x4e, 0x24, 0x4f, 0x24, 0x50,
|
||||
0x24, 0x51, 0x24, 0x52, 0x24, 0x53, 0x24, 0x54, 0x24, 0x55, 0x24, 0x56,
|
||||
0x24, 0x57, 0x24, 0x59, 0x24, 0x6a, 0x24, 0x6b, 0x24, 0x71, 0x24, 0x76,
|
||||
0x24, 0x77, 0x24, 0x78, 0x24, 0x79, 0x24, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_4_emit_[44] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63, 0x40,
|
||||
0x65, 0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74, 0x40, 0x20,
|
||||
0x40, 0x25, 0x40, 0x2d, 0x40, 0x2e, 0x40, 0x2f, 0x40, 0x33, 0x40,
|
||||
0x34, 0x40, 0x35, 0x40, 0x36, 0x40, 0x37, 0x40, 0x38, 0x40, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_5_emit_[92] = {
|
||||
0x40, 0x3d, 0x40, 0x41, 0x40, 0x5f, 0x40, 0x62, 0x40, 0x64, 0x40, 0x66,
|
||||
0x40, 0x67, 0x40, 0x68, 0x40, 0x6c, 0x40, 0x6d, 0x40, 0x6e, 0x40, 0x70,
|
||||
0x40, 0x72, 0x40, 0x75, 0x40, 0x3a, 0x40, 0x42, 0x40, 0x43, 0x40, 0x44,
|
||||
0x40, 0x45, 0x40, 0x46, 0x40, 0x47, 0x40, 0x48, 0x40, 0x49, 0x40, 0x4a,
|
||||
0x40, 0x4b, 0x40, 0x4c, 0x40, 0x4d, 0x40, 0x4e, 0x40, 0x4f, 0x40, 0x50,
|
||||
0x40, 0x51, 0x40, 0x52, 0x40, 0x53, 0x40, 0x54, 0x40, 0x55, 0x40, 0x56,
|
||||
0x40, 0x57, 0x40, 0x59, 0x40, 0x6a, 0x40, 0x6b, 0x40, 0x71, 0x40, 0x76,
|
||||
0x40, 0x77, 0x40, 0x78, 0x40, 0x79, 0x40, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_6_emit_[44] = {
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63, 0x5b,
|
||||
0x65, 0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74, 0x5b, 0x20,
|
||||
0x5b, 0x25, 0x5b, 0x2d, 0x5b, 0x2e, 0x5b, 0x2f, 0x5b, 0x33, 0x5b,
|
||||
0x34, 0x5b, 0x35, 0x5b, 0x36, 0x5b, 0x37, 0x5b, 0x38, 0x5b, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_7_emit_[92] = {
|
||||
0x5b, 0x3d, 0x5b, 0x41, 0x5b, 0x5f, 0x5b, 0x62, 0x5b, 0x64, 0x5b, 0x66,
|
||||
0x5b, 0x67, 0x5b, 0x68, 0x5b, 0x6c, 0x5b, 0x6d, 0x5b, 0x6e, 0x5b, 0x70,
|
||||
0x5b, 0x72, 0x5b, 0x75, 0x5b, 0x3a, 0x5b, 0x42, 0x5b, 0x43, 0x5b, 0x44,
|
||||
0x5b, 0x45, 0x5b, 0x46, 0x5b, 0x47, 0x5b, 0x48, 0x5b, 0x49, 0x5b, 0x4a,
|
||||
0x5b, 0x4b, 0x5b, 0x4c, 0x5b, 0x4d, 0x5b, 0x4e, 0x5b, 0x4f, 0x5b, 0x50,
|
||||
0x5b, 0x51, 0x5b, 0x52, 0x5b, 0x53, 0x5b, 0x54, 0x5b, 0x55, 0x5b, 0x56,
|
||||
0x5b, 0x57, 0x5b, 0x59, 0x5b, 0x6a, 0x5b, 0x6b, 0x5b, 0x71, 0x5b, 0x76,
|
||||
0x5b, 0x77, 0x5b, 0x78, 0x5b, 0x79, 0x5b, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_8_emit_[44] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d,
|
||||
0x65, 0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20,
|
||||
0x5d, 0x25, 0x5d, 0x2d, 0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d,
|
||||
0x34, 0x5d, 0x35, 0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_9_emit_[92] = {
|
||||
0x5d, 0x3d, 0x5d, 0x41, 0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66,
|
||||
0x5d, 0x67, 0x5d, 0x68, 0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70,
|
||||
0x5d, 0x72, 0x5d, 0x75, 0x5d, 0x3a, 0x5d, 0x42, 0x5d, 0x43, 0x5d, 0x44,
|
||||
0x5d, 0x45, 0x5d, 0x46, 0x5d, 0x47, 0x5d, 0x48, 0x5d, 0x49, 0x5d, 0x4a,
|
||||
0x5d, 0x4b, 0x5d, 0x4c, 0x5d, 0x4d, 0x5d, 0x4e, 0x5d, 0x4f, 0x5d, 0x50,
|
||||
0x5d, 0x51, 0x5d, 0x52, 0x5d, 0x53, 0x5d, 0x54, 0x5d, 0x55, 0x5d, 0x56,
|
||||
0x5d, 0x57, 0x5d, 0x59, 0x5d, 0x6a, 0x5d, 0x6b, 0x5d, 0x71, 0x5d, 0x76,
|
||||
0x5d, 0x77, 0x5d, 0x78, 0x5d, 0x79, 0x5d, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_10_emit_[44] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e,
|
||||
0x65, 0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20,
|
||||
0x7e, 0x25, 0x7e, 0x2d, 0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e,
|
||||
0x34, 0x7e, 0x35, 0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table16_11_emit_[92] = {
|
||||
0x7e, 0x3d, 0x7e, 0x41, 0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66,
|
||||
0x7e, 0x67, 0x7e, 0x68, 0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70,
|
||||
0x7e, 0x72, 0x7e, 0x75, 0x7e, 0x3a, 0x7e, 0x42, 0x7e, 0x43, 0x7e, 0x44,
|
||||
0x7e, 0x45, 0x7e, 0x46, 0x7e, 0x47, 0x7e, 0x48, 0x7e, 0x49, 0x7e, 0x4a,
|
||||
0x7e, 0x4b, 0x7e, 0x4c, 0x7e, 0x4d, 0x7e, 0x4e, 0x7e, 0x4f, 0x7e, 0x50,
|
||||
0x7e, 0x51, 0x7e, 0x52, 0x7e, 0x53, 0x7e, 0x54, 0x7e, 0x55, 0x7e, 0x56,
|
||||
0x7e, 0x57, 0x7e, 0x59, 0x7e, 0x6a, 0x7e, 0x6b, 0x7e, 0x71, 0x7e, 0x76,
|
||||
0x7e, 0x77, 0x7e, 0x78, 0x7e, 0x79, 0x7e, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table16_12_emit_[72] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63, 0x5e, 0x65,
|
||||
0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74, 0x5e, 0x20, 0x5e, 0x25,
|
||||
0x5e, 0x2d, 0x5e, 0x2e, 0x5e, 0x2f, 0x5e, 0x33, 0x5e, 0x34, 0x5e, 0x35,
|
||||
0x5e, 0x36, 0x5e, 0x37, 0x5e, 0x38, 0x5e, 0x39, 0x5e, 0x3d, 0x5e, 0x41,
|
||||
0x5e, 0x5f, 0x5e, 0x62, 0x5e, 0x64, 0x5e, 0x66, 0x5e, 0x67, 0x5e, 0x68,
|
||||
0x5e, 0x6c, 0x5e, 0x6d, 0x5e, 0x6e, 0x5e, 0x70, 0x5e, 0x72, 0x5e, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table16_13_emit_[72] = {
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63, 0x7d, 0x65,
|
||||
0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74, 0x7d, 0x20, 0x7d, 0x25,
|
||||
0x7d, 0x2d, 0x7d, 0x2e, 0x7d, 0x2f, 0x7d, 0x33, 0x7d, 0x34, 0x7d, 0x35,
|
||||
0x7d, 0x36, 0x7d, 0x37, 0x7d, 0x38, 0x7d, 0x39, 0x7d, 0x3d, 0x7d, 0x41,
|
||||
0x7d, 0x5f, 0x7d, 0x62, 0x7d, 0x64, 0x7d, 0x66, 0x7d, 0x67, 0x7d, 0x68,
|
||||
0x7d, 0x6c, 0x7d, 0x6d, 0x7d, 0x6e, 0x7d, 0x70, 0x7d, 0x72, 0x7d, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table16_14_emit_[40] = {
|
||||
0x3c, 0x30, 0x3c, 0x31, 0x3c, 0x32, 0x3c, 0x61, 0x3c, 0x63,
|
||||
0x3c, 0x65, 0x3c, 0x69, 0x3c, 0x6f, 0x3c, 0x73, 0x3c, 0x74,
|
||||
0x60, 0x30, 0x60, 0x31, 0x60, 0x32, 0x60, 0x61, 0x60, 0x63,
|
||||
0x60, 0x65, 0x60, 0x69, 0x60, 0x6f, 0x60, 0x73, 0x60, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table16_15_emit_[31] = {
|
||||
0x7b, 0x30, 0x7b, 0x31, 0x7b, 0x32, 0x7b, 0x61, 0x7b, 0x63, 0x7b,
|
||||
0x65, 0x7b, 0x69, 0x7b, 0x6f, 0x7b, 0x73, 0x7b, 0x74, 0x5c, 0xc3,
|
||||
0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0, 0xe2};
|
||||
const uint16_t HuffDecoderCommon::table16_15_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0052, 0x0000, 0x0056, 0x0000, 0x005a, 0x005e, 0x0062,
|
||||
0x0066, 0x006a, 0x006e, 0x0072, 0x0076, 0x007a, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table16_emit_[16] = {
|
||||
table16_0_emit_, table16_1_emit_, table16_2_emit_, table16_3_emit_,
|
||||
table16_4_emit_, table16_5_emit_, table16_6_emit_, table16_7_emit_,
|
||||
table16_8_emit_, table16_9_emit_, table16_10_emit_, table16_11_emit_,
|
||||
table16_12_emit_, table16_13_emit_, table16_14_emit_, table16_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table16_ops_[16] = {
|
||||
table16_0_ops_, table16_1_ops_, table16_0_ops_, table16_1_ops_,
|
||||
table16_0_ops_, table16_1_ops_, table16_0_ops_, table16_1_ops_,
|
||||
table16_0_ops_, table16_1_ops_, table16_0_ops_, table16_1_ops_,
|
||||
table15_0_ops_, table15_0_ops_, table15_6_ops_, table16_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table17_0_emit_[16] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61,
|
||||
0x00, 0x63, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6f};
|
||||
const uint16_t HuffDecoderCommon::table17_0_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0001,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0009,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0011,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0019,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0021,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0029,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0031,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0039};
|
||||
const uint8_t HuffDecoderCommon::table17_1_emit_[28] = {
|
||||
0x00, 0x73, 0x00, 0x74, 0x00, 0x20, 0x00, 0x25, 0x00, 0x2d,
|
||||
0x00, 0x2e, 0x00, 0x2f, 0x00, 0x33, 0x00, 0x34, 0x00, 0x35,
|
||||
0x00, 0x36, 0x00, 0x37, 0x00, 0x38, 0x00, 0x39};
|
||||
const uint16_t HuffDecoderCommon::table17_1_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0001,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0009,
|
||||
0x0000, 0x0000, 0x0000, 0x0011, 0x0000, 0x0000, 0x0000, 0x0019,
|
||||
0x0000, 0x0000, 0x0000, 0x0021, 0x0000, 0x0000, 0x0000, 0x0029,
|
||||
0x0000, 0x0000, 0x0000, 0x0031, 0x0000, 0x0000, 0x0000, 0x0039,
|
||||
0x0000, 0x0000, 0x0000, 0x0041, 0x0000, 0x0000, 0x0000, 0x0049,
|
||||
0x0000, 0x0000, 0x0000, 0x0051, 0x0000, 0x0000, 0x0000, 0x0059,
|
||||
0x0000, 0x0000, 0x0000, 0x0061, 0x0000, 0x0000, 0x0000, 0x0069};
|
||||
const uint8_t HuffDecoderCommon::table17_2_emit_[36] = {
|
||||
0x00, 0x3d, 0x00, 0x41, 0x00, 0x5f, 0x00, 0x62, 0x00, 0x64, 0x00, 0x66,
|
||||
0x00, 0x67, 0x00, 0x68, 0x00, 0x6c, 0x00, 0x6d, 0x00, 0x6e, 0x00, 0x70,
|
||||
0x00, 0x72, 0x00, 0x75, 0x00, 0x3a, 0x00, 0x42, 0x00, 0x43, 0x00, 0x44};
|
||||
const uint16_t HuffDecoderCommon::table17_2_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0009,
|
||||
0x0000, 0x0000, 0x0000, 0x0011, 0x0000, 0x0000, 0x0000, 0x0019,
|
||||
0x0000, 0x0000, 0x0000, 0x0021, 0x0000, 0x0000, 0x0000, 0x0029,
|
||||
0x0000, 0x0000, 0x0000, 0x0031, 0x0000, 0x0000, 0x0000, 0x0039,
|
||||
0x0000, 0x0000, 0x0000, 0x0041, 0x0000, 0x0000, 0x0000, 0x0049,
|
||||
0x0000, 0x0000, 0x0000, 0x0051, 0x0000, 0x0000, 0x0000, 0x0059,
|
||||
0x0000, 0x0000, 0x0000, 0x0061, 0x0000, 0x0000, 0x0000, 0x0069,
|
||||
0x0000, 0x0071, 0x0000, 0x0079, 0x0000, 0x0081, 0x0000, 0x0089};
|
||||
const uint8_t HuffDecoderCommon::table17_3_emit_[68] = {
|
||||
0x00, 0x45, 0x00, 0x46, 0x00, 0x47, 0x00, 0x48, 0x00, 0x49, 0x00, 0x4a,
|
||||
0x00, 0x4b, 0x00, 0x4c, 0x00, 0x4d, 0x00, 0x4e, 0x00, 0x4f, 0x00, 0x50,
|
||||
0x00, 0x51, 0x00, 0x52, 0x00, 0x53, 0x00, 0x54, 0x00, 0x55, 0x00, 0x56,
|
||||
0x00, 0x57, 0x00, 0x59, 0x00, 0x6a, 0x00, 0x6b, 0x00, 0x71, 0x00, 0x76,
|
||||
0x00, 0x77, 0x00, 0x78, 0x00, 0x79, 0x00, 0x7a, 0x00, 0x26, 0x00, 0x2a,
|
||||
0x00, 0x2c, 0x00, 0x3b, 0x00, 0x58, 0x00, 0x5a};
|
||||
const uint16_t HuffDecoderCommon::table17_3_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0000, 0x0051, 0x0000, 0x0059,
|
||||
0x0000, 0x0061, 0x0000, 0x0069, 0x0000, 0x0071, 0x0000, 0x0079,
|
||||
0x0000, 0x0081, 0x0000, 0x0089, 0x0000, 0x0091, 0x0000, 0x0099,
|
||||
0x0000, 0x00a1, 0x0000, 0x00a9, 0x0000, 0x00b1, 0x0000, 0x00b9,
|
||||
0x0000, 0x00c1, 0x0000, 0x00c9, 0x0000, 0x00d1, 0x0000, 0x00d9,
|
||||
0x00e1, 0x00e9, 0x00f1, 0x00f9, 0x0101, 0x0109, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table17_4_emit_[16] = {
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61,
|
||||
0x24, 0x63, 0x24, 0x65, 0x24, 0x69, 0x24, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table17_5_emit_[28] = {
|
||||
0x24, 0x73, 0x24, 0x74, 0x24, 0x20, 0x24, 0x25, 0x24, 0x2d,
|
||||
0x24, 0x2e, 0x24, 0x2f, 0x24, 0x33, 0x24, 0x34, 0x24, 0x35,
|
||||
0x24, 0x36, 0x24, 0x37, 0x24, 0x38, 0x24, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table17_6_emit_[36] = {
|
||||
0x24, 0x3d, 0x24, 0x41, 0x24, 0x5f, 0x24, 0x62, 0x24, 0x64, 0x24, 0x66,
|
||||
0x24, 0x67, 0x24, 0x68, 0x24, 0x6c, 0x24, 0x6d, 0x24, 0x6e, 0x24, 0x70,
|
||||
0x24, 0x72, 0x24, 0x75, 0x24, 0x3a, 0x24, 0x42, 0x24, 0x43, 0x24, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table17_7_emit_[68] = {
|
||||
0x24, 0x45, 0x24, 0x46, 0x24, 0x47, 0x24, 0x48, 0x24, 0x49, 0x24, 0x4a,
|
||||
0x24, 0x4b, 0x24, 0x4c, 0x24, 0x4d, 0x24, 0x4e, 0x24, 0x4f, 0x24, 0x50,
|
||||
0x24, 0x51, 0x24, 0x52, 0x24, 0x53, 0x24, 0x54, 0x24, 0x55, 0x24, 0x56,
|
||||
0x24, 0x57, 0x24, 0x59, 0x24, 0x6a, 0x24, 0x6b, 0x24, 0x71, 0x24, 0x76,
|
||||
0x24, 0x77, 0x24, 0x78, 0x24, 0x79, 0x24, 0x7a, 0x24, 0x26, 0x24, 0x2a,
|
||||
0x24, 0x2c, 0x24, 0x3b, 0x24, 0x58, 0x24, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table17_8_emit_[16] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61,
|
||||
0x40, 0x63, 0x40, 0x65, 0x40, 0x69, 0x40, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table17_9_emit_[28] = {
|
||||
0x40, 0x73, 0x40, 0x74, 0x40, 0x20, 0x40, 0x25, 0x40, 0x2d,
|
||||
0x40, 0x2e, 0x40, 0x2f, 0x40, 0x33, 0x40, 0x34, 0x40, 0x35,
|
||||
0x40, 0x36, 0x40, 0x37, 0x40, 0x38, 0x40, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table17_10_emit_[36] = {
|
||||
0x40, 0x3d, 0x40, 0x41, 0x40, 0x5f, 0x40, 0x62, 0x40, 0x64, 0x40, 0x66,
|
||||
0x40, 0x67, 0x40, 0x68, 0x40, 0x6c, 0x40, 0x6d, 0x40, 0x6e, 0x40, 0x70,
|
||||
0x40, 0x72, 0x40, 0x75, 0x40, 0x3a, 0x40, 0x42, 0x40, 0x43, 0x40, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table17_11_emit_[68] = {
|
||||
0x40, 0x45, 0x40, 0x46, 0x40, 0x47, 0x40, 0x48, 0x40, 0x49, 0x40, 0x4a,
|
||||
0x40, 0x4b, 0x40, 0x4c, 0x40, 0x4d, 0x40, 0x4e, 0x40, 0x4f, 0x40, 0x50,
|
||||
0x40, 0x51, 0x40, 0x52, 0x40, 0x53, 0x40, 0x54, 0x40, 0x55, 0x40, 0x56,
|
||||
0x40, 0x57, 0x40, 0x59, 0x40, 0x6a, 0x40, 0x6b, 0x40, 0x71, 0x40, 0x76,
|
||||
0x40, 0x77, 0x40, 0x78, 0x40, 0x79, 0x40, 0x7a, 0x40, 0x26, 0x40, 0x2a,
|
||||
0x40, 0x2c, 0x40, 0x3b, 0x40, 0x58, 0x40, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table17_12_emit_[16] = {
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61,
|
||||
0x5b, 0x63, 0x5b, 0x65, 0x5b, 0x69, 0x5b, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table17_13_emit_[28] = {
|
||||
0x5b, 0x73, 0x5b, 0x74, 0x5b, 0x20, 0x5b, 0x25, 0x5b, 0x2d,
|
||||
0x5b, 0x2e, 0x5b, 0x2f, 0x5b, 0x33, 0x5b, 0x34, 0x5b, 0x35,
|
||||
0x5b, 0x36, 0x5b, 0x37, 0x5b, 0x38, 0x5b, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table17_14_emit_[36] = {
|
||||
0x5b, 0x3d, 0x5b, 0x41, 0x5b, 0x5f, 0x5b, 0x62, 0x5b, 0x64, 0x5b, 0x66,
|
||||
0x5b, 0x67, 0x5b, 0x68, 0x5b, 0x6c, 0x5b, 0x6d, 0x5b, 0x6e, 0x5b, 0x70,
|
||||
0x5b, 0x72, 0x5b, 0x75, 0x5b, 0x3a, 0x5b, 0x42, 0x5b, 0x43, 0x5b, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table17_15_emit_[68] = {
|
||||
0x5b, 0x45, 0x5b, 0x46, 0x5b, 0x47, 0x5b, 0x48, 0x5b, 0x49, 0x5b, 0x4a,
|
||||
0x5b, 0x4b, 0x5b, 0x4c, 0x5b, 0x4d, 0x5b, 0x4e, 0x5b, 0x4f, 0x5b, 0x50,
|
||||
0x5b, 0x51, 0x5b, 0x52, 0x5b, 0x53, 0x5b, 0x54, 0x5b, 0x55, 0x5b, 0x56,
|
||||
0x5b, 0x57, 0x5b, 0x59, 0x5b, 0x6a, 0x5b, 0x6b, 0x5b, 0x71, 0x5b, 0x76,
|
||||
0x5b, 0x77, 0x5b, 0x78, 0x5b, 0x79, 0x5b, 0x7a, 0x5b, 0x26, 0x5b, 0x2a,
|
||||
0x5b, 0x2c, 0x5b, 0x3b, 0x5b, 0x58, 0x5b, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table17_16_emit_[16] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61,
|
||||
0x5d, 0x63, 0x5d, 0x65, 0x5d, 0x69, 0x5d, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table17_17_emit_[28] = {
|
||||
0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20, 0x5d, 0x25, 0x5d, 0x2d,
|
||||
0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d, 0x34, 0x5d, 0x35,
|
||||
0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table17_18_emit_[36] = {
|
||||
0x5d, 0x3d, 0x5d, 0x41, 0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66,
|
||||
0x5d, 0x67, 0x5d, 0x68, 0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70,
|
||||
0x5d, 0x72, 0x5d, 0x75, 0x5d, 0x3a, 0x5d, 0x42, 0x5d, 0x43, 0x5d, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table17_19_emit_[68] = {
|
||||
0x5d, 0x45, 0x5d, 0x46, 0x5d, 0x47, 0x5d, 0x48, 0x5d, 0x49, 0x5d, 0x4a,
|
||||
0x5d, 0x4b, 0x5d, 0x4c, 0x5d, 0x4d, 0x5d, 0x4e, 0x5d, 0x4f, 0x5d, 0x50,
|
||||
0x5d, 0x51, 0x5d, 0x52, 0x5d, 0x53, 0x5d, 0x54, 0x5d, 0x55, 0x5d, 0x56,
|
||||
0x5d, 0x57, 0x5d, 0x59, 0x5d, 0x6a, 0x5d, 0x6b, 0x5d, 0x71, 0x5d, 0x76,
|
||||
0x5d, 0x77, 0x5d, 0x78, 0x5d, 0x79, 0x5d, 0x7a, 0x5d, 0x26, 0x5d, 0x2a,
|
||||
0x5d, 0x2c, 0x5d, 0x3b, 0x5d, 0x58, 0x5d, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table17_20_emit_[16] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61,
|
||||
0x7e, 0x63, 0x7e, 0x65, 0x7e, 0x69, 0x7e, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table17_21_emit_[28] = {
|
||||
0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20, 0x7e, 0x25, 0x7e, 0x2d,
|
||||
0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e, 0x34, 0x7e, 0x35,
|
||||
0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table17_22_emit_[36] = {
|
||||
0x7e, 0x3d, 0x7e, 0x41, 0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66,
|
||||
0x7e, 0x67, 0x7e, 0x68, 0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70,
|
||||
0x7e, 0x72, 0x7e, 0x75, 0x7e, 0x3a, 0x7e, 0x42, 0x7e, 0x43, 0x7e, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table17_23_emit_[68] = {
|
||||
0x7e, 0x45, 0x7e, 0x46, 0x7e, 0x47, 0x7e, 0x48, 0x7e, 0x49, 0x7e, 0x4a,
|
||||
0x7e, 0x4b, 0x7e, 0x4c, 0x7e, 0x4d, 0x7e, 0x4e, 0x7e, 0x4f, 0x7e, 0x50,
|
||||
0x7e, 0x51, 0x7e, 0x52, 0x7e, 0x53, 0x7e, 0x54, 0x7e, 0x55, 0x7e, 0x56,
|
||||
0x7e, 0x57, 0x7e, 0x59, 0x7e, 0x6a, 0x7e, 0x6b, 0x7e, 0x71, 0x7e, 0x76,
|
||||
0x7e, 0x77, 0x7e, 0x78, 0x7e, 0x79, 0x7e, 0x7a, 0x7e, 0x26, 0x7e, 0x2a,
|
||||
0x7e, 0x2c, 0x7e, 0x3b, 0x7e, 0x58, 0x7e, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table17_24_emit_[44] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63, 0x5e,
|
||||
0x65, 0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74, 0x5e, 0x20,
|
||||
0x5e, 0x25, 0x5e, 0x2d, 0x5e, 0x2e, 0x5e, 0x2f, 0x5e, 0x33, 0x5e,
|
||||
0x34, 0x5e, 0x35, 0x5e, 0x36, 0x5e, 0x37, 0x5e, 0x38, 0x5e, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table17_25_emit_[92] = {
|
||||
0x5e, 0x3d, 0x5e, 0x41, 0x5e, 0x5f, 0x5e, 0x62, 0x5e, 0x64, 0x5e, 0x66,
|
||||
0x5e, 0x67, 0x5e, 0x68, 0x5e, 0x6c, 0x5e, 0x6d, 0x5e, 0x6e, 0x5e, 0x70,
|
||||
0x5e, 0x72, 0x5e, 0x75, 0x5e, 0x3a, 0x5e, 0x42, 0x5e, 0x43, 0x5e, 0x44,
|
||||
0x5e, 0x45, 0x5e, 0x46, 0x5e, 0x47, 0x5e, 0x48, 0x5e, 0x49, 0x5e, 0x4a,
|
||||
0x5e, 0x4b, 0x5e, 0x4c, 0x5e, 0x4d, 0x5e, 0x4e, 0x5e, 0x4f, 0x5e, 0x50,
|
||||
0x5e, 0x51, 0x5e, 0x52, 0x5e, 0x53, 0x5e, 0x54, 0x5e, 0x55, 0x5e, 0x56,
|
||||
0x5e, 0x57, 0x5e, 0x59, 0x5e, 0x6a, 0x5e, 0x6b, 0x5e, 0x71, 0x5e, 0x76,
|
||||
0x5e, 0x77, 0x5e, 0x78, 0x5e, 0x79, 0x5e, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table17_26_emit_[44] = {
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63, 0x7d,
|
||||
0x65, 0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74, 0x7d, 0x20,
|
||||
0x7d, 0x25, 0x7d, 0x2d, 0x7d, 0x2e, 0x7d, 0x2f, 0x7d, 0x33, 0x7d,
|
||||
0x34, 0x7d, 0x35, 0x7d, 0x36, 0x7d, 0x37, 0x7d, 0x38, 0x7d, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table17_27_emit_[92] = {
|
||||
0x7d, 0x3d, 0x7d, 0x41, 0x7d, 0x5f, 0x7d, 0x62, 0x7d, 0x64, 0x7d, 0x66,
|
||||
0x7d, 0x67, 0x7d, 0x68, 0x7d, 0x6c, 0x7d, 0x6d, 0x7d, 0x6e, 0x7d, 0x70,
|
||||
0x7d, 0x72, 0x7d, 0x75, 0x7d, 0x3a, 0x7d, 0x42, 0x7d, 0x43, 0x7d, 0x44,
|
||||
0x7d, 0x45, 0x7d, 0x46, 0x7d, 0x47, 0x7d, 0x48, 0x7d, 0x49, 0x7d, 0x4a,
|
||||
0x7d, 0x4b, 0x7d, 0x4c, 0x7d, 0x4d, 0x7d, 0x4e, 0x7d, 0x4f, 0x7d, 0x50,
|
||||
0x7d, 0x51, 0x7d, 0x52, 0x7d, 0x53, 0x7d, 0x54, 0x7d, 0x55, 0x7d, 0x56,
|
||||
0x7d, 0x57, 0x7d, 0x59, 0x7d, 0x6a, 0x7d, 0x6b, 0x7d, 0x71, 0x7d, 0x76,
|
||||
0x7d, 0x77, 0x7d, 0x78, 0x7d, 0x79, 0x7d, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table17_28_emit_[72] = {
|
||||
0x3c, 0x30, 0x3c, 0x31, 0x3c, 0x32, 0x3c, 0x61, 0x3c, 0x63, 0x3c, 0x65,
|
||||
0x3c, 0x69, 0x3c, 0x6f, 0x3c, 0x73, 0x3c, 0x74, 0x3c, 0x20, 0x3c, 0x25,
|
||||
0x3c, 0x2d, 0x3c, 0x2e, 0x3c, 0x2f, 0x3c, 0x33, 0x3c, 0x34, 0x3c, 0x35,
|
||||
0x3c, 0x36, 0x3c, 0x37, 0x3c, 0x38, 0x3c, 0x39, 0x3c, 0x3d, 0x3c, 0x41,
|
||||
0x3c, 0x5f, 0x3c, 0x62, 0x3c, 0x64, 0x3c, 0x66, 0x3c, 0x67, 0x3c, 0x68,
|
||||
0x3c, 0x6c, 0x3c, 0x6d, 0x3c, 0x6e, 0x3c, 0x70, 0x3c, 0x72, 0x3c, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table17_29_emit_[72] = {
|
||||
0x60, 0x30, 0x60, 0x31, 0x60, 0x32, 0x60, 0x61, 0x60, 0x63, 0x60, 0x65,
|
||||
0x60, 0x69, 0x60, 0x6f, 0x60, 0x73, 0x60, 0x74, 0x60, 0x20, 0x60, 0x25,
|
||||
0x60, 0x2d, 0x60, 0x2e, 0x60, 0x2f, 0x60, 0x33, 0x60, 0x34, 0x60, 0x35,
|
||||
0x60, 0x36, 0x60, 0x37, 0x60, 0x38, 0x60, 0x39, 0x60, 0x3d, 0x60, 0x41,
|
||||
0x60, 0x5f, 0x60, 0x62, 0x60, 0x64, 0x60, 0x66, 0x60, 0x67, 0x60, 0x68,
|
||||
0x60, 0x6c, 0x60, 0x6d, 0x60, 0x6e, 0x60, 0x70, 0x60, 0x72, 0x60, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table17_30_emit_[72] = {
|
||||
0x7b, 0x30, 0x7b, 0x31, 0x7b, 0x32, 0x7b, 0x61, 0x7b, 0x63, 0x7b, 0x65,
|
||||
0x7b, 0x69, 0x7b, 0x6f, 0x7b, 0x73, 0x7b, 0x74, 0x7b, 0x20, 0x7b, 0x25,
|
||||
0x7b, 0x2d, 0x7b, 0x2e, 0x7b, 0x2f, 0x7b, 0x33, 0x7b, 0x34, 0x7b, 0x35,
|
||||
0x7b, 0x36, 0x7b, 0x37, 0x7b, 0x38, 0x7b, 0x39, 0x7b, 0x3d, 0x7b, 0x41,
|
||||
0x7b, 0x5f, 0x7b, 0x62, 0x7b, 0x64, 0x7b, 0x66, 0x7b, 0x67, 0x7b, 0x68,
|
||||
0x7b, 0x6c, 0x7b, 0x6d, 0x7b, 0x6e, 0x7b, 0x70, 0x7b, 0x72, 0x7b, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table17_31_emit_[24] = {
|
||||
0x5c, 0xc3, 0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0, 0xe2, 0x99,
|
||||
0xa1, 0xa7, 0xac, 0xb0, 0xb1, 0xb3, 0xd1, 0xd8, 0xd9, 0xe3, 0xe5, 0xe6};
|
||||
const uint16_t HuffDecoderCommon::table17_31_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0002, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x000a, 0x0000, 0x000e, 0x0000, 0x0012,
|
||||
0x0000, 0x0016, 0x0000, 0x001a, 0x0000, 0x001e, 0x0000, 0x0022,
|
||||
0x0000, 0x0026, 0x0000, 0x002a, 0x002e, 0x0032, 0x0036, 0x003a,
|
||||
0x003e, 0x0042, 0x0046, 0x004a, 0x004e, 0x0052, 0x0056, 0x005a,
|
||||
0x005e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table17_emit_[32] = {
|
||||
table17_0_emit_, table17_1_emit_, table17_2_emit_, table17_3_emit_,
|
||||
table17_4_emit_, table17_5_emit_, table17_6_emit_, table17_7_emit_,
|
||||
table17_8_emit_, table17_9_emit_, table17_10_emit_, table17_11_emit_,
|
||||
table17_12_emit_, table17_13_emit_, table17_14_emit_, table17_15_emit_,
|
||||
table17_16_emit_, table17_17_emit_, table17_18_emit_, table17_19_emit_,
|
||||
table17_20_emit_, table17_21_emit_, table17_22_emit_, table17_23_emit_,
|
||||
table17_24_emit_, table17_25_emit_, table17_26_emit_, table17_27_emit_,
|
||||
table17_28_emit_, table17_29_emit_, table17_30_emit_, table17_31_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table17_ops_[32] = {
|
||||
table17_0_ops_, table17_1_ops_, table17_2_ops_, table17_3_ops_,
|
||||
table17_0_ops_, table17_1_ops_, table17_2_ops_, table17_3_ops_,
|
||||
table17_0_ops_, table17_1_ops_, table17_2_ops_, table17_3_ops_,
|
||||
table17_0_ops_, table17_1_ops_, table17_2_ops_, table17_3_ops_,
|
||||
table17_0_ops_, table17_1_ops_, table17_2_ops_, table17_3_ops_,
|
||||
table17_0_ops_, table17_1_ops_, table17_2_ops_, table17_3_ops_,
|
||||
table16_0_ops_, table16_1_ops_, table16_0_ops_, table16_1_ops_,
|
||||
table15_0_ops_, table15_0_ops_, table15_0_ops_, table17_31_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table8_0_emit_[1] = {0x00};
|
||||
const uint16_t HuffDecoderCommon::table8_0_ops_[128] = {
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003};
|
||||
const uint8_t HuffDecoderCommon::table8_4_emit_[1] = {0x24};
|
||||
const uint8_t HuffDecoderCommon::table8_8_emit_[1] = {0x40};
|
||||
const uint8_t HuffDecoderCommon::table8_12_emit_[1] = {0x5b};
|
||||
const uint8_t HuffDecoderCommon::table8_16_emit_[1] = {0x5d};
|
||||
const uint8_t HuffDecoderCommon::table8_20_emit_[1] = {0x7e};
|
||||
const uint8_t HuffDecoderCommon::table8_24_emit_[1] = {0x5e};
|
||||
const uint16_t HuffDecoderCommon::table8_24_ops_[128] = {
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004};
|
||||
const uint8_t HuffDecoderCommon::table8_26_emit_[1] = {0x7d};
|
||||
const uint8_t HuffDecoderCommon::table8_28_emit_[1] = {0x3c};
|
||||
const uint16_t HuffDecoderCommon::table8_28_ops_[128] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005};
|
||||
const uint8_t HuffDecoderCommon::table8_29_emit_[1] = {0x60};
|
||||
const uint8_t HuffDecoderCommon::table8_30_emit_[1] = {0x7b};
|
||||
const uint8_t HuffDecoderCommon::table8_31_emit_[50] = {
|
||||
0x5c, 0xc3, 0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0,
|
||||
0xe2, 0x99, 0xa1, 0xa7, 0xac, 0xb0, 0xb1, 0xb3, 0xd1, 0xd8,
|
||||
0xd9, 0xe3, 0xe5, 0xe6, 0x81, 0x84, 0x85, 0x86, 0x88, 0x92,
|
||||
0x9a, 0x9c, 0xa0, 0xa3, 0xa4, 0xa9, 0xaa, 0xad, 0xb2, 0xb5,
|
||||
0xb9, 0xba, 0xbb, 0xbd, 0xbe, 0xc4, 0xc6, 0xe4, 0xe8, 0xe9};
|
||||
const uint16_t HuffDecoderCommon::table8_31_ops_[128] = {
|
||||
0x0009, 0x0009, 0x0009, 0x0009, 0x0009, 0x0009, 0x0009, 0x0009, 0x0209,
|
||||
0x0209, 0x0209, 0x0209, 0x0209, 0x0209, 0x0209, 0x0209, 0x0409, 0x0409,
|
||||
0x0409, 0x0409, 0x0409, 0x0409, 0x0409, 0x0409, 0x060a, 0x060a, 0x060a,
|
||||
0x060a, 0x080a, 0x080a, 0x080a, 0x080a, 0x0a0a, 0x0a0a, 0x0a0a, 0x0a0a,
|
||||
0x0c0a, 0x0c0a, 0x0c0a, 0x0c0a, 0x0e0a, 0x0e0a, 0x0e0a, 0x0e0a, 0x100a,
|
||||
0x100a, 0x100a, 0x100a, 0x120a, 0x120a, 0x120a, 0x120a, 0x140a, 0x140a,
|
||||
0x140a, 0x140a, 0x160b, 0x160b, 0x180b, 0x180b, 0x1a0b, 0x1a0b, 0x1c0b,
|
||||
0x1c0b, 0x1e0b, 0x1e0b, 0x200b, 0x200b, 0x220b, 0x220b, 0x240b, 0x240b,
|
||||
0x260b, 0x260b, 0x280b, 0x280b, 0x2a0b, 0x2a0b, 0x2c0b, 0x2c0b, 0x2e0b,
|
||||
0x2e0b, 0x300c, 0x320c, 0x340c, 0x360c, 0x380c, 0x3a0c, 0x3c0c, 0x3e0c,
|
||||
0x400c, 0x420c, 0x440c, 0x460c, 0x480c, 0x4a0c, 0x4c0c, 0x4e0c, 0x500c,
|
||||
0x520c, 0x540c, 0x560c, 0x580c, 0x5a0c, 0x5c0c, 0x5e0c, 0x600c, 0x620c,
|
||||
0x001c, 0x002c, 0x003c, 0x004c, 0x005c, 0x006c, 0x007c, 0x008c, 0x009c,
|
||||
0x00ac, 0x00bc, 0x00cc, 0x00dc, 0x00ec, 0x00fc, 0x010c, 0x011c, 0x012c,
|
||||
0x013c, 0x014c};
|
||||
const uint8_t* const HuffDecoderCommon::table8_emit_[32] = {
|
||||
table8_0_emit_, table8_0_emit_, table8_0_emit_, table8_0_emit_,
|
||||
table8_4_emit_, table8_4_emit_, table8_4_emit_, table8_4_emit_,
|
||||
table8_8_emit_, table8_8_emit_, table8_8_emit_, table8_8_emit_,
|
||||
table8_12_emit_, table8_12_emit_, table8_12_emit_, table8_12_emit_,
|
||||
table8_16_emit_, table8_16_emit_, table8_16_emit_, table8_16_emit_,
|
||||
table8_20_emit_, table8_20_emit_, table8_20_emit_, table8_20_emit_,
|
||||
table8_24_emit_, table8_24_emit_, table8_26_emit_, table8_26_emit_,
|
||||
table8_28_emit_, table8_29_emit_, table8_30_emit_, table8_31_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table8_ops_[32] = {
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_24_ops_, table8_24_ops_, table8_24_ops_, table8_24_ops_,
|
||||
table8_28_ops_, table8_28_ops_, table8_28_ops_, table8_31_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table35_0_emit_[15] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5,
|
||||
0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff};
|
||||
const uint8_t HuffDecoderCommon::table35_0_inner_[16] = {
|
||||
0x00, 0x02, 0x04, 0x06, 0x08, 0x0a, 0x0c, 0x0e,
|
||||
0x10, 0x12, 0x14, 0x16, 0x18, 0x1a, 0x1c, 0x01};
|
||||
const uint8_t HuffDecoderCommon::table34_0_emit_[17] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda,
|
||||
0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc};
|
||||
const uint8_t HuffDecoderCommon::table34_0_ops_[32] = {
|
||||
0x04, 0x04, 0x0c, 0x0c, 0x14, 0x14, 0x1c, 0x1c, 0x24, 0x24, 0x2c,
|
||||
0x2c, 0x34, 0x34, 0x3c, 0x3c, 0x44, 0x44, 0x4c, 0x4c, 0x54, 0x54,
|
||||
0x5c, 0x5c, 0x64, 0x64, 0x6c, 0x6c, 0x74, 0x74, 0x7d, 0x85};
|
||||
const uint8_t HuffDecoderCommon::table38_0_emit_[6] = {0xec, 0xed, 0xc7,
|
||||
0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table38_0_inner_[6] = {0x02, 0x06, 0x0b,
|
||||
0x0f, 0x13, 0x17};
|
||||
const uint8_t HuffDecoderCommon::table41_0_emit_[17] = {
|
||||
0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf, 0xf1, 0xf4, 0xf5,
|
||||
0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe};
|
||||
const uint8_t HuffDecoderCommon::table41_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x28,
|
||||
0x2c, 0x30, 0x34, 0x38, 0x3c, 0x40, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table42_0_emit_[46] = {
|
||||
0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf, 0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8,
|
||||
0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
|
||||
0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18,
|
||||
0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint8_t HuffDecoderCommon::table42_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d, 0x00,
|
||||
0x41, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69,
|
||||
0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95,
|
||||
0x99, 0x9d, 0xa1, 0xa5, 0xa9, 0xad, 0xb1, 0xb5, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table43_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39,
|
||||
0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41, 0x00, 0x45, 0x00, 0x49,
|
||||
0x00, 0x4d, 0x00, 0x51, 0x00, 0x55, 0x00, 0x59, 0x00, 0x5d, 0x00, 0x61,
|
||||
0x00, 0x65, 0x00, 0x69, 0x00, 0x6d, 0x00, 0x71, 0x00, 0x75, 0x00, 0x79,
|
||||
0x00, 0x7d, 0x00, 0x81, 0x00, 0x85, 0x00, 0x89, 0x00, 0x8d, 0x00, 0x91,
|
||||
0x00, 0x95, 0x00, 0x99, 0x00, 0x9d, 0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9,
|
||||
0x00, 0xad, 0x00, 0xb1, 0x00, 0xb5, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table40_0_emit_[4] = {0xd3, 0xd4, 0xd6, 0xdd};
|
||||
const uint16_t HuffDecoderCommon::table40_0_ops_[32] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0045, 0x0045, 0x0045, 0x0045, 0x0045, 0x0045, 0x0045, 0x0045,
|
||||
0x0065, 0x0065, 0x0065, 0x0065, 0x0065, 0x0065, 0x0065, 0x0065};
|
||||
const uint8_t HuffDecoderCommon::table40_1_emit_[4] = {0xde, 0xdf, 0xf1, 0xf4};
|
||||
const uint8_t HuffDecoderCommon::table40_2_emit_[4] = {0xf5, 0xf6, 0xf7, 0xf8};
|
||||
const uint8_t HuffDecoderCommon::table40_3_emit_[4] = {0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint8_t HuffDecoderCommon::table40_4_emit_[7] = {0xfe, 0x02, 0x03, 0x04,
|
||||
0x05, 0x06, 0x07};
|
||||
const uint16_t HuffDecoderCommon::table40_4_ops_[32] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0066, 0x0066, 0x0066, 0x0066, 0x0086, 0x0086, 0x0086, 0x0086,
|
||||
0x00a6, 0x00a6, 0x00a6, 0x00a6, 0x00c6, 0x00c6, 0x00c6, 0x00c6};
|
||||
const uint8_t HuffDecoderCommon::table40_5_emit_[8] = {0x08, 0x0b, 0x0c, 0x0e,
|
||||
0x0f, 0x10, 0x11, 0x12};
|
||||
const uint16_t HuffDecoderCommon::table40_5_ops_[32] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0066, 0x0066, 0x0066, 0x0066,
|
||||
0x0086, 0x0086, 0x0086, 0x0086, 0x00a6, 0x00a6, 0x00a6, 0x00a6,
|
||||
0x00c6, 0x00c6, 0x00c6, 0x00c6, 0x00e6, 0x00e6, 0x00e6, 0x00e6};
|
||||
const uint8_t HuffDecoderCommon::table40_6_emit_[8] = {0x13, 0x14, 0x15, 0x17,
|
||||
0x18, 0x19, 0x1a, 0x1b};
|
||||
const uint8_t HuffDecoderCommon::table40_7_emit_[10] = {
|
||||
0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9, 0x0a, 0x0d, 0x16};
|
||||
const uint16_t HuffDecoderCommon::table40_7_ops_[32] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0066, 0x0066, 0x0066, 0x0066,
|
||||
0x0086, 0x0086, 0x0086, 0x0086, 0x00a6, 0x00a6, 0x00a6, 0x00a6,
|
||||
0x00c6, 0x00c6, 0x00c6, 0x00c6, 0x00e8, 0x0108, 0x0128, 0x0018};
|
||||
const uint8_t* const HuffDecoderCommon::table40_emit_[8] = {
|
||||
table40_0_emit_, table40_1_emit_, table40_2_emit_, table40_3_emit_,
|
||||
table40_4_emit_, table40_5_emit_, table40_6_emit_, table40_7_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table40_ops_[8] = {
|
||||
table40_0_ops_, table40_0_ops_, table40_0_ops_, table40_0_ops_,
|
||||
table40_4_ops_, table40_5_ops_, table40_5_ops_, table40_7_ops_,
|
||||
};
|
||||
} // namespace geometry_10_12_8
|
||||
} // namespace grpc_core
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -1,810 +0,0 @@
|
|||
// Copyright 2023 gRPC authors.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// This file is autogenerated: see
|
||||
// tools/codegen/core/gen_huffman_decompressor.cc
|
||||
|
||||
#include <grpc/support/port_platform.h>
|
||||
|
||||
#include "test/cpp/microbenchmarks/huffman_geometries/decode_huff_10_9_11.h"
|
||||
namespace grpc_core {
|
||||
namespace geometry_10_9_11 {
|
||||
const uint8_t HuffDecoderCommon::table2_0_emit_[10] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table2_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table3_0_emit_[36] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20, 0x25,
|
||||
0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3d, 0x41,
|
||||
0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70, 0x72, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table3_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x29, 0x2d,
|
||||
0x31, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x59,
|
||||
0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85,
|
||||
0x89, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table4_0_emit_[22] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20,
|
||||
0x25, 0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table4_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00,
|
||||
0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2d,
|
||||
0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41, 0x00,
|
||||
0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table4_1_emit_[46] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70,
|
||||
0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,
|
||||
0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56,
|
||||
0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78, 0x79, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table4_1_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49,
|
||||
0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75,
|
||||
0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1,
|
||||
0xa5, 0xa9, 0xad, 0xb1, 0xb5, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table4_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table4_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table4_ops_[2] = {
|
||||
table4_0_ops_,
|
||||
table4_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table5_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29,
|
||||
0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35,
|
||||
0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41,
|
||||
0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d,
|
||||
0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table5_1_emit_[52] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e,
|
||||
0x70, 0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,
|
||||
0x54, 0x55, 0x56, 0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78,
|
||||
0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table5_1_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d,
|
||||
0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55,
|
||||
0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6d,
|
||||
0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81, 0x00, 0x85,
|
||||
0x00, 0x89, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x95, 0x00, 0x99, 0x00, 0x9d,
|
||||
0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xad, 0x00, 0xb1, 0x00, 0xb5,
|
||||
0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table5_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table5_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table5_ops_[2] = {
|
||||
table5_0_ops_,
|
||||
table5_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table6_0_emit_[2] = {0x30, 0x31};
|
||||
const uint8_t HuffDecoderCommon::table6_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05};
|
||||
const uint8_t HuffDecoderCommon::table6_1_emit_[2] = {0x32, 0x61};
|
||||
const uint8_t HuffDecoderCommon::table6_2_emit_[2] = {0x63, 0x65};
|
||||
const uint8_t HuffDecoderCommon::table6_3_emit_[2] = {0x69, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table6_4_emit_[2] = {0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table6_5_emit_[4] = {0x20, 0x25, 0x2d, 0x2e};
|
||||
const uint8_t HuffDecoderCommon::table6_5_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d};
|
||||
const uint8_t HuffDecoderCommon::table6_6_emit_[4] = {0x2f, 0x33, 0x34, 0x35};
|
||||
const uint8_t HuffDecoderCommon::table6_7_emit_[4] = {0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table6_8_emit_[4] = {0x3d, 0x41, 0x5f, 0x62};
|
||||
const uint8_t HuffDecoderCommon::table6_9_emit_[4] = {0x64, 0x66, 0x67, 0x68};
|
||||
const uint8_t HuffDecoderCommon::table6_10_emit_[4] = {0x6c, 0x6d, 0x6e, 0x70};
|
||||
const uint8_t HuffDecoderCommon::table6_11_emit_[6] = {0x72, 0x75, 0x3a,
|
||||
0x42, 0x43, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table6_11_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
|
||||
0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15};
|
||||
const uint8_t HuffDecoderCommon::table6_12_emit_[8] = {0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table6_12_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d};
|
||||
const uint8_t HuffDecoderCommon::table6_13_emit_[8] = {0x4d, 0x4e, 0x4f, 0x50,
|
||||
0x51, 0x52, 0x53, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table6_14_emit_[8] = {0x55, 0x56, 0x57, 0x59,
|
||||
0x6a, 0x6b, 0x71, 0x76};
|
||||
const uint8_t HuffDecoderCommon::table6_15_emit_[10] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table6_15_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19,
|
||||
0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table6_emit_[16] = {
|
||||
table6_0_emit_, table6_1_emit_, table6_2_emit_, table6_3_emit_,
|
||||
table6_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table6_15_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table6_ops_[16] = {
|
||||
table6_0_ops_, table6_0_ops_, table6_0_ops_, table6_0_ops_,
|
||||
table6_0_ops_, table6_5_ops_, table6_5_ops_, table6_5_ops_,
|
||||
table6_5_ops_, table6_5_ops_, table6_5_ops_, table6_11_ops_,
|
||||
table6_12_ops_, table6_12_ops_, table6_12_ops_, table6_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table1_0_emit_[36] = {
|
||||
0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x61, 0x30, 0x63, 0x30, 0x65, 0x30,
|
||||
0x69, 0x30, 0x6f, 0x30, 0x73, 0x30, 0x74, 0x31, 0x31, 0x32, 0x31, 0x61,
|
||||
0x31, 0x63, 0x31, 0x65, 0x31, 0x69, 0x31, 0x6f, 0x31, 0x73, 0x31, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_0_inner_[22] = {
|
||||
0x000a, 0x008a, 0x018a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x010a, 0x098a, 0x0a0a, 0x0b0a, 0x0c0a,
|
||||
0x0d0a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0115};
|
||||
const uint8_t HuffDecoderCommon::table1_0_outer_[64] = {
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10, 10, 10,
|
||||
10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
||||
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21,
|
||||
21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21};
|
||||
const uint8_t HuffDecoderCommon::table1_1_emit_[36] = {
|
||||
0x32, 0x30, 0x32, 0x31, 0x32, 0x32, 0x61, 0x32, 0x63, 0x32, 0x65, 0x32,
|
||||
0x69, 0x32, 0x6f, 0x32, 0x73, 0x32, 0x74, 0x61, 0x30, 0x61, 0x31, 0x61,
|
||||
0x61, 0x63, 0x61, 0x65, 0x61, 0x69, 0x61, 0x6f, 0x61, 0x73, 0x61, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_1_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x030a, 0x0b8a, 0x0c0a,
|
||||
0x0d0a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0315};
|
||||
const uint8_t HuffDecoderCommon::table1_2_emit_[36] = {
|
||||
0x63, 0x30, 0x63, 0x31, 0x63, 0x32, 0x63, 0x61, 0x63, 0x63, 0x65, 0x63,
|
||||
0x69, 0x63, 0x6f, 0x63, 0x73, 0x63, 0x74, 0x65, 0x30, 0x65, 0x31, 0x65,
|
||||
0x32, 0x65, 0x61, 0x65, 0x65, 0x69, 0x65, 0x6f, 0x65, 0x73, 0x65, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_2_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x0b8a, 0x0c8a, 0x050a,
|
||||
0x0d8a, 0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x0515};
|
||||
const uint8_t HuffDecoderCommon::table1_3_emit_[36] = {
|
||||
0x69, 0x30, 0x69, 0x31, 0x69, 0x32, 0x69, 0x61, 0x69, 0x63, 0x69, 0x65,
|
||||
0x69, 0x69, 0x6f, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x30, 0x6f, 0x31, 0x6f,
|
||||
0x32, 0x6f, 0x61, 0x6f, 0x63, 0x6f, 0x65, 0x6f, 0x6f, 0x73, 0x6f, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_3_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x068a,
|
||||
0x078a, 0x088a, 0x0015, 0x098a, 0x0a8a, 0x0b8a, 0x0c8a, 0x0d8a,
|
||||
0x0e8a, 0x070a, 0x0f8a, 0x100a, 0x110a, 0x0715};
|
||||
const uint8_t HuffDecoderCommon::table1_4_emit_[38] = {
|
||||
0x73, 0x30, 0x73, 0x31, 0x73, 0x32, 0x73, 0x61, 0x73, 0x63,
|
||||
0x73, 0x65, 0x73, 0x69, 0x73, 0x6f, 0x73, 0x73, 0x74, 0x30,
|
||||
0x74, 0x31, 0x74, 0x32, 0x74, 0x61, 0x74, 0x63, 0x74, 0x65,
|
||||
0x74, 0x69, 0x74, 0x6f, 0x74, 0x73, 0x74, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_4_inner_[22] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x080a, 0x088a, 0x0015, 0x090a, 0x0a0a, 0x0b0a, 0x0c0a, 0x0d0a,
|
||||
0x0e0a, 0x0f0a, 0x100a, 0x110a, 0x120a, 0x0915};
|
||||
const uint16_t HuffDecoderCommon::table1_5_inner_[4] = {0x0016, 0x0096, 0x0116,
|
||||
0x0196};
|
||||
const uint8_t HuffDecoderCommon::table1_5_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3};
|
||||
const uint16_t HuffDecoderCommon::table1_11_inner_[6] = {
|
||||
0x0016, 0x0096, 0x0117, 0x0197, 0x0217, 0x0297};
|
||||
const uint8_t HuffDecoderCommon::table1_11_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3,
|
||||
3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5};
|
||||
const uint16_t HuffDecoderCommon::table1_12_inner_[8] = {
|
||||
0x0017, 0x0097, 0x0117, 0x0197, 0x0217, 0x0297, 0x0317, 0x0397};
|
||||
const uint8_t HuffDecoderCommon::table1_12_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5,
|
||||
5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7};
|
||||
const uint8_t HuffDecoderCommon::table1_15_emit_[15] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b,
|
||||
0x58, 0x5a, 0x21, 0x22, 0x28, 0x29, 0x3f};
|
||||
const uint16_t HuffDecoderCommon::table1_15_inner_[18] = {
|
||||
0x0017, 0x0097, 0x0117, 0x0197, 0x0218, 0x0298, 0x0318, 0x0398, 0x0418,
|
||||
0x0498, 0x051a, 0x059a, 0x061a, 0x069a, 0x071a, 0x002a, 0x003a, 0x004a};
|
||||
const uint8_t HuffDecoderCommon::table1_15_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 6,
|
||||
7, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 9, 10, 11, 12, 13, 14, 15, 16, 17};
|
||||
const uint8_t* const HuffDecoderCommon::table1_emit_[16] = {
|
||||
table1_0_emit_, table1_1_emit_, table1_2_emit_, table1_3_emit_,
|
||||
table1_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table1_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table1_inner_[16] = {
|
||||
table1_0_inner_, table1_1_inner_, table1_2_inner_, table1_3_inner_,
|
||||
table1_4_inner_, table1_5_inner_, table1_5_inner_, table1_5_inner_,
|
||||
table1_5_inner_, table1_5_inner_, table1_5_inner_, table1_11_inner_,
|
||||
table1_12_inner_, table1_12_inner_, table1_12_inner_, table1_15_inner_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table1_outer_[16] = {
|
||||
table1_0_outer_, table1_0_outer_, table1_0_outer_, table1_0_outer_,
|
||||
table1_0_outer_, table1_5_outer_, table1_5_outer_, table1_5_outer_,
|
||||
table1_5_outer_, table1_5_outer_, table1_5_outer_, table1_11_outer_,
|
||||
table1_12_outer_, table1_12_outer_, table1_12_outer_, table1_15_outer_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table9_0_emit_[6] = {0x00, 0x24, 0x40,
|
||||
0x5b, 0x5d, 0x7e};
|
||||
const uint8_t HuffDecoderCommon::table9_0_inner_[8] = {0x00, 0x04, 0x08, 0x0c,
|
||||
0x10, 0x14, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table10_0_emit_[8] = {0x00, 0x24, 0x40, 0x5b,
|
||||
0x5d, 0x7e, 0x5e, 0x7d};
|
||||
const uint8_t HuffDecoderCommon::table10_0_inner_[10] = {
|
||||
0x00, 0x01, 0x05, 0x09, 0x0d, 0x11, 0x15, 0x19, 0x1d, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table10_0_outer_[16] = {
|
||||
0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 7, 8, 0, 9};
|
||||
const uint8_t HuffDecoderCommon::table11_0_emit_[11] = {
|
||||
0x00, 0x24, 0x40, 0x5b, 0x5d, 0x7e, 0x5e, 0x7d, 0x3c, 0x60, 0x7b};
|
||||
const uint8_t HuffDecoderCommon::table11_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x19, 0x00, 0x1d, 0x21, 0x25, 0x29, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table12_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00,
|
||||
0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table13_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25,
|
||||
0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table14_0_emit_[40] = {
|
||||
0x00, 0x30, 0x00, 0x31, 0x00, 0x32, 0x00, 0x61, 0x00, 0x63,
|
||||
0x00, 0x65, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x73, 0x00, 0x74,
|
||||
0x24, 0x30, 0x24, 0x31, 0x24, 0x32, 0x24, 0x61, 0x24, 0x63,
|
||||
0x24, 0x65, 0x24, 0x69, 0x24, 0x6f, 0x24, 0x73, 0x24, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_0_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x48, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x50,
|
||||
0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x90, 0x98, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x52};
|
||||
const uint8_t HuffDecoderCommon::table14_1_emit_[40] = {
|
||||
0x40, 0x30, 0x40, 0x31, 0x40, 0x32, 0x40, 0x61, 0x40, 0x63,
|
||||
0x40, 0x65, 0x40, 0x69, 0x40, 0x6f, 0x40, 0x73, 0x40, 0x74,
|
||||
0x5b, 0x30, 0x5b, 0x31, 0x5b, 0x32, 0x5b, 0x61, 0x5b, 0x63,
|
||||
0x5b, 0x65, 0x5b, 0x69, 0x5b, 0x6f, 0x5b, 0x73, 0x5b, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_2_emit_[40] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63,
|
||||
0x5d, 0x65, 0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74,
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63,
|
||||
0x7e, 0x65, 0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table14_3_emit_[5] = {0x5e, 0x7d, 0x3c, 0x60,
|
||||
0x7b};
|
||||
const uint8_t HuffDecoderCommon::table14_3_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x12, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table14_emit_[4] = {
|
||||
table14_0_emit_,
|
||||
table14_1_emit_,
|
||||
table14_2_emit_,
|
||||
table14_3_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table14_ops_[4] = {
|
||||
table14_0_ops_,
|
||||
table14_0_ops_,
|
||||
table14_0_ops_,
|
||||
table14_3_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table8_0_emit_[1] = {0x00};
|
||||
const uint16_t HuffDecoderCommon::table8_0_ops_[64] = {
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003};
|
||||
const uint8_t HuffDecoderCommon::table8_1_emit_[1] = {0x24};
|
||||
const uint8_t HuffDecoderCommon::table8_2_emit_[1] = {0x40};
|
||||
const uint8_t HuffDecoderCommon::table8_3_emit_[1] = {0x5b};
|
||||
const uint8_t HuffDecoderCommon::table8_4_emit_[1] = {0x5d};
|
||||
const uint8_t HuffDecoderCommon::table8_5_emit_[1] = {0x7e};
|
||||
const uint8_t HuffDecoderCommon::table8_6_emit_[2] = {0x5e, 0x7d};
|
||||
const uint16_t HuffDecoderCommon::table8_6_ops_[64] = {
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104,
|
||||
0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104,
|
||||
0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104,
|
||||
0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104, 0x0104};
|
||||
const uint8_t HuffDecoderCommon::table8_7_emit_[6] = {0x3c, 0x60, 0x7b,
|
||||
0x5c, 0xc3, 0xd0};
|
||||
const uint16_t HuffDecoderCommon::table8_7_ops_[64] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0105, 0x0105, 0x0105, 0x0105, 0x0105, 0x0105, 0x0105, 0x0105,
|
||||
0x0105, 0x0105, 0x0105, 0x0105, 0x0105, 0x0105, 0x0105, 0x0105,
|
||||
0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205,
|
||||
0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205, 0x0205,
|
||||
0x0309, 0x0409, 0x0509, 0x0019, 0x0029, 0x0039, 0x0049, 0x0059,
|
||||
0x0069, 0x0079, 0x0089, 0x0099, 0x00a9, 0x00b9, 0x00c9, 0x00d9};
|
||||
const uint8_t* const HuffDecoderCommon::table8_emit_[8] = {
|
||||
table8_0_emit_, table8_1_emit_, table8_2_emit_, table8_3_emit_,
|
||||
table8_4_emit_, table8_5_emit_, table8_6_emit_, table8_7_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table8_ops_[8] = {
|
||||
table8_0_ops_, table8_0_ops_, table8_0_ops_, table8_0_ops_,
|
||||
table8_0_ops_, table8_0_ops_, table8_6_ops_, table8_7_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table22_0_emit_[8] = {0x9a, 0x9c, 0xa0, 0xa3,
|
||||
0xa4, 0xa9, 0xaa, 0xad};
|
||||
const uint8_t HuffDecoderCommon::table22_0_inner_[8] = {0x03, 0x07, 0x0b, 0x0f,
|
||||
0x13, 0x17, 0x1b, 0x1f};
|
||||
const uint8_t HuffDecoderCommon::table23_0_emit_[8] = {0xb2, 0xb5, 0xb9, 0xba,
|
||||
0xbb, 0xbd, 0xbe, 0xc4};
|
||||
const uint8_t HuffDecoderCommon::table24_0_emit_[16] = {
|
||||
0x93, 0x95, 0x96, 0x97, 0x98, 0x9b, 0x9d, 0x9e,
|
||||
0xa5, 0xa6, 0xa8, 0xae, 0xaf, 0xb4, 0xb6, 0xb7};
|
||||
const uint8_t HuffDecoderCommon::table24_0_inner_[16] = {
|
||||
0x04, 0x0c, 0x14, 0x1c, 0x24, 0x2c, 0x34, 0x3c,
|
||||
0x44, 0x4c, 0x54, 0x5c, 0x64, 0x6c, 0x74, 0x7c};
|
||||
const uint8_t HuffDecoderCommon::table25_0_emit_[7] = {0xe6, 0x81, 0x84, 0x85,
|
||||
0x86, 0x88, 0x92};
|
||||
const uint8_t HuffDecoderCommon::table25_0_inner_[7] = {0x02, 0x07, 0x0b, 0x0f,
|
||||
0x13, 0x17, 0x1b};
|
||||
const uint8_t HuffDecoderCommon::table28_0_inner_[5] = {0x00, 0x02, 0x04, 0x06,
|
||||
0x01};
|
||||
const uint8_t HuffDecoderCommon::table27_0_emit_[12] = {
|
||||
0xc6, 0xe4, 0xe8, 0xe9, 0x01, 0x87, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8f};
|
||||
const uint8_t HuffDecoderCommon::table27_0_inner_[12] = {
|
||||
0x03, 0x0b, 0x13, 0x1b, 0x24, 0x2c, 0x34, 0x3c, 0x44, 0x4c, 0x54, 0x5c};
|
||||
const uint8_t HuffDecoderCommon::table30_0_emit_[5] = {0xbc, 0xbf, 0xc5, 0xe7,
|
||||
0xef};
|
||||
const uint8_t HuffDecoderCommon::table30_0_inner_[7] = {0x00, 0x04, 0x08, 0x0c,
|
||||
0x10, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table31_0_emit_[17] = {
|
||||
0xbc, 0xbf, 0xc5, 0xe7, 0xef, 0x09, 0x8e, 0x90, 0x91,
|
||||
0x94, 0x9f, 0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed};
|
||||
const uint8_t HuffDecoderCommon::table31_0_ops_[32] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x15,
|
||||
0x19, 0x1d, 0x21, 0x25, 0x29, 0x2d, 0x31, 0x35, 0x39, 0x3d, 0x41,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table32_0_emit_[21] = {
|
||||
0xbc, 0xbf, 0xc5, 0xe7, 0xef, 0x09, 0x8e, 0x90, 0x91, 0x94, 0x9f,
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table32_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x15,
|
||||
0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29, 0x00,
|
||||
0x2d, 0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41,
|
||||
0x45, 0x49, 0x4d, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table33_0_emit_[36] = {
|
||||
0xbc, 0xbf, 0xc5, 0xe7, 0xef, 0x09, 0x8e, 0x90, 0x91, 0x94, 0x9f, 0xab,
|
||||
0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb, 0xc0, 0xc1, 0xc8,
|
||||
0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff};
|
||||
const uint8_t HuffDecoderCommon::table33_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x19,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25,
|
||||
0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x31,
|
||||
0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3d,
|
||||
0x00, 0x00, 0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51,
|
||||
0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81,
|
||||
0x85, 0x89, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table34_0_emit_[55] = {
|
||||
0xbc, 0xbf, 0xc5, 0xe7, 0xef, 0x09, 0x8e, 0x90, 0x91, 0x94, 0x9f,
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb, 0xc0,
|
||||
0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee, 0xf0,
|
||||
0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf,
|
||||
0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe};
|
||||
const uint8_t HuffDecoderCommon::table34_0_ops_[256] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x45,
|
||||
0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x51,
|
||||
0x00, 0x55, 0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69,
|
||||
0x00, 0x6d, 0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81,
|
||||
0x00, 0x85, 0x00, 0x89, 0x00, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1, 0xa5,
|
||||
0xa9, 0xad, 0xb1, 0xb5, 0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0xd1, 0xd5,
|
||||
0xd9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table35_0_emit_[40] = {
|
||||
0xbc, 0x30, 0xbc, 0x31, 0xbc, 0x32, 0xbc, 0x61, 0xbc, 0x63,
|
||||
0xbc, 0x65, 0xbc, 0x69, 0xbc, 0x6f, 0xbc, 0x73, 0xbc, 0x74,
|
||||
0xbf, 0x30, 0xbf, 0x31, 0xbf, 0x32, 0xbf, 0x61, 0xbf, 0x63,
|
||||
0xbf, 0x65, 0xbf, 0x69, 0xbf, 0x6f, 0xbf, 0x73, 0xbf, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table35_1_emit_[40] = {
|
||||
0xc5, 0x30, 0xc5, 0x31, 0xc5, 0x32, 0xc5, 0x61, 0xc5, 0x63,
|
||||
0xc5, 0x65, 0xc5, 0x69, 0xc5, 0x6f, 0xc5, 0x73, 0xc5, 0x74,
|
||||
0xe7, 0x30, 0xe7, 0x31, 0xe7, 0x32, 0xe7, 0x61, 0xe7, 0x63,
|
||||
0xe7, 0x65, 0xe7, 0x69, 0xe7, 0x6f, 0xe7, 0x73, 0xe7, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table35_2_emit_[22] = {
|
||||
0xef, 0x30, 0xef, 0x31, 0xef, 0x32, 0xef, 0x61, 0xef, 0x63, 0xef,
|
||||
0x65, 0xef, 0x69, 0xef, 0x6f, 0xef, 0x73, 0xef, 0x74, 0x09, 0x8e};
|
||||
const uint8_t HuffDecoderCommon::table35_2_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x48, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x52, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x56};
|
||||
const uint8_t HuffDecoderCommon::table35_3_emit_[4] = {0x90, 0x91, 0x94, 0x9f};
|
||||
const uint8_t HuffDecoderCommon::table35_3_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e};
|
||||
const uint8_t HuffDecoderCommon::table35_4_emit_[4] = {0xab, 0xce, 0xd7, 0xe1};
|
||||
const uint8_t HuffDecoderCommon::table35_5_emit_[6] = {0xec, 0xed, 0xc7,
|
||||
0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table35_5_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x12, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x16};
|
||||
const uint8_t HuffDecoderCommon::table35_6_emit_[17] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda,
|
||||
0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc};
|
||||
const uint8_t HuffDecoderCommon::table35_6_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01,
|
||||
0x0a, 0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x12, 0x01, 0x01,
|
||||
0x01, 0x16, 0x01, 0x01, 0x01, 0x1a, 0x01, 0x01, 0x01, 0x1e, 0x01,
|
||||
0x01, 0x01, 0x22, 0x01, 0x01, 0x01, 0x26, 0x01, 0x01, 0x01, 0x2a,
|
||||
0x01, 0x01, 0x01, 0x2e, 0x01, 0x01, 0x01, 0x32, 0x01, 0x01, 0x01,
|
||||
0x36, 0x01, 0x01, 0x01, 0x3a, 0x01, 0x3e, 0x01, 0x42};
|
||||
const uint8_t HuffDecoderCommon::table35_7_emit_[46] = {
|
||||
0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf, 0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8,
|
||||
0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
|
||||
0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18,
|
||||
0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint8_t HuffDecoderCommon::table35_7_ops_[64] = {
|
||||
0x01, 0x02, 0x01, 0x06, 0x01, 0x0a, 0x01, 0x0e, 0x01, 0x12, 0x01,
|
||||
0x16, 0x01, 0x1a, 0x01, 0x1e, 0x01, 0x22, 0x01, 0x26, 0x01, 0x2a,
|
||||
0x01, 0x2e, 0x01, 0x32, 0x01, 0x36, 0x01, 0x3a, 0x01, 0x3e, 0x01,
|
||||
0x42, 0x46, 0x4a, 0x4e, 0x52, 0x56, 0x5a, 0x5e, 0x62, 0x66, 0x6a,
|
||||
0x6e, 0x72, 0x76, 0x7a, 0x7e, 0x82, 0x86, 0x8a, 0x8e, 0x92, 0x96,
|
||||
0x9a, 0x9e, 0xa2, 0xa6, 0xaa, 0xae, 0xb2, 0xb6, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table35_emit_[8] = {
|
||||
table35_0_emit_, table35_1_emit_, table35_2_emit_, table35_3_emit_,
|
||||
table35_4_emit_, table35_5_emit_, table35_6_emit_, table35_7_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table35_ops_[8] = {
|
||||
table14_0_ops_, table14_0_ops_, table35_2_ops_, table35_3_ops_,
|
||||
table35_3_ops_, table35_5_ops_, table35_6_ops_, table35_7_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table36_0_emit_[72] = {
|
||||
0xbc, 0x30, 0xbc, 0x31, 0xbc, 0x32, 0xbc, 0x61, 0xbc, 0x63, 0xbc, 0x65,
|
||||
0xbc, 0x69, 0xbc, 0x6f, 0xbc, 0x73, 0xbc, 0x74, 0xbc, 0x20, 0xbc, 0x25,
|
||||
0xbc, 0x2d, 0xbc, 0x2e, 0xbc, 0x2f, 0xbc, 0x33, 0xbc, 0x34, 0xbc, 0x35,
|
||||
0xbc, 0x36, 0xbc, 0x37, 0xbc, 0x38, 0xbc, 0x39, 0xbc, 0x3d, 0xbc, 0x41,
|
||||
0xbc, 0x5f, 0xbc, 0x62, 0xbc, 0x64, 0xbc, 0x66, 0xbc, 0x67, 0xbc, 0x68,
|
||||
0xbc, 0x6c, 0xbc, 0x6d, 0xbc, 0x6e, 0xbc, 0x70, 0xbc, 0x72, 0xbc, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table36_0_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0051, 0x0059, 0x0061, 0x0069,
|
||||
0x0071, 0x0079, 0x0081, 0x0089, 0x0091, 0x0099, 0x00a1, 0x00a9,
|
||||
0x00b1, 0x00b9, 0x00c1, 0x00c9, 0x00d1, 0x00d9, 0x00e1, 0x00e9,
|
||||
0x00f1, 0x00f9, 0x0101, 0x0109, 0x0111, 0x0119, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table36_1_emit_[72] = {
|
||||
0xbf, 0x30, 0xbf, 0x31, 0xbf, 0x32, 0xbf, 0x61, 0xbf, 0x63, 0xbf, 0x65,
|
||||
0xbf, 0x69, 0xbf, 0x6f, 0xbf, 0x73, 0xbf, 0x74, 0xbf, 0x20, 0xbf, 0x25,
|
||||
0xbf, 0x2d, 0xbf, 0x2e, 0xbf, 0x2f, 0xbf, 0x33, 0xbf, 0x34, 0xbf, 0x35,
|
||||
0xbf, 0x36, 0xbf, 0x37, 0xbf, 0x38, 0xbf, 0x39, 0xbf, 0x3d, 0xbf, 0x41,
|
||||
0xbf, 0x5f, 0xbf, 0x62, 0xbf, 0x64, 0xbf, 0x66, 0xbf, 0x67, 0xbf, 0x68,
|
||||
0xbf, 0x6c, 0xbf, 0x6d, 0xbf, 0x6e, 0xbf, 0x70, 0xbf, 0x72, 0xbf, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table36_2_emit_[72] = {
|
||||
0xc5, 0x30, 0xc5, 0x31, 0xc5, 0x32, 0xc5, 0x61, 0xc5, 0x63, 0xc5, 0x65,
|
||||
0xc5, 0x69, 0xc5, 0x6f, 0xc5, 0x73, 0xc5, 0x74, 0xc5, 0x20, 0xc5, 0x25,
|
||||
0xc5, 0x2d, 0xc5, 0x2e, 0xc5, 0x2f, 0xc5, 0x33, 0xc5, 0x34, 0xc5, 0x35,
|
||||
0xc5, 0x36, 0xc5, 0x37, 0xc5, 0x38, 0xc5, 0x39, 0xc5, 0x3d, 0xc5, 0x41,
|
||||
0xc5, 0x5f, 0xc5, 0x62, 0xc5, 0x64, 0xc5, 0x66, 0xc5, 0x67, 0xc5, 0x68,
|
||||
0xc5, 0x6c, 0xc5, 0x6d, 0xc5, 0x6e, 0xc5, 0x70, 0xc5, 0x72, 0xc5, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table36_3_emit_[72] = {
|
||||
0xe7, 0x30, 0xe7, 0x31, 0xe7, 0x32, 0xe7, 0x61, 0xe7, 0x63, 0xe7, 0x65,
|
||||
0xe7, 0x69, 0xe7, 0x6f, 0xe7, 0x73, 0xe7, 0x74, 0xe7, 0x20, 0xe7, 0x25,
|
||||
0xe7, 0x2d, 0xe7, 0x2e, 0xe7, 0x2f, 0xe7, 0x33, 0xe7, 0x34, 0xe7, 0x35,
|
||||
0xe7, 0x36, 0xe7, 0x37, 0xe7, 0x38, 0xe7, 0x39, 0xe7, 0x3d, 0xe7, 0x41,
|
||||
0xe7, 0x5f, 0xe7, 0x62, 0xe7, 0x64, 0xe7, 0x66, 0xe7, 0x67, 0xe7, 0x68,
|
||||
0xe7, 0x6c, 0xe7, 0x6d, 0xe7, 0x6e, 0xe7, 0x70, 0xe7, 0x72, 0xe7, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table36_4_emit_[72] = {
|
||||
0xef, 0x30, 0xef, 0x31, 0xef, 0x32, 0xef, 0x61, 0xef, 0x63, 0xef, 0x65,
|
||||
0xef, 0x69, 0xef, 0x6f, 0xef, 0x73, 0xef, 0x74, 0xef, 0x20, 0xef, 0x25,
|
||||
0xef, 0x2d, 0xef, 0x2e, 0xef, 0x2f, 0xef, 0x33, 0xef, 0x34, 0xef, 0x35,
|
||||
0xef, 0x36, 0xef, 0x37, 0xef, 0x38, 0xef, 0x39, 0xef, 0x3d, 0xef, 0x41,
|
||||
0xef, 0x5f, 0xef, 0x62, 0xef, 0x64, 0xef, 0x66, 0xef, 0x67, 0xef, 0x68,
|
||||
0xef, 0x6c, 0xef, 0x6d, 0xef, 0x6e, 0xef, 0x70, 0xef, 0x72, 0xef, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table36_5_emit_[40] = {
|
||||
0x09, 0x30, 0x09, 0x31, 0x09, 0x32, 0x09, 0x61, 0x09, 0x63,
|
||||
0x09, 0x65, 0x09, 0x69, 0x09, 0x6f, 0x09, 0x73, 0x09, 0x74,
|
||||
0x8e, 0x30, 0x8e, 0x31, 0x8e, 0x32, 0x8e, 0x61, 0x8e, 0x63,
|
||||
0x8e, 0x65, 0x8e, 0x69, 0x8e, 0x6f, 0x8e, 0x73, 0x8e, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table36_5_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0051, 0x0059, 0x0061, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0052};
|
||||
const uint8_t HuffDecoderCommon::table36_6_emit_[40] = {
|
||||
0x90, 0x30, 0x90, 0x31, 0x90, 0x32, 0x90, 0x61, 0x90, 0x63,
|
||||
0x90, 0x65, 0x90, 0x69, 0x90, 0x6f, 0x90, 0x73, 0x90, 0x74,
|
||||
0x91, 0x30, 0x91, 0x31, 0x91, 0x32, 0x91, 0x61, 0x91, 0x63,
|
||||
0x91, 0x65, 0x91, 0x69, 0x91, 0x6f, 0x91, 0x73, 0x91, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table36_7_emit_[40] = {
|
||||
0x94, 0x30, 0x94, 0x31, 0x94, 0x32, 0x94, 0x61, 0x94, 0x63,
|
||||
0x94, 0x65, 0x94, 0x69, 0x94, 0x6f, 0x94, 0x73, 0x94, 0x74,
|
||||
0x9f, 0x30, 0x9f, 0x31, 0x9f, 0x32, 0x9f, 0x61, 0x9f, 0x63,
|
||||
0x9f, 0x65, 0x9f, 0x69, 0x9f, 0x6f, 0x9f, 0x73, 0x9f, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table36_8_emit_[40] = {
|
||||
0xab, 0x30, 0xab, 0x31, 0xab, 0x32, 0xab, 0x61, 0xab, 0x63,
|
||||
0xab, 0x65, 0xab, 0x69, 0xab, 0x6f, 0xab, 0x73, 0xab, 0x74,
|
||||
0xce, 0x30, 0xce, 0x31, 0xce, 0x32, 0xce, 0x61, 0xce, 0x63,
|
||||
0xce, 0x65, 0xce, 0x69, 0xce, 0x6f, 0xce, 0x73, 0xce, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table36_9_emit_[40] = {
|
||||
0xd7, 0x30, 0xd7, 0x31, 0xd7, 0x32, 0xd7, 0x61, 0xd7, 0x63,
|
||||
0xd7, 0x65, 0xd7, 0x69, 0xd7, 0x6f, 0xd7, 0x73, 0xd7, 0x74,
|
||||
0xe1, 0x30, 0xe1, 0x31, 0xe1, 0x32, 0xe1, 0x61, 0xe1, 0x63,
|
||||
0xe1, 0x65, 0xe1, 0x69, 0xe1, 0x6f, 0xe1, 0x73, 0xe1, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table36_10_emit_[40] = {
|
||||
0xec, 0x30, 0xec, 0x31, 0xec, 0x32, 0xec, 0x61, 0xec, 0x63,
|
||||
0xec, 0x65, 0xec, 0x69, 0xec, 0x6f, 0xec, 0x73, 0xec, 0x74,
|
||||
0xed, 0x30, 0xed, 0x31, 0xed, 0x32, 0xed, 0x61, 0xed, 0x63,
|
||||
0xed, 0x65, 0xed, 0x69, 0xed, 0x6f, 0xed, 0x73, 0xed, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table36_11_emit_[4] = {0xc7, 0xcf, 0xea, 0xeb};
|
||||
const uint16_t HuffDecoderCommon::table36_11_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000a,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000e};
|
||||
const uint8_t HuffDecoderCommon::table36_12_emit_[8] = {0xc0, 0xc1, 0xc8, 0xc9,
|
||||
0xca, 0xcd, 0xd2, 0xd5};
|
||||
const uint16_t HuffDecoderCommon::table36_12_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000a,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000e,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0012,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0016,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x001a,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x001e};
|
||||
const uint8_t HuffDecoderCommon::table36_13_emit_[9] = {
|
||||
0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc};
|
||||
const uint16_t HuffDecoderCommon::table36_13_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000a,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000e,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0012,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0016,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x001a,
|
||||
0x0000, 0x0000, 0x0000, 0x001e, 0x0000, 0x0000, 0x0000, 0x0022};
|
||||
const uint8_t HuffDecoderCommon::table36_14_emit_[16] = {
|
||||
0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf, 0xf1, 0xf4,
|
||||
0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint16_t HuffDecoderCommon::table36_14_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0002, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x000a, 0x0000, 0x0000, 0x0000, 0x000e,
|
||||
0x0000, 0x0000, 0x0000, 0x0012, 0x0000, 0x0000, 0x0000, 0x0016,
|
||||
0x0000, 0x0000, 0x0000, 0x001a, 0x0000, 0x0000, 0x0000, 0x001e,
|
||||
0x0000, 0x0000, 0x0000, 0x0022, 0x0000, 0x0000, 0x0000, 0x0026,
|
||||
0x0000, 0x0000, 0x0000, 0x002a, 0x0000, 0x0000, 0x0000, 0x002e,
|
||||
0x0000, 0x0000, 0x0000, 0x0032, 0x0000, 0x0000, 0x0000, 0x0036,
|
||||
0x0000, 0x0000, 0x0000, 0x003a, 0x0000, 0x0000, 0x0000, 0x003e};
|
||||
const uint8_t HuffDecoderCommon::table36_15_emit_[30] = {
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x0b, 0x0c,
|
||||
0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18,
|
||||
0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint16_t HuffDecoderCommon::table36_15_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0002, 0x0000, 0x0006, 0x0000, 0x000a,
|
||||
0x0000, 0x000e, 0x0000, 0x0012, 0x0000, 0x0016, 0x0000, 0x001a,
|
||||
0x0000, 0x001e, 0x0000, 0x0022, 0x0000, 0x0026, 0x0000, 0x002a,
|
||||
0x0000, 0x002e, 0x0000, 0x0032, 0x0000, 0x0036, 0x0000, 0x003a,
|
||||
0x0000, 0x003e, 0x0000, 0x0042, 0x0000, 0x0046, 0x0000, 0x004a,
|
||||
0x0000, 0x004e, 0x0000, 0x0052, 0x0000, 0x0056, 0x0000, 0x005a,
|
||||
0x0000, 0x005e, 0x0000, 0x0062, 0x0000, 0x0066, 0x0000, 0x006a,
|
||||
0x0000, 0x006e, 0x0000, 0x0072, 0x0000, 0x0076, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table36_emit_[16] = {
|
||||
table36_0_emit_, table36_1_emit_, table36_2_emit_, table36_3_emit_,
|
||||
table36_4_emit_, table36_5_emit_, table36_6_emit_, table36_7_emit_,
|
||||
table36_8_emit_, table36_9_emit_, table36_10_emit_, table36_11_emit_,
|
||||
table36_12_emit_, table36_13_emit_, table36_14_emit_, table36_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table36_ops_[16] = {
|
||||
table36_0_ops_, table36_0_ops_, table36_0_ops_, table36_0_ops_,
|
||||
table36_0_ops_, table36_5_ops_, table36_5_ops_, table36_5_ops_,
|
||||
table36_5_ops_, table36_5_ops_, table36_5_ops_, table36_11_ops_,
|
||||
table36_12_ops_, table36_13_ops_, table36_14_ops_, table36_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table29_0_emit_[1] = {0xbc};
|
||||
const uint16_t HuffDecoderCommon::table29_0_ops_[64] = {
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004};
|
||||
const uint8_t HuffDecoderCommon::table29_2_emit_[1] = {0xbf};
|
||||
const uint8_t HuffDecoderCommon::table29_4_emit_[1] = {0xc5};
|
||||
const uint8_t HuffDecoderCommon::table29_6_emit_[1] = {0xe7};
|
||||
const uint8_t HuffDecoderCommon::table29_8_emit_[1] = {0xef};
|
||||
const uint8_t HuffDecoderCommon::table29_10_emit_[1] = {0x09};
|
||||
const uint16_t HuffDecoderCommon::table29_10_ops_[64] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005};
|
||||
const uint8_t HuffDecoderCommon::table29_11_emit_[1] = {0x8e};
|
||||
const uint8_t HuffDecoderCommon::table29_12_emit_[1] = {0x90};
|
||||
const uint8_t HuffDecoderCommon::table29_13_emit_[1] = {0x91};
|
||||
const uint8_t HuffDecoderCommon::table29_14_emit_[1] = {0x94};
|
||||
const uint8_t HuffDecoderCommon::table29_15_emit_[1] = {0x9f};
|
||||
const uint8_t HuffDecoderCommon::table29_16_emit_[1] = {0xab};
|
||||
const uint8_t HuffDecoderCommon::table29_17_emit_[1] = {0xce};
|
||||
const uint8_t HuffDecoderCommon::table29_18_emit_[1] = {0xd7};
|
||||
const uint8_t HuffDecoderCommon::table29_19_emit_[1] = {0xe1};
|
||||
const uint8_t HuffDecoderCommon::table29_20_emit_[1] = {0xec};
|
||||
const uint8_t HuffDecoderCommon::table29_21_emit_[1] = {0xed};
|
||||
const uint8_t HuffDecoderCommon::table29_22_emit_[2] = {0xc7, 0xcf};
|
||||
const uint16_t HuffDecoderCommon::table29_22_ops_[64] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026};
|
||||
const uint8_t HuffDecoderCommon::table29_23_emit_[2] = {0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table29_24_emit_[4] = {0xc0, 0xc1, 0xc8, 0xc9};
|
||||
const uint16_t HuffDecoderCommon::table29_24_ops_[64] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007,
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007,
|
||||
0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047,
|
||||
0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067};
|
||||
const uint8_t HuffDecoderCommon::table29_25_emit_[4] = {0xca, 0xcd, 0xd2, 0xd5};
|
||||
const uint8_t HuffDecoderCommon::table29_26_emit_[4] = {0xda, 0xdb, 0xee, 0xf0};
|
||||
const uint8_t HuffDecoderCommon::table29_27_emit_[5] = {0xf2, 0xf3, 0xff, 0xcb,
|
||||
0xcc};
|
||||
const uint16_t HuffDecoderCommon::table29_27_ops_[64] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007,
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007,
|
||||
0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047,
|
||||
0x0068, 0x0068, 0x0068, 0x0068, 0x0068, 0x0068, 0x0068, 0x0068,
|
||||
0x0088, 0x0088, 0x0088, 0x0088, 0x0088, 0x0088, 0x0088, 0x0088};
|
||||
const uint8_t HuffDecoderCommon::table29_28_emit_[8] = {0xd3, 0xd4, 0xd6, 0xdd,
|
||||
0xde, 0xdf, 0xf1, 0xf4};
|
||||
const uint16_t HuffDecoderCommon::table29_28_ops_[64] = {
|
||||
0x0008, 0x0008, 0x0008, 0x0008, 0x0008, 0x0008, 0x0008, 0x0008,
|
||||
0x0028, 0x0028, 0x0028, 0x0028, 0x0028, 0x0028, 0x0028, 0x0028,
|
||||
0x0048, 0x0048, 0x0048, 0x0048, 0x0048, 0x0048, 0x0048, 0x0048,
|
||||
0x0068, 0x0068, 0x0068, 0x0068, 0x0068, 0x0068, 0x0068, 0x0068,
|
||||
0x0088, 0x0088, 0x0088, 0x0088, 0x0088, 0x0088, 0x0088, 0x0088,
|
||||
0x00a8, 0x00a8, 0x00a8, 0x00a8, 0x00a8, 0x00a8, 0x00a8, 0x00a8,
|
||||
0x00c8, 0x00c8, 0x00c8, 0x00c8, 0x00c8, 0x00c8, 0x00c8, 0x00c8,
|
||||
0x00e8, 0x00e8, 0x00e8, 0x00e8, 0x00e8, 0x00e8, 0x00e8, 0x00e8};
|
||||
const uint8_t HuffDecoderCommon::table29_29_emit_[8] = {0xf5, 0xf6, 0xf7, 0xf8,
|
||||
0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint8_t HuffDecoderCommon::table29_30_emit_[15] = {
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
|
||||
0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11, 0x12};
|
||||
const uint16_t HuffDecoderCommon::table29_30_ops_[64] = {
|
||||
0x0008, 0x0008, 0x0008, 0x0008, 0x0008, 0x0008, 0x0008, 0x0008,
|
||||
0x0029, 0x0029, 0x0029, 0x0029, 0x0049, 0x0049, 0x0049, 0x0049,
|
||||
0x0069, 0x0069, 0x0069, 0x0069, 0x0089, 0x0089, 0x0089, 0x0089,
|
||||
0x00a9, 0x00a9, 0x00a9, 0x00a9, 0x00c9, 0x00c9, 0x00c9, 0x00c9,
|
||||
0x00e9, 0x00e9, 0x00e9, 0x00e9, 0x0109, 0x0109, 0x0109, 0x0109,
|
||||
0x0129, 0x0129, 0x0129, 0x0129, 0x0149, 0x0149, 0x0149, 0x0149,
|
||||
0x0169, 0x0169, 0x0169, 0x0169, 0x0189, 0x0189, 0x0189, 0x0189,
|
||||
0x01a9, 0x01a9, 0x01a9, 0x01a9, 0x01c9, 0x01c9, 0x01c9, 0x01c9};
|
||||
const uint8_t HuffDecoderCommon::table29_31_emit_[18] = {
|
||||
0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c,
|
||||
0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9, 0x0a, 0x0d, 0x16};
|
||||
const uint16_t HuffDecoderCommon::table29_31_ops_[64] = {
|
||||
0x0009, 0x0009, 0x0009, 0x0009, 0x0029, 0x0029, 0x0029, 0x0029,
|
||||
0x0049, 0x0049, 0x0049, 0x0049, 0x0069, 0x0069, 0x0069, 0x0069,
|
||||
0x0089, 0x0089, 0x0089, 0x0089, 0x00a9, 0x00a9, 0x00a9, 0x00a9,
|
||||
0x00c9, 0x00c9, 0x00c9, 0x00c9, 0x00e9, 0x00e9, 0x00e9, 0x00e9,
|
||||
0x0109, 0x0109, 0x0109, 0x0109, 0x0129, 0x0129, 0x0129, 0x0129,
|
||||
0x0149, 0x0149, 0x0149, 0x0149, 0x0169, 0x0169, 0x0169, 0x0169,
|
||||
0x0189, 0x0189, 0x0189, 0x0189, 0x01a9, 0x01a9, 0x01a9, 0x01a9,
|
||||
0x01c9, 0x01c9, 0x01c9, 0x01c9, 0x01eb, 0x020b, 0x022b, 0x001b};
|
||||
const uint8_t* const HuffDecoderCommon::table29_emit_[32] = {
|
||||
table29_0_emit_, table29_0_emit_, table29_2_emit_, table29_2_emit_,
|
||||
table29_4_emit_, table29_4_emit_, table29_6_emit_, table29_6_emit_,
|
||||
table29_8_emit_, table29_8_emit_, table29_10_emit_, table29_11_emit_,
|
||||
table29_12_emit_, table29_13_emit_, table29_14_emit_, table29_15_emit_,
|
||||
table29_16_emit_, table29_17_emit_, table29_18_emit_, table29_19_emit_,
|
||||
table29_20_emit_, table29_21_emit_, table29_22_emit_, table29_23_emit_,
|
||||
table29_24_emit_, table29_25_emit_, table29_26_emit_, table29_27_emit_,
|
||||
table29_28_emit_, table29_29_emit_, table29_30_emit_, table29_31_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table29_ops_[32] = {
|
||||
table29_0_ops_, table29_0_ops_, table29_0_ops_, table29_0_ops_,
|
||||
table29_0_ops_, table29_0_ops_, table29_0_ops_, table29_0_ops_,
|
||||
table29_0_ops_, table29_0_ops_, table29_10_ops_, table29_10_ops_,
|
||||
table29_10_ops_, table29_10_ops_, table29_10_ops_, table29_10_ops_,
|
||||
table29_10_ops_, table29_10_ops_, table29_10_ops_, table29_10_ops_,
|
||||
table29_10_ops_, table29_10_ops_, table29_22_ops_, table29_22_ops_,
|
||||
table29_24_ops_, table29_24_ops_, table29_24_ops_, table29_27_ops_,
|
||||
table29_28_ops_, table29_28_ops_, table29_30_ops_, table29_31_ops_,
|
||||
};
|
||||
} // namespace geometry_10_9_11
|
||||
} // namespace grpc_core
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,899 +0,0 @@
|
|||
// Copyright 2023 gRPC authors.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// This file is autogenerated: see
|
||||
// tools/codegen/core/gen_huffman_decompressor.cc
|
||||
|
||||
#include <grpc/support/port_platform.h>
|
||||
|
||||
#include "test/cpp/microbenchmarks/huffman_geometries/decode_huff_11_10_9.h"
|
||||
namespace grpc_core {
|
||||
namespace geometry_11_10_9 {
|
||||
const uint8_t HuffDecoderCommon::table2_0_emit_[10] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table2_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table3_0_emit_[36] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20, 0x25,
|
||||
0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3d, 0x41,
|
||||
0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70, 0x72, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table3_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x29, 0x2d,
|
||||
0x31, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x59,
|
||||
0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85,
|
||||
0x89, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table4_0_emit_[22] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20,
|
||||
0x25, 0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table4_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00,
|
||||
0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2d,
|
||||
0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41, 0x00,
|
||||
0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table4_1_emit_[46] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70,
|
||||
0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,
|
||||
0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56,
|
||||
0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78, 0x79, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table4_1_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49,
|
||||
0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75,
|
||||
0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1,
|
||||
0xa5, 0xa9, 0xad, 0xb1, 0xb5, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table4_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table4_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table4_ops_[2] = {
|
||||
table4_0_ops_,
|
||||
table4_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table5_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29,
|
||||
0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35,
|
||||
0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41,
|
||||
0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d,
|
||||
0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table5_1_emit_[52] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e,
|
||||
0x70, 0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,
|
||||
0x54, 0x55, 0x56, 0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78,
|
||||
0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table5_1_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d,
|
||||
0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55,
|
||||
0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6d,
|
||||
0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81, 0x00, 0x85,
|
||||
0x00, 0x89, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x95, 0x00, 0x99, 0x00, 0x9d,
|
||||
0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xad, 0x00, 0xb1, 0x00, 0xb5,
|
||||
0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table5_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table5_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table5_ops_[2] = {
|
||||
table5_0_ops_,
|
||||
table5_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table6_0_emit_[2] = {0x30, 0x31};
|
||||
const uint8_t HuffDecoderCommon::table6_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05};
|
||||
const uint8_t HuffDecoderCommon::table6_1_emit_[2] = {0x32, 0x61};
|
||||
const uint8_t HuffDecoderCommon::table6_2_emit_[2] = {0x63, 0x65};
|
||||
const uint8_t HuffDecoderCommon::table6_3_emit_[2] = {0x69, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table6_4_emit_[2] = {0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table6_5_emit_[4] = {0x20, 0x25, 0x2d, 0x2e};
|
||||
const uint8_t HuffDecoderCommon::table6_5_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d};
|
||||
const uint8_t HuffDecoderCommon::table6_6_emit_[4] = {0x2f, 0x33, 0x34, 0x35};
|
||||
const uint8_t HuffDecoderCommon::table6_7_emit_[4] = {0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table6_8_emit_[4] = {0x3d, 0x41, 0x5f, 0x62};
|
||||
const uint8_t HuffDecoderCommon::table6_9_emit_[4] = {0x64, 0x66, 0x67, 0x68};
|
||||
const uint8_t HuffDecoderCommon::table6_10_emit_[4] = {0x6c, 0x6d, 0x6e, 0x70};
|
||||
const uint8_t HuffDecoderCommon::table6_11_emit_[6] = {0x72, 0x75, 0x3a,
|
||||
0x42, 0x43, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table6_11_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
|
||||
0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15};
|
||||
const uint8_t HuffDecoderCommon::table6_12_emit_[8] = {0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table6_12_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d};
|
||||
const uint8_t HuffDecoderCommon::table6_13_emit_[8] = {0x4d, 0x4e, 0x4f, 0x50,
|
||||
0x51, 0x52, 0x53, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table6_14_emit_[8] = {0x55, 0x56, 0x57, 0x59,
|
||||
0x6a, 0x6b, 0x71, 0x76};
|
||||
const uint8_t HuffDecoderCommon::table6_15_emit_[10] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table6_15_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19,
|
||||
0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table6_emit_[16] = {
|
||||
table6_0_emit_, table6_1_emit_, table6_2_emit_, table6_3_emit_,
|
||||
table6_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table6_15_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table6_ops_[16] = {
|
||||
table6_0_ops_, table6_0_ops_, table6_0_ops_, table6_0_ops_,
|
||||
table6_0_ops_, table6_5_ops_, table6_5_ops_, table6_5_ops_,
|
||||
table6_5_ops_, table6_5_ops_, table6_5_ops_, table6_11_ops_,
|
||||
table6_12_ops_, table6_12_ops_, table6_12_ops_, table6_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table7_0_emit_[36] = {
|
||||
0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x61, 0x30, 0x63, 0x30, 0x65, 0x30,
|
||||
0x69, 0x30, 0x6f, 0x30, 0x73, 0x30, 0x74, 0x31, 0x31, 0x32, 0x31, 0x61,
|
||||
0x31, 0x63, 0x31, 0x65, 0x31, 0x69, 0x31, 0x6f, 0x31, 0x73, 0x31, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_0_ops_[64] = {
|
||||
0x00, 0x04, 0x0c, 0x14, 0x1c, 0x24, 0x2c, 0x34, 0x3c, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x08,
|
||||
0x4c, 0x50, 0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a};
|
||||
const uint8_t HuffDecoderCommon::table7_1_emit_[36] = {
|
||||
0x32, 0x30, 0x32, 0x31, 0x32, 0x32, 0x61, 0x32, 0x63, 0x32, 0x65, 0x32,
|
||||
0x69, 0x32, 0x6f, 0x32, 0x73, 0x32, 0x74, 0x61, 0x30, 0x61, 0x31, 0x61,
|
||||
0x61, 0x63, 0x61, 0x65, 0x61, 0x69, 0x61, 0x6f, 0x61, 0x73, 0x61, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_1_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x14, 0x1c, 0x24, 0x2c, 0x34, 0x3c, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x4c,
|
||||
0x54, 0x18, 0x5c, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x1a};
|
||||
const uint8_t HuffDecoderCommon::table7_2_emit_[36] = {
|
||||
0x63, 0x30, 0x63, 0x31, 0x63, 0x32, 0x63, 0x61, 0x63, 0x63, 0x65, 0x63,
|
||||
0x69, 0x63, 0x6f, 0x63, 0x73, 0x63, 0x74, 0x65, 0x30, 0x65, 0x31, 0x65,
|
||||
0x32, 0x65, 0x61, 0x65, 0x65, 0x69, 0x65, 0x6f, 0x65, 0x73, 0x65, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_2_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x24, 0x2c, 0x34, 0x3c, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x4c,
|
||||
0x54, 0x5c, 0x64, 0x28, 0x6c, 0x70, 0x78, 0x80, 0x88, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x2a};
|
||||
const uint8_t HuffDecoderCommon::table7_3_emit_[36] = {
|
||||
0x69, 0x30, 0x69, 0x31, 0x69, 0x32, 0x69, 0x61, 0x69, 0x63, 0x69, 0x65,
|
||||
0x69, 0x69, 0x6f, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x30, 0x6f, 0x31, 0x6f,
|
||||
0x32, 0x6f, 0x61, 0x6f, 0x63, 0x6f, 0x65, 0x6f, 0x6f, 0x73, 0x6f, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_3_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x34, 0x3c, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x4c,
|
||||
0x54, 0x5c, 0x64, 0x6c, 0x74, 0x38, 0x7c, 0x80, 0x88, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x3a};
|
||||
const uint8_t HuffDecoderCommon::table7_4_emit_[38] = {
|
||||
0x73, 0x30, 0x73, 0x31, 0x73, 0x32, 0x73, 0x61, 0x73, 0x63,
|
||||
0x73, 0x65, 0x73, 0x69, 0x73, 0x6f, 0x73, 0x73, 0x74, 0x30,
|
||||
0x74, 0x31, 0x74, 0x32, 0x74, 0x61, 0x74, 0x63, 0x74, 0x65,
|
||||
0x74, 0x69, 0x74, 0x6f, 0x74, 0x73, 0x74, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_4_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x48,
|
||||
0x50, 0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x90, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x4a};
|
||||
const uint8_t HuffDecoderCommon::table7_5_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e};
|
||||
const uint8_t HuffDecoderCommon::table7_11_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x12, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x16};
|
||||
const uint8_t HuffDecoderCommon::table7_12_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x12, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x16, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x1a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x1e};
|
||||
const uint8_t HuffDecoderCommon::table7_15_emit_[15] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b,
|
||||
0x58, 0x5a, 0x21, 0x22, 0x28, 0x29, 0x3f};
|
||||
const uint8_t HuffDecoderCommon::table7_15_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e, 0x01,
|
||||
0x01, 0x01, 0x12, 0x01, 0x01, 0x01, 0x16, 0x01, 0x01, 0x01, 0x1a,
|
||||
0x01, 0x01, 0x01, 0x1e, 0x01, 0x01, 0x01, 0x22, 0x01, 0x01, 0x01,
|
||||
0x26, 0x2a, 0x2e, 0x32, 0x36, 0x3a, 0x01, 0x01, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table7_emit_[16] = {
|
||||
table7_0_emit_, table7_1_emit_, table7_2_emit_, table7_3_emit_,
|
||||
table7_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table7_15_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table7_ops_[16] = {
|
||||
table7_0_ops_, table7_1_ops_, table7_2_ops_, table7_3_ops_,
|
||||
table7_4_ops_, table7_5_ops_, table7_5_ops_, table7_5_ops_,
|
||||
table7_5_ops_, table7_5_ops_, table7_5_ops_, table7_11_ops_,
|
||||
table7_12_ops_, table7_12_ops_, table7_12_ops_, table7_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table1_0_emit_[71] = {
|
||||
0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x61, 0x30, 0x63, 0x30, 0x65, 0x30,
|
||||
0x69, 0x30, 0x6f, 0x30, 0x73, 0x30, 0x74, 0x30, 0x20, 0x30, 0x25, 0x30,
|
||||
0x2d, 0x30, 0x2e, 0x30, 0x2f, 0x30, 0x33, 0x30, 0x34, 0x30, 0x35, 0x30,
|
||||
0x36, 0x30, 0x37, 0x30, 0x38, 0x30, 0x39, 0x30, 0x3d, 0x30, 0x41, 0x30,
|
||||
0x5f, 0x30, 0x62, 0x30, 0x64, 0x30, 0x66, 0x30, 0x67, 0x30, 0x68, 0x30,
|
||||
0x6c, 0x30, 0x6d, 0x30, 0x6e, 0x30, 0x70, 0x30, 0x72, 0x30, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_0_inner_[37] = {
|
||||
0x000a, 0x008a, 0x018a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_0_outer_[64] = {
|
||||
0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7,
|
||||
8, 8, 9, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
|
||||
22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 36,
|
||||
36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36};
|
||||
const uint8_t HuffDecoderCommon::table1_1_emit_[71] = {
|
||||
0x31, 0x30, 0x31, 0x31, 0x32, 0x31, 0x61, 0x31, 0x63, 0x31, 0x65, 0x31,
|
||||
0x69, 0x31, 0x6f, 0x31, 0x73, 0x31, 0x74, 0x31, 0x20, 0x31, 0x25, 0x31,
|
||||
0x2d, 0x31, 0x2e, 0x31, 0x2f, 0x31, 0x33, 0x31, 0x34, 0x31, 0x35, 0x31,
|
||||
0x36, 0x31, 0x37, 0x31, 0x38, 0x31, 0x39, 0x31, 0x3d, 0x31, 0x41, 0x31,
|
||||
0x5f, 0x31, 0x62, 0x31, 0x64, 0x31, 0x66, 0x31, 0x67, 0x31, 0x68, 0x31,
|
||||
0x6c, 0x31, 0x6d, 0x31, 0x6e, 0x31, 0x70, 0x31, 0x72, 0x31, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_1_inner_[37] = {
|
||||
0x000a, 0x010a, 0x018a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_2_emit_[71] = {
|
||||
0x32, 0x30, 0x32, 0x31, 0x32, 0x32, 0x61, 0x32, 0x63, 0x32, 0x65, 0x32,
|
||||
0x69, 0x32, 0x6f, 0x32, 0x73, 0x32, 0x74, 0x32, 0x20, 0x32, 0x25, 0x32,
|
||||
0x2d, 0x32, 0x2e, 0x32, 0x2f, 0x32, 0x33, 0x32, 0x34, 0x32, 0x35, 0x32,
|
||||
0x36, 0x32, 0x37, 0x32, 0x38, 0x32, 0x39, 0x32, 0x3d, 0x32, 0x41, 0x32,
|
||||
0x5f, 0x32, 0x62, 0x32, 0x64, 0x32, 0x66, 0x32, 0x67, 0x32, 0x68, 0x32,
|
||||
0x6c, 0x32, 0x6d, 0x32, 0x6e, 0x32, 0x70, 0x32, 0x72, 0x32, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_2_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_3_emit_[71] = {
|
||||
0x61, 0x30, 0x61, 0x31, 0x61, 0x32, 0x61, 0x61, 0x63, 0x61, 0x65, 0x61,
|
||||
0x69, 0x61, 0x6f, 0x61, 0x73, 0x61, 0x74, 0x61, 0x20, 0x61, 0x25, 0x61,
|
||||
0x2d, 0x61, 0x2e, 0x61, 0x2f, 0x61, 0x33, 0x61, 0x34, 0x61, 0x35, 0x61,
|
||||
0x36, 0x61, 0x37, 0x61, 0x38, 0x61, 0x39, 0x61, 0x3d, 0x61, 0x41, 0x61,
|
||||
0x5f, 0x61, 0x62, 0x61, 0x64, 0x61, 0x66, 0x61, 0x67, 0x61, 0x68, 0x61,
|
||||
0x6c, 0x61, 0x6d, 0x61, 0x6e, 0x61, 0x70, 0x61, 0x72, 0x61, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_3_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_4_emit_[71] = {
|
||||
0x63, 0x30, 0x63, 0x31, 0x63, 0x32, 0x63, 0x61, 0x63, 0x63, 0x65, 0x63,
|
||||
0x69, 0x63, 0x6f, 0x63, 0x73, 0x63, 0x74, 0x63, 0x20, 0x63, 0x25, 0x63,
|
||||
0x2d, 0x63, 0x2e, 0x63, 0x2f, 0x63, 0x33, 0x63, 0x34, 0x63, 0x35, 0x63,
|
||||
0x36, 0x63, 0x37, 0x63, 0x38, 0x63, 0x39, 0x63, 0x3d, 0x63, 0x41, 0x63,
|
||||
0x5f, 0x63, 0x62, 0x63, 0x64, 0x63, 0x66, 0x63, 0x67, 0x63, 0x68, 0x63,
|
||||
0x6c, 0x63, 0x6d, 0x63, 0x6e, 0x63, 0x70, 0x63, 0x72, 0x63, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_4_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_5_emit_[71] = {
|
||||
0x65, 0x30, 0x65, 0x31, 0x65, 0x32, 0x65, 0x61, 0x65, 0x63, 0x65, 0x65,
|
||||
0x69, 0x65, 0x6f, 0x65, 0x73, 0x65, 0x74, 0x65, 0x20, 0x65, 0x25, 0x65,
|
||||
0x2d, 0x65, 0x2e, 0x65, 0x2f, 0x65, 0x33, 0x65, 0x34, 0x65, 0x35, 0x65,
|
||||
0x36, 0x65, 0x37, 0x65, 0x38, 0x65, 0x39, 0x65, 0x3d, 0x65, 0x41, 0x65,
|
||||
0x5f, 0x65, 0x62, 0x65, 0x64, 0x65, 0x66, 0x65, 0x67, 0x65, 0x68, 0x65,
|
||||
0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x65, 0x70, 0x65, 0x72, 0x65, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_5_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_6_emit_[71] = {
|
||||
0x69, 0x30, 0x69, 0x31, 0x69, 0x32, 0x69, 0x61, 0x69, 0x63, 0x69, 0x65,
|
||||
0x69, 0x69, 0x6f, 0x69, 0x73, 0x69, 0x74, 0x69, 0x20, 0x69, 0x25, 0x69,
|
||||
0x2d, 0x69, 0x2e, 0x69, 0x2f, 0x69, 0x33, 0x69, 0x34, 0x69, 0x35, 0x69,
|
||||
0x36, 0x69, 0x37, 0x69, 0x38, 0x69, 0x39, 0x69, 0x3d, 0x69, 0x41, 0x69,
|
||||
0x5f, 0x69, 0x62, 0x69, 0x64, 0x69, 0x66, 0x69, 0x67, 0x69, 0x68, 0x69,
|
||||
0x6c, 0x69, 0x6d, 0x69, 0x6e, 0x69, 0x70, 0x69, 0x72, 0x69, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_6_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_7_emit_[71] = {
|
||||
0x6f, 0x30, 0x6f, 0x31, 0x6f, 0x32, 0x6f, 0x61, 0x6f, 0x63, 0x6f, 0x65,
|
||||
0x6f, 0x69, 0x6f, 0x6f, 0x73, 0x6f, 0x74, 0x6f, 0x20, 0x6f, 0x25, 0x6f,
|
||||
0x2d, 0x6f, 0x2e, 0x6f, 0x2f, 0x6f, 0x33, 0x6f, 0x34, 0x6f, 0x35, 0x6f,
|
||||
0x36, 0x6f, 0x37, 0x6f, 0x38, 0x6f, 0x39, 0x6f, 0x3d, 0x6f, 0x41, 0x6f,
|
||||
0x5f, 0x6f, 0x62, 0x6f, 0x64, 0x6f, 0x66, 0x6f, 0x67, 0x6f, 0x68, 0x6f,
|
||||
0x6c, 0x6f, 0x6d, 0x6f, 0x6e, 0x6f, 0x70, 0x6f, 0x72, 0x6f, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_7_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_8_emit_[71] = {
|
||||
0x73, 0x30, 0x73, 0x31, 0x73, 0x32, 0x73, 0x61, 0x73, 0x63, 0x73, 0x65,
|
||||
0x73, 0x69, 0x73, 0x6f, 0x73, 0x73, 0x74, 0x73, 0x20, 0x73, 0x25, 0x73,
|
||||
0x2d, 0x73, 0x2e, 0x73, 0x2f, 0x73, 0x33, 0x73, 0x34, 0x73, 0x35, 0x73,
|
||||
0x36, 0x73, 0x37, 0x73, 0x38, 0x73, 0x39, 0x73, 0x3d, 0x73, 0x41, 0x73,
|
||||
0x5f, 0x73, 0x62, 0x73, 0x64, 0x73, 0x66, 0x73, 0x67, 0x73, 0x68, 0x73,
|
||||
0x6c, 0x73, 0x6d, 0x73, 0x6e, 0x73, 0x70, 0x73, 0x72, 0x73, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_8_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x080a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_9_emit_[71] = {
|
||||
0x74, 0x30, 0x74, 0x31, 0x74, 0x32, 0x74, 0x61, 0x74, 0x63, 0x74, 0x65,
|
||||
0x74, 0x69, 0x74, 0x6f, 0x74, 0x73, 0x74, 0x74, 0x20, 0x74, 0x25, 0x74,
|
||||
0x2d, 0x74, 0x2e, 0x74, 0x2f, 0x74, 0x33, 0x74, 0x34, 0x74, 0x35, 0x74,
|
||||
0x36, 0x74, 0x37, 0x74, 0x38, 0x74, 0x39, 0x74, 0x3d, 0x74, 0x41, 0x74,
|
||||
0x5f, 0x74, 0x62, 0x74, 0x64, 0x74, 0x66, 0x74, 0x67, 0x74, 0x68, 0x74,
|
||||
0x6c, 0x74, 0x6d, 0x74, 0x6e, 0x74, 0x70, 0x74, 0x72, 0x74, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_9_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x080a, 0x090a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_10_emit_[40] = {
|
||||
0x20, 0x30, 0x20, 0x31, 0x20, 0x32, 0x20, 0x61, 0x20, 0x63,
|
||||
0x20, 0x65, 0x20, 0x69, 0x20, 0x6f, 0x20, 0x73, 0x20, 0x74,
|
||||
0x25, 0x30, 0x25, 0x31, 0x25, 0x32, 0x25, 0x61, 0x25, 0x63,
|
||||
0x25, 0x65, 0x25, 0x69, 0x25, 0x6f, 0x25, 0x73, 0x25, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_10_inner_[22] = {
|
||||
0x000b, 0x010b, 0x020b, 0x030b, 0x040b, 0x050b, 0x060b, 0x070b,
|
||||
0x080b, 0x090b, 0x0016, 0x0a0b, 0x0b0b, 0x0c0b, 0x0d0b, 0x0e0b,
|
||||
0x0f0b, 0x100b, 0x110b, 0x120b, 0x130b, 0x0a16};
|
||||
const uint8_t HuffDecoderCommon::table1_10_outer_[64] = {
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10, 10, 10,
|
||||
10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
||||
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21,
|
||||
21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21};
|
||||
const uint8_t HuffDecoderCommon::table1_11_emit_[40] = {
|
||||
0x2d, 0x30, 0x2d, 0x31, 0x2d, 0x32, 0x2d, 0x61, 0x2d, 0x63,
|
||||
0x2d, 0x65, 0x2d, 0x69, 0x2d, 0x6f, 0x2d, 0x73, 0x2d, 0x74,
|
||||
0x2e, 0x30, 0x2e, 0x31, 0x2e, 0x32, 0x2e, 0x61, 0x2e, 0x63,
|
||||
0x2e, 0x65, 0x2e, 0x69, 0x2e, 0x6f, 0x2e, 0x73, 0x2e, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_12_emit_[40] = {
|
||||
0x2f, 0x30, 0x2f, 0x31, 0x2f, 0x32, 0x2f, 0x61, 0x2f, 0x63,
|
||||
0x2f, 0x65, 0x2f, 0x69, 0x2f, 0x6f, 0x2f, 0x73, 0x2f, 0x74,
|
||||
0x33, 0x30, 0x33, 0x31, 0x33, 0x32, 0x33, 0x61, 0x33, 0x63,
|
||||
0x33, 0x65, 0x33, 0x69, 0x33, 0x6f, 0x33, 0x73, 0x33, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_13_emit_[40] = {
|
||||
0x34, 0x30, 0x34, 0x31, 0x34, 0x32, 0x34, 0x61, 0x34, 0x63,
|
||||
0x34, 0x65, 0x34, 0x69, 0x34, 0x6f, 0x34, 0x73, 0x34, 0x74,
|
||||
0x35, 0x30, 0x35, 0x31, 0x35, 0x32, 0x35, 0x61, 0x35, 0x63,
|
||||
0x35, 0x65, 0x35, 0x69, 0x35, 0x6f, 0x35, 0x73, 0x35, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_14_emit_[40] = {
|
||||
0x36, 0x30, 0x36, 0x31, 0x36, 0x32, 0x36, 0x61, 0x36, 0x63,
|
||||
0x36, 0x65, 0x36, 0x69, 0x36, 0x6f, 0x36, 0x73, 0x36, 0x74,
|
||||
0x37, 0x30, 0x37, 0x31, 0x37, 0x32, 0x37, 0x61, 0x37, 0x63,
|
||||
0x37, 0x65, 0x37, 0x69, 0x37, 0x6f, 0x37, 0x73, 0x37, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_15_emit_[40] = {
|
||||
0x38, 0x30, 0x38, 0x31, 0x38, 0x32, 0x38, 0x61, 0x38, 0x63,
|
||||
0x38, 0x65, 0x38, 0x69, 0x38, 0x6f, 0x38, 0x73, 0x38, 0x74,
|
||||
0x39, 0x30, 0x39, 0x31, 0x39, 0x32, 0x39, 0x61, 0x39, 0x63,
|
||||
0x39, 0x65, 0x39, 0x69, 0x39, 0x6f, 0x39, 0x73, 0x39, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_16_emit_[40] = {
|
||||
0x3d, 0x30, 0x3d, 0x31, 0x3d, 0x32, 0x3d, 0x61, 0x3d, 0x63,
|
||||
0x3d, 0x65, 0x3d, 0x69, 0x3d, 0x6f, 0x3d, 0x73, 0x3d, 0x74,
|
||||
0x41, 0x30, 0x41, 0x31, 0x41, 0x32, 0x41, 0x61, 0x41, 0x63,
|
||||
0x41, 0x65, 0x41, 0x69, 0x41, 0x6f, 0x41, 0x73, 0x41, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_17_emit_[40] = {
|
||||
0x5f, 0x30, 0x5f, 0x31, 0x5f, 0x32, 0x5f, 0x61, 0x5f, 0x63,
|
||||
0x5f, 0x65, 0x5f, 0x69, 0x5f, 0x6f, 0x5f, 0x73, 0x5f, 0x74,
|
||||
0x62, 0x30, 0x62, 0x31, 0x62, 0x32, 0x62, 0x61, 0x62, 0x63,
|
||||
0x62, 0x65, 0x62, 0x69, 0x62, 0x6f, 0x62, 0x73, 0x62, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_18_emit_[40] = {
|
||||
0x64, 0x30, 0x64, 0x31, 0x64, 0x32, 0x64, 0x61, 0x64, 0x63,
|
||||
0x64, 0x65, 0x64, 0x69, 0x64, 0x6f, 0x64, 0x73, 0x64, 0x74,
|
||||
0x66, 0x30, 0x66, 0x31, 0x66, 0x32, 0x66, 0x61, 0x66, 0x63,
|
||||
0x66, 0x65, 0x66, 0x69, 0x66, 0x6f, 0x66, 0x73, 0x66, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_19_emit_[40] = {
|
||||
0x67, 0x30, 0x67, 0x31, 0x67, 0x32, 0x67, 0x61, 0x67, 0x63,
|
||||
0x67, 0x65, 0x67, 0x69, 0x67, 0x6f, 0x67, 0x73, 0x67, 0x74,
|
||||
0x68, 0x30, 0x68, 0x31, 0x68, 0x32, 0x68, 0x61, 0x68, 0x63,
|
||||
0x68, 0x65, 0x68, 0x69, 0x68, 0x6f, 0x68, 0x73, 0x68, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_20_emit_[40] = {
|
||||
0x6c, 0x30, 0x6c, 0x31, 0x6c, 0x32, 0x6c, 0x61, 0x6c, 0x63,
|
||||
0x6c, 0x65, 0x6c, 0x69, 0x6c, 0x6f, 0x6c, 0x73, 0x6c, 0x74,
|
||||
0x6d, 0x30, 0x6d, 0x31, 0x6d, 0x32, 0x6d, 0x61, 0x6d, 0x63,
|
||||
0x6d, 0x65, 0x6d, 0x69, 0x6d, 0x6f, 0x6d, 0x73, 0x6d, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_21_emit_[40] = {
|
||||
0x6e, 0x30, 0x6e, 0x31, 0x6e, 0x32, 0x6e, 0x61, 0x6e, 0x63,
|
||||
0x6e, 0x65, 0x6e, 0x69, 0x6e, 0x6f, 0x6e, 0x73, 0x6e, 0x74,
|
||||
0x70, 0x30, 0x70, 0x31, 0x70, 0x32, 0x70, 0x61, 0x70, 0x63,
|
||||
0x70, 0x65, 0x70, 0x69, 0x70, 0x6f, 0x70, 0x73, 0x70, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_22_emit_[40] = {
|
||||
0x72, 0x30, 0x72, 0x31, 0x72, 0x32, 0x72, 0x61, 0x72, 0x63,
|
||||
0x72, 0x65, 0x72, 0x69, 0x72, 0x6f, 0x72, 0x73, 0x72, 0x74,
|
||||
0x75, 0x30, 0x75, 0x31, 0x75, 0x32, 0x75, 0x61, 0x75, 0x63,
|
||||
0x75, 0x65, 0x75, 0x69, 0x75, 0x6f, 0x75, 0x73, 0x75, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_23_emit_[4] = {0x3a, 0x42, 0x43, 0x44};
|
||||
const uint16_t HuffDecoderCommon::table1_23_inner_[4] = {0x0017, 0x0097, 0x0117,
|
||||
0x0197};
|
||||
const uint8_t HuffDecoderCommon::table1_23_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3};
|
||||
const uint8_t HuffDecoderCommon::table1_24_emit_[4] = {0x45, 0x46, 0x47, 0x48};
|
||||
const uint8_t HuffDecoderCommon::table1_25_emit_[4] = {0x49, 0x4a, 0x4b, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table1_26_emit_[4] = {0x4d, 0x4e, 0x4f, 0x50};
|
||||
const uint8_t HuffDecoderCommon::table1_27_emit_[4] = {0x51, 0x52, 0x53, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table1_28_emit_[4] = {0x55, 0x56, 0x57, 0x59};
|
||||
const uint8_t HuffDecoderCommon::table1_29_emit_[4] = {0x6a, 0x6b, 0x71, 0x76};
|
||||
const uint8_t HuffDecoderCommon::table1_30_emit_[4] = {0x77, 0x78, 0x79, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table1_31_emit_[14] = {
|
||||
0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a, 0x21,
|
||||
0x22, 0x28, 0x29, 0x3f, 0x27, 0x2b, 0x7c};
|
||||
const uint16_t HuffDecoderCommon::table1_31_inner_[17] = {
|
||||
0x0018, 0x0098, 0x0118, 0x0198, 0x0218, 0x0298, 0x031a, 0x039a, 0x041a,
|
||||
0x049a, 0x051a, 0x059b, 0x061b, 0x069b, 0x002b, 0x003b, 0x004b};
|
||||
const uint8_t HuffDecoderCommon::table1_31_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5,
|
||||
5, 5, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 12, 13, 14, 15, 16};
|
||||
const uint8_t* const HuffDecoderCommon::table1_emit_[32] = {
|
||||
table1_0_emit_, table1_1_emit_, table1_2_emit_, table1_3_emit_,
|
||||
table1_4_emit_, table1_5_emit_, table1_6_emit_, table1_7_emit_,
|
||||
table1_8_emit_, table1_9_emit_, table1_10_emit_, table1_11_emit_,
|
||||
table1_12_emit_, table1_13_emit_, table1_14_emit_, table1_15_emit_,
|
||||
table1_16_emit_, table1_17_emit_, table1_18_emit_, table1_19_emit_,
|
||||
table1_20_emit_, table1_21_emit_, table1_22_emit_, table1_23_emit_,
|
||||
table1_24_emit_, table1_25_emit_, table1_26_emit_, table1_27_emit_,
|
||||
table1_28_emit_, table1_29_emit_, table1_30_emit_, table1_31_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table1_inner_[32] = {
|
||||
table1_0_inner_, table1_1_inner_, table1_2_inner_, table1_3_inner_,
|
||||
table1_4_inner_, table1_5_inner_, table1_6_inner_, table1_7_inner_,
|
||||
table1_8_inner_, table1_9_inner_, table1_10_inner_, table1_10_inner_,
|
||||
table1_10_inner_, table1_10_inner_, table1_10_inner_, table1_10_inner_,
|
||||
table1_10_inner_, table1_10_inner_, table1_10_inner_, table1_10_inner_,
|
||||
table1_10_inner_, table1_10_inner_, table1_10_inner_, table1_23_inner_,
|
||||
table1_23_inner_, table1_23_inner_, table1_23_inner_, table1_23_inner_,
|
||||
table1_23_inner_, table1_23_inner_, table1_23_inner_, table1_31_inner_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table1_outer_[32] = {
|
||||
table1_0_outer_, table1_0_outer_, table1_0_outer_, table1_0_outer_,
|
||||
table1_0_outer_, table1_0_outer_, table1_0_outer_, table1_0_outer_,
|
||||
table1_0_outer_, table1_0_outer_, table1_10_outer_, table1_10_outer_,
|
||||
table1_10_outer_, table1_10_outer_, table1_10_outer_, table1_10_outer_,
|
||||
table1_10_outer_, table1_10_outer_, table1_10_outer_, table1_10_outer_,
|
||||
table1_10_outer_, table1_10_outer_, table1_10_outer_, table1_23_outer_,
|
||||
table1_23_outer_, table1_23_outer_, table1_23_outer_, table1_23_outer_,
|
||||
table1_23_outer_, table1_23_outer_, table1_23_outer_, table1_31_outer_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table12_0_inner_[6] = {0x00, 0x01, 0x05,
|
||||
0x09, 0x0d, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table12_0_outer_[8] = {0, 1, 0, 2, 3, 4, 0, 5};
|
||||
const uint8_t HuffDecoderCommon::table13_0_emit_[7] = {0x5d, 0x7e, 0x5e, 0x7d,
|
||||
0x3c, 0x60, 0x7b};
|
||||
const uint8_t HuffDecoderCommon::table13_0_inner_[9] = {
|
||||
0x00, 0x01, 0x05, 0x09, 0x0d, 0x11, 0x15, 0x19, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table13_0_outer_[16] = {
|
||||
0, 0, 0, 1, 0, 0, 0, 2, 0, 3, 0, 4, 5, 6, 7, 8};
|
||||
const uint8_t HuffDecoderCommon::table14_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
|
||||
0x00, 0x0d, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table15_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
|
||||
0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table16_0_emit_[45] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d, 0x65,
|
||||
0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x7e, 0x30, 0x7e, 0x31,
|
||||
0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e, 0x65, 0x7e, 0x69, 0x7e, 0x6f,
|
||||
0x7e, 0x73, 0x7e, 0x74, 0x5e, 0x7d, 0x3c, 0x60, 0x7b};
|
||||
const uint8_t HuffDecoderCommon::table16_0_ops_[128] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x48, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x50, 0x58, 0x60, 0x68,
|
||||
0x70, 0x78, 0x80, 0x88, 0x90, 0x98, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x52, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xa2, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xa6,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xaa, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0xae, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xb2,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03};
|
||||
const uint8_t HuffDecoderCommon::table17_0_emit_[72] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d, 0x65,
|
||||
0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20, 0x5d, 0x25,
|
||||
0x5d, 0x2d, 0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d, 0x34, 0x5d, 0x35,
|
||||
0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39, 0x5d, 0x3d, 0x5d, 0x41,
|
||||
0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66, 0x5d, 0x67, 0x5d, 0x68,
|
||||
0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70, 0x5d, 0x72, 0x5d, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table17_0_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0051, 0x0059, 0x0061, 0x0069,
|
||||
0x0071, 0x0079, 0x0081, 0x0089, 0x0091, 0x0099, 0x00a1, 0x00a9,
|
||||
0x00b1, 0x00b9, 0x00c1, 0x00c9, 0x00d1, 0x00d9, 0x00e1, 0x00e9,
|
||||
0x00f1, 0x00f9, 0x0101, 0x0109, 0x0111, 0x0119, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table17_1_emit_[72] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e, 0x65,
|
||||
0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20, 0x7e, 0x25,
|
||||
0x7e, 0x2d, 0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e, 0x34, 0x7e, 0x35,
|
||||
0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39, 0x7e, 0x3d, 0x7e, 0x41,
|
||||
0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66, 0x7e, 0x67, 0x7e, 0x68,
|
||||
0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70, 0x7e, 0x72, 0x7e, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table17_2_emit_[40] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63,
|
||||
0x5e, 0x65, 0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74,
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63,
|
||||
0x7d, 0x65, 0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table17_2_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0051, 0x0059, 0x0061, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0052};
|
||||
const uint8_t HuffDecoderCommon::table17_3_emit_[6] = {0x3c, 0x60, 0x7b,
|
||||
0x5c, 0xc3, 0xd0};
|
||||
const uint16_t HuffDecoderCommon::table17_3_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000a,
|
||||
0x000e, 0x0012, 0x0016, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table17_emit_[4] = {
|
||||
table17_0_emit_,
|
||||
table17_1_emit_,
|
||||
table17_2_emit_,
|
||||
table17_3_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table17_ops_[4] = {
|
||||
table17_0_ops_,
|
||||
table17_0_ops_,
|
||||
table17_2_ops_,
|
||||
table17_3_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table18_0_emit_[44] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d,
|
||||
0x65, 0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20,
|
||||
0x5d, 0x25, 0x5d, 0x2d, 0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d,
|
||||
0x34, 0x5d, 0x35, 0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39};
|
||||
const uint16_t HuffDecoderCommon::table18_0_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0009,
|
||||
0x0000, 0x0000, 0x0000, 0x0011, 0x0000, 0x0000, 0x0000, 0x0019,
|
||||
0x0000, 0x0000, 0x0000, 0x0021, 0x0000, 0x0000, 0x0000, 0x0029,
|
||||
0x0000, 0x0000, 0x0000, 0x0031, 0x0000, 0x0000, 0x0000, 0x0039,
|
||||
0x0000, 0x0000, 0x0000, 0x0041, 0x0000, 0x0000, 0x0000, 0x0049,
|
||||
0x0000, 0x0051, 0x0000, 0x0059, 0x0000, 0x0061, 0x0000, 0x0069,
|
||||
0x0000, 0x0071, 0x0000, 0x0079, 0x0000, 0x0081, 0x0000, 0x0089,
|
||||
0x0000, 0x0091, 0x0000, 0x0099, 0x0000, 0x00a1, 0x0000, 0x00a9};
|
||||
const uint8_t HuffDecoderCommon::table18_1_emit_[92] = {
|
||||
0x5d, 0x3d, 0x5d, 0x41, 0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66,
|
||||
0x5d, 0x67, 0x5d, 0x68, 0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70,
|
||||
0x5d, 0x72, 0x5d, 0x75, 0x5d, 0x3a, 0x5d, 0x42, 0x5d, 0x43, 0x5d, 0x44,
|
||||
0x5d, 0x45, 0x5d, 0x46, 0x5d, 0x47, 0x5d, 0x48, 0x5d, 0x49, 0x5d, 0x4a,
|
||||
0x5d, 0x4b, 0x5d, 0x4c, 0x5d, 0x4d, 0x5d, 0x4e, 0x5d, 0x4f, 0x5d, 0x50,
|
||||
0x5d, 0x51, 0x5d, 0x52, 0x5d, 0x53, 0x5d, 0x54, 0x5d, 0x55, 0x5d, 0x56,
|
||||
0x5d, 0x57, 0x5d, 0x59, 0x5d, 0x6a, 0x5d, 0x6b, 0x5d, 0x71, 0x5d, 0x76,
|
||||
0x5d, 0x77, 0x5d, 0x78, 0x5d, 0x79, 0x5d, 0x7a};
|
||||
const uint16_t HuffDecoderCommon::table18_1_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0000, 0x0051, 0x0000, 0x0059,
|
||||
0x0000, 0x0061, 0x0000, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x00a1, 0x00a9, 0x00b1, 0x00b9, 0x00c1, 0x00c9,
|
||||
0x00d1, 0x00d9, 0x00e1, 0x00e9, 0x00f1, 0x00f9, 0x0101, 0x0109,
|
||||
0x0111, 0x0119, 0x0121, 0x0129, 0x0131, 0x0139, 0x0141, 0x0149,
|
||||
0x0151, 0x0159, 0x0161, 0x0169, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table18_2_emit_[44] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e,
|
||||
0x65, 0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20,
|
||||
0x7e, 0x25, 0x7e, 0x2d, 0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e,
|
||||
0x34, 0x7e, 0x35, 0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table18_3_emit_[92] = {
|
||||
0x7e, 0x3d, 0x7e, 0x41, 0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66,
|
||||
0x7e, 0x67, 0x7e, 0x68, 0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70,
|
||||
0x7e, 0x72, 0x7e, 0x75, 0x7e, 0x3a, 0x7e, 0x42, 0x7e, 0x43, 0x7e, 0x44,
|
||||
0x7e, 0x45, 0x7e, 0x46, 0x7e, 0x47, 0x7e, 0x48, 0x7e, 0x49, 0x7e, 0x4a,
|
||||
0x7e, 0x4b, 0x7e, 0x4c, 0x7e, 0x4d, 0x7e, 0x4e, 0x7e, 0x4f, 0x7e, 0x50,
|
||||
0x7e, 0x51, 0x7e, 0x52, 0x7e, 0x53, 0x7e, 0x54, 0x7e, 0x55, 0x7e, 0x56,
|
||||
0x7e, 0x57, 0x7e, 0x59, 0x7e, 0x6a, 0x7e, 0x6b, 0x7e, 0x71, 0x7e, 0x76,
|
||||
0x7e, 0x77, 0x7e, 0x78, 0x7e, 0x79, 0x7e, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table18_4_emit_[72] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63, 0x5e, 0x65,
|
||||
0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74, 0x5e, 0x20, 0x5e, 0x25,
|
||||
0x5e, 0x2d, 0x5e, 0x2e, 0x5e, 0x2f, 0x5e, 0x33, 0x5e, 0x34, 0x5e, 0x35,
|
||||
0x5e, 0x36, 0x5e, 0x37, 0x5e, 0x38, 0x5e, 0x39, 0x5e, 0x3d, 0x5e, 0x41,
|
||||
0x5e, 0x5f, 0x5e, 0x62, 0x5e, 0x64, 0x5e, 0x66, 0x5e, 0x67, 0x5e, 0x68,
|
||||
0x5e, 0x6c, 0x5e, 0x6d, 0x5e, 0x6e, 0x5e, 0x70, 0x5e, 0x72, 0x5e, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table18_5_emit_[72] = {
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63, 0x7d, 0x65,
|
||||
0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74, 0x7d, 0x20, 0x7d, 0x25,
|
||||
0x7d, 0x2d, 0x7d, 0x2e, 0x7d, 0x2f, 0x7d, 0x33, 0x7d, 0x34, 0x7d, 0x35,
|
||||
0x7d, 0x36, 0x7d, 0x37, 0x7d, 0x38, 0x7d, 0x39, 0x7d, 0x3d, 0x7d, 0x41,
|
||||
0x7d, 0x5f, 0x7d, 0x62, 0x7d, 0x64, 0x7d, 0x66, 0x7d, 0x67, 0x7d, 0x68,
|
||||
0x7d, 0x6c, 0x7d, 0x6d, 0x7d, 0x6e, 0x7d, 0x70, 0x7d, 0x72, 0x7d, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table18_6_emit_[40] = {
|
||||
0x3c, 0x30, 0x3c, 0x31, 0x3c, 0x32, 0x3c, 0x61, 0x3c, 0x63,
|
||||
0x3c, 0x65, 0x3c, 0x69, 0x3c, 0x6f, 0x3c, 0x73, 0x3c, 0x74,
|
||||
0x60, 0x30, 0x60, 0x31, 0x60, 0x32, 0x60, 0x61, 0x60, 0x63,
|
||||
0x60, 0x65, 0x60, 0x69, 0x60, 0x6f, 0x60, 0x73, 0x60, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table18_7_emit_[31] = {
|
||||
0x7b, 0x30, 0x7b, 0x31, 0x7b, 0x32, 0x7b, 0x61, 0x7b, 0x63, 0x7b,
|
||||
0x65, 0x7b, 0x69, 0x7b, 0x6f, 0x7b, 0x73, 0x7b, 0x74, 0x5c, 0xc3,
|
||||
0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0, 0xe2};
|
||||
const uint16_t HuffDecoderCommon::table18_7_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0052, 0x0000, 0x0056, 0x0000, 0x005a, 0x005e, 0x0062,
|
||||
0x0066, 0x006a, 0x006e, 0x0072, 0x0076, 0x007a, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table18_emit_[8] = {
|
||||
table18_0_emit_, table18_1_emit_, table18_2_emit_, table18_3_emit_,
|
||||
table18_4_emit_, table18_5_emit_, table18_6_emit_, table18_7_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table18_ops_[8] = {
|
||||
table18_0_ops_, table18_1_ops_, table18_0_ops_, table18_1_ops_,
|
||||
table17_0_ops_, table17_0_ops_, table17_2_ops_, table18_7_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table10_0_emit_[1] = {0x5d};
|
||||
const uint16_t HuffDecoderCommon::table10_0_ops_[64] = {
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table10_4_emit_[1] = {0x7e};
|
||||
const uint8_t HuffDecoderCommon::table10_8_emit_[1] = {0x5e};
|
||||
const uint16_t HuffDecoderCommon::table10_8_ops_[64] = {
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003};
|
||||
const uint8_t HuffDecoderCommon::table10_10_emit_[1] = {0x7d};
|
||||
const uint8_t HuffDecoderCommon::table10_12_emit_[1] = {0x3c};
|
||||
const uint16_t HuffDecoderCommon::table10_12_ops_[64] = {
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004};
|
||||
const uint8_t HuffDecoderCommon::table10_13_emit_[1] = {0x60};
|
||||
const uint8_t HuffDecoderCommon::table10_14_emit_[1] = {0x7b};
|
||||
const uint8_t HuffDecoderCommon::table10_15_emit_[24] = {
|
||||
0x5c, 0xc3, 0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0, 0xe2, 0x99,
|
||||
0xa1, 0xa7, 0xac, 0xb0, 0xb1, 0xb3, 0xd1, 0xd8, 0xd9, 0xe3, 0xe5, 0xe6};
|
||||
const uint16_t HuffDecoderCommon::table10_15_ops_[64] = {
|
||||
0x0008, 0x0008, 0x0008, 0x0008, 0x0208, 0x0208, 0x0208, 0x0208,
|
||||
0x0408, 0x0408, 0x0408, 0x0408, 0x0609, 0x0609, 0x0809, 0x0809,
|
||||
0x0a09, 0x0a09, 0x0c09, 0x0c09, 0x0e09, 0x0e09, 0x1009, 0x1009,
|
||||
0x1209, 0x1209, 0x1409, 0x1409, 0x160a, 0x180a, 0x1a0a, 0x1c0a,
|
||||
0x1e0a, 0x200a, 0x220a, 0x240a, 0x260a, 0x280a, 0x2a0a, 0x2c0a,
|
||||
0x2e0a, 0x001a, 0x002a, 0x003a, 0x004a, 0x005a, 0x006a, 0x007a,
|
||||
0x008a, 0x009a, 0x00aa, 0x00ba, 0x00ca, 0x00da, 0x00ea, 0x00fa,
|
||||
0x010a, 0x011a, 0x012a, 0x013a, 0x014a, 0x015a, 0x016a, 0x017a};
|
||||
const uint8_t* const HuffDecoderCommon::table10_emit_[16] = {
|
||||
table10_0_emit_, table10_0_emit_, table10_0_emit_, table10_0_emit_,
|
||||
table10_4_emit_, table10_4_emit_, table10_4_emit_, table10_4_emit_,
|
||||
table10_8_emit_, table10_8_emit_, table10_10_emit_, table10_10_emit_,
|
||||
table10_12_emit_, table10_13_emit_, table10_14_emit_, table10_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table10_ops_[16] = {
|
||||
table10_0_ops_, table10_0_ops_, table10_0_ops_, table10_0_ops_,
|
||||
table10_0_ops_, table10_0_ops_, table10_0_ops_, table10_0_ops_,
|
||||
table10_8_ops_, table10_8_ops_, table10_8_ops_, table10_8_ops_,
|
||||
table10_12_ops_, table10_12_ops_, table10_12_ops_, table10_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table40_0_emit_[6] = {0xab, 0xce, 0xd7,
|
||||
0xe1, 0xec, 0xed};
|
||||
const uint8_t HuffDecoderCommon::table40_0_inner_[7] = {0x00, 0x02, 0x04, 0x06,
|
||||
0x08, 0x0a, 0x01};
|
||||
const uint8_t HuffDecoderCommon::table39_0_emit_[10] = {
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table39_0_inner_[10] = {
|
||||
0x03, 0x0b, 0x13, 0x1b, 0x23, 0x2b, 0x34, 0x3c, 0x44, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table41_0_emit_[7] = {0xef, 0x09, 0x8e, 0x90,
|
||||
0x91, 0x94, 0x9f};
|
||||
const uint8_t HuffDecoderCommon::table41_0_inner_[7] = {0x02, 0x07, 0x0b, 0x0f,
|
||||
0x13, 0x17, 0x1b};
|
||||
const uint8_t HuffDecoderCommon::table44_0_emit_[15] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5,
|
||||
0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff};
|
||||
const uint8_t HuffDecoderCommon::table44_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x28,
|
||||
0x2c, 0x30, 0x34, 0x38, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table45_0_emit_[34] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee, 0xf0,
|
||||
0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf, 0xf1,
|
||||
0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe};
|
||||
const uint8_t HuffDecoderCommon::table45_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x3d, 0x41, 0x45,
|
||||
0x49, 0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71,
|
||||
0x75, 0x79, 0x7d, 0x81, 0x85, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table46_0_emit_[63] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee,
|
||||
0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde,
|
||||
0xdf, 0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd,
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x0b, 0x0c, 0x0e,
|
||||
0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a,
|
||||
0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint8_t HuffDecoderCommon::table46_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39,
|
||||
0x00, 0x3d, 0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51,
|
||||
0x00, 0x55, 0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69,
|
||||
0x00, 0x6d, 0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81,
|
||||
0x00, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1, 0xa5, 0xa9, 0xad,
|
||||
0xb1, 0xb5, 0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0xd1, 0xd5, 0xd9, 0xdd,
|
||||
0xe1, 0xe5, 0xe9, 0xed, 0xf1, 0xf5, 0xf9, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table47_0_ops_[256] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39,
|
||||
0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x45,
|
||||
0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0x51,
|
||||
0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x5d,
|
||||
0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x69,
|
||||
0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x71, 0x00, 0x00, 0x00, 0x75,
|
||||
0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x81,
|
||||
0x00, 0x00, 0x00, 0x85, 0x00, 0x89, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x95,
|
||||
0x00, 0x99, 0x00, 0x9d, 0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xad,
|
||||
0x00, 0xb1, 0x00, 0xb5, 0x00, 0xb9, 0x00, 0xbd, 0x00, 0xc1, 0x00, 0xc5,
|
||||
0x00, 0xc9, 0x00, 0xcd, 0x00, 0xd1, 0x00, 0xd5, 0x00, 0xd9, 0x00, 0xdd,
|
||||
0x00, 0xe1, 0x00, 0xe5, 0x00, 0xe9, 0x00, 0xed, 0x00, 0xf1, 0x00, 0xf5,
|
||||
0x00, 0xf9, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table43_0_emit_[2] = {0xc0, 0xc1};
|
||||
const uint16_t HuffDecoderCommon::table43_0_ops_[32] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025};
|
||||
const uint8_t HuffDecoderCommon::table43_1_emit_[2] = {0xc8, 0xc9};
|
||||
const uint8_t HuffDecoderCommon::table43_2_emit_[2] = {0xca, 0xcd};
|
||||
const uint8_t HuffDecoderCommon::table43_3_emit_[2] = {0xd2, 0xd5};
|
||||
const uint8_t HuffDecoderCommon::table43_4_emit_[2] = {0xda, 0xdb};
|
||||
const uint8_t HuffDecoderCommon::table43_5_emit_[2] = {0xee, 0xf0};
|
||||
const uint8_t HuffDecoderCommon::table43_6_emit_[2] = {0xf2, 0xf3};
|
||||
const uint8_t HuffDecoderCommon::table43_7_emit_[3] = {0xff, 0xcb, 0xcc};
|
||||
const uint16_t HuffDecoderCommon::table43_7_ops_[32] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046};
|
||||
const uint8_t HuffDecoderCommon::table43_8_emit_[4] = {0xd3, 0xd4, 0xd6, 0xdd};
|
||||
const uint16_t HuffDecoderCommon::table43_8_ops_[32] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066};
|
||||
const uint8_t HuffDecoderCommon::table43_9_emit_[4] = {0xde, 0xdf, 0xf1, 0xf4};
|
||||
const uint8_t HuffDecoderCommon::table43_10_emit_[4] = {0xf5, 0xf6, 0xf7, 0xf8};
|
||||
const uint8_t HuffDecoderCommon::table43_11_emit_[4] = {0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint8_t HuffDecoderCommon::table43_12_emit_[7] = {0xfe, 0x02, 0x03, 0x04,
|
||||
0x05, 0x06, 0x07};
|
||||
const uint16_t HuffDecoderCommon::table43_12_ops_[32] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0027, 0x0027, 0x0027, 0x0027, 0x0047, 0x0047, 0x0047, 0x0047,
|
||||
0x0067, 0x0067, 0x0067, 0x0067, 0x0087, 0x0087, 0x0087, 0x0087,
|
||||
0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00c7, 0x00c7, 0x00c7, 0x00c7};
|
||||
const uint8_t HuffDecoderCommon::table43_13_emit_[8] = {0x08, 0x0b, 0x0c, 0x0e,
|
||||
0x0f, 0x10, 0x11, 0x12};
|
||||
const uint16_t HuffDecoderCommon::table43_13_ops_[32] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0087, 0x0087, 0x0087, 0x0087, 0x00a7, 0x00a7, 0x00a7, 0x00a7,
|
||||
0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00e7, 0x00e7, 0x00e7, 0x00e7};
|
||||
const uint8_t HuffDecoderCommon::table43_14_emit_[8] = {0x13, 0x14, 0x15, 0x17,
|
||||
0x18, 0x19, 0x1a, 0x1b};
|
||||
const uint8_t HuffDecoderCommon::table43_15_emit_[10] = {
|
||||
0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9, 0x0a, 0x0d, 0x16};
|
||||
const uint16_t HuffDecoderCommon::table43_15_ops_[32] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0087, 0x0087, 0x0087, 0x0087, 0x00a7, 0x00a7, 0x00a7, 0x00a7,
|
||||
0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00e9, 0x0109, 0x0129, 0x0019};
|
||||
const uint8_t* const HuffDecoderCommon::table43_emit_[16] = {
|
||||
table43_0_emit_, table43_1_emit_, table43_2_emit_, table43_3_emit_,
|
||||
table43_4_emit_, table43_5_emit_, table43_6_emit_, table43_7_emit_,
|
||||
table43_8_emit_, table43_9_emit_, table43_10_emit_, table43_11_emit_,
|
||||
table43_12_emit_, table43_13_emit_, table43_14_emit_, table43_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table43_ops_[16] = {
|
||||
table43_0_ops_, table43_0_ops_, table43_0_ops_, table43_0_ops_,
|
||||
table43_0_ops_, table43_0_ops_, table43_0_ops_, table43_7_ops_,
|
||||
table43_8_ops_, table43_8_ops_, table43_8_ops_, table43_8_ops_,
|
||||
table43_12_ops_, table43_13_ops_, table43_13_ops_, table43_15_ops_,
|
||||
};
|
||||
} // namespace geometry_11_10_9
|
||||
} // namespace grpc_core
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -1,916 +0,0 @@
|
|||
// Copyright 2023 gRPC authors.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// This file is autogenerated: see
|
||||
// tools/codegen/core/gen_huffman_decompressor.cc
|
||||
|
||||
#include <grpc/support/port_platform.h>
|
||||
|
||||
#include "test/cpp/microbenchmarks/huffman_geometries/decode_huff_11_9_10.h"
|
||||
namespace grpc_core {
|
||||
namespace geometry_11_9_10 {
|
||||
const uint8_t HuffDecoderCommon::table2_0_emit_[10] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table2_0_ops_[32] = {
|
||||
0x00, 0x04, 0x08, 0x0c, 0x10, 0x14, 0x18, 0x1c, 0x20, 0x24, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table3_0_emit_[36] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20, 0x25,
|
||||
0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3d, 0x41,
|
||||
0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70, 0x72, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table3_0_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x29, 0x2d,
|
||||
0x31, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49, 0x4d, 0x51, 0x55, 0x59,
|
||||
0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85,
|
||||
0x89, 0x8d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table4_0_emit_[22] = {
|
||||
0x30, 0x31, 0x32, 0x61, 0x63, 0x65, 0x69, 0x6f, 0x73, 0x74, 0x20,
|
||||
0x25, 0x2d, 0x2e, 0x2f, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table4_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00,
|
||||
0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2d,
|
||||
0x00, 0x31, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d, 0x00, 0x41, 0x00,
|
||||
0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table4_1_emit_[46] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e, 0x70,
|
||||
0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a,
|
||||
0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56,
|
||||
0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78, 0x79, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table4_1_ops_[64] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x29,
|
||||
0x00, 0x2d, 0x00, 0x31, 0x00, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49,
|
||||
0x4d, 0x51, 0x55, 0x59, 0x5d, 0x61, 0x65, 0x69, 0x6d, 0x71, 0x75,
|
||||
0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1,
|
||||
0xa5, 0xa9, 0xad, 0xb1, 0xb5, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table4_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table4_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table4_ops_[2] = {
|
||||
table4_0_ops_,
|
||||
table4_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table5_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29,
|
||||
0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35,
|
||||
0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x41,
|
||||
0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x4d,
|
||||
0x00, 0x00, 0x00, 0x51, 0x00, 0x00, 0x00, 0x55};
|
||||
const uint8_t HuffDecoderCommon::table5_1_emit_[52] = {
|
||||
0x3d, 0x41, 0x5f, 0x62, 0x64, 0x66, 0x67, 0x68, 0x6c, 0x6d, 0x6e,
|
||||
0x70, 0x72, 0x75, 0x3a, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53,
|
||||
0x54, 0x55, 0x56, 0x57, 0x59, 0x6a, 0x6b, 0x71, 0x76, 0x77, 0x78,
|
||||
0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table5_1_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x39, 0x00, 0x3d,
|
||||
0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51, 0x00, 0x55,
|
||||
0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69, 0x00, 0x6d,
|
||||
0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81, 0x00, 0x85,
|
||||
0x00, 0x89, 0x00, 0x8d, 0x00, 0x91, 0x00, 0x95, 0x00, 0x99, 0x00, 0x9d,
|
||||
0x00, 0xa1, 0x00, 0xa5, 0x00, 0xa9, 0x00, 0xad, 0x00, 0xb1, 0x00, 0xb5,
|
||||
0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table5_emit_[2] = {
|
||||
table4_0_emit_,
|
||||
table5_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table5_ops_[2] = {
|
||||
table5_0_ops_,
|
||||
table5_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table6_0_emit_[2] = {0x30, 0x31};
|
||||
const uint8_t HuffDecoderCommon::table6_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05};
|
||||
const uint8_t HuffDecoderCommon::table6_1_emit_[2] = {0x32, 0x61};
|
||||
const uint8_t HuffDecoderCommon::table6_2_emit_[2] = {0x63, 0x65};
|
||||
const uint8_t HuffDecoderCommon::table6_3_emit_[2] = {0x69, 0x6f};
|
||||
const uint8_t HuffDecoderCommon::table6_4_emit_[2] = {0x73, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table6_5_emit_[4] = {0x20, 0x25, 0x2d, 0x2e};
|
||||
const uint8_t HuffDecoderCommon::table6_5_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d};
|
||||
const uint8_t HuffDecoderCommon::table6_6_emit_[4] = {0x2f, 0x33, 0x34, 0x35};
|
||||
const uint8_t HuffDecoderCommon::table6_7_emit_[4] = {0x36, 0x37, 0x38, 0x39};
|
||||
const uint8_t HuffDecoderCommon::table6_8_emit_[4] = {0x3d, 0x41, 0x5f, 0x62};
|
||||
const uint8_t HuffDecoderCommon::table6_9_emit_[4] = {0x64, 0x66, 0x67, 0x68};
|
||||
const uint8_t HuffDecoderCommon::table6_10_emit_[4] = {0x6c, 0x6d, 0x6e, 0x70};
|
||||
const uint8_t HuffDecoderCommon::table6_11_emit_[6] = {0x72, 0x75, 0x3a,
|
||||
0x42, 0x43, 0x44};
|
||||
const uint8_t HuffDecoderCommon::table6_11_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
|
||||
0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15};
|
||||
const uint8_t HuffDecoderCommon::table6_12_emit_[8] = {0x45, 0x46, 0x47, 0x48,
|
||||
0x49, 0x4a, 0x4b, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table6_12_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d};
|
||||
const uint8_t HuffDecoderCommon::table6_13_emit_[8] = {0x4d, 0x4e, 0x4f, 0x50,
|
||||
0x51, 0x52, 0x53, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table6_14_emit_[8] = {0x55, 0x56, 0x57, 0x59,
|
||||
0x6a, 0x6b, 0x71, 0x76};
|
||||
const uint8_t HuffDecoderCommon::table6_15_emit_[10] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a};
|
||||
const uint8_t HuffDecoderCommon::table6_15_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19,
|
||||
0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table6_emit_[16] = {
|
||||
table6_0_emit_, table6_1_emit_, table6_2_emit_, table6_3_emit_,
|
||||
table6_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table6_15_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table6_ops_[16] = {
|
||||
table6_0_ops_, table6_0_ops_, table6_0_ops_, table6_0_ops_,
|
||||
table6_0_ops_, table6_5_ops_, table6_5_ops_, table6_5_ops_,
|
||||
table6_5_ops_, table6_5_ops_, table6_5_ops_, table6_11_ops_,
|
||||
table6_12_ops_, table6_12_ops_, table6_12_ops_, table6_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table7_0_emit_[36] = {
|
||||
0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x61, 0x30, 0x63, 0x30, 0x65, 0x30,
|
||||
0x69, 0x30, 0x6f, 0x30, 0x73, 0x30, 0x74, 0x31, 0x31, 0x32, 0x31, 0x61,
|
||||
0x31, 0x63, 0x31, 0x65, 0x31, 0x69, 0x31, 0x6f, 0x31, 0x73, 0x31, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_0_ops_[64] = {
|
||||
0x00, 0x04, 0x0c, 0x14, 0x1c, 0x24, 0x2c, 0x34, 0x3c, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x08,
|
||||
0x4c, 0x50, 0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a};
|
||||
const uint8_t HuffDecoderCommon::table7_1_emit_[36] = {
|
||||
0x32, 0x30, 0x32, 0x31, 0x32, 0x32, 0x61, 0x32, 0x63, 0x32, 0x65, 0x32,
|
||||
0x69, 0x32, 0x6f, 0x32, 0x73, 0x32, 0x74, 0x61, 0x30, 0x61, 0x31, 0x61,
|
||||
0x61, 0x63, 0x61, 0x65, 0x61, 0x69, 0x61, 0x6f, 0x61, 0x73, 0x61, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_1_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x14, 0x1c, 0x24, 0x2c, 0x34, 0x3c, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x4c,
|
||||
0x54, 0x18, 0x5c, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x1a};
|
||||
const uint8_t HuffDecoderCommon::table7_2_emit_[36] = {
|
||||
0x63, 0x30, 0x63, 0x31, 0x63, 0x32, 0x63, 0x61, 0x63, 0x63, 0x65, 0x63,
|
||||
0x69, 0x63, 0x6f, 0x63, 0x73, 0x63, 0x74, 0x65, 0x30, 0x65, 0x31, 0x65,
|
||||
0x32, 0x65, 0x61, 0x65, 0x65, 0x69, 0x65, 0x6f, 0x65, 0x73, 0x65, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_2_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x24, 0x2c, 0x34, 0x3c, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x4c,
|
||||
0x54, 0x5c, 0x64, 0x28, 0x6c, 0x70, 0x78, 0x80, 0x88, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x2a};
|
||||
const uint8_t HuffDecoderCommon::table7_3_emit_[36] = {
|
||||
0x69, 0x30, 0x69, 0x31, 0x69, 0x32, 0x69, 0x61, 0x69, 0x63, 0x69, 0x65,
|
||||
0x69, 0x69, 0x6f, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x30, 0x6f, 0x31, 0x6f,
|
||||
0x32, 0x6f, 0x61, 0x6f, 0x63, 0x6f, 0x65, 0x6f, 0x6f, 0x73, 0x6f, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_3_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x34, 0x3c, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x4c,
|
||||
0x54, 0x5c, 0x64, 0x6c, 0x74, 0x38, 0x7c, 0x80, 0x88, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x3a};
|
||||
const uint8_t HuffDecoderCommon::table7_4_emit_[38] = {
|
||||
0x73, 0x30, 0x73, 0x31, 0x73, 0x32, 0x73, 0x61, 0x73, 0x63,
|
||||
0x73, 0x65, 0x73, 0x69, 0x73, 0x6f, 0x73, 0x73, 0x74, 0x30,
|
||||
0x74, 0x31, 0x74, 0x32, 0x74, 0x61, 0x74, 0x63, 0x74, 0x65,
|
||||
0x74, 0x69, 0x74, 0x6f, 0x74, 0x73, 0x74, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table7_4_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x44, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x48,
|
||||
0x50, 0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x90, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x4a};
|
||||
const uint8_t HuffDecoderCommon::table7_5_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e};
|
||||
const uint8_t HuffDecoderCommon::table7_11_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x06, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0a, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x12, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x16};
|
||||
const uint8_t HuffDecoderCommon::table7_12_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x12, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x16, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x1a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x1e};
|
||||
const uint8_t HuffDecoderCommon::table7_15_emit_[15] = {
|
||||
0x77, 0x78, 0x79, 0x7a, 0x26, 0x2a, 0x2c, 0x3b,
|
||||
0x58, 0x5a, 0x21, 0x22, 0x28, 0x29, 0x3f};
|
||||
const uint8_t HuffDecoderCommon::table7_15_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e, 0x01,
|
||||
0x01, 0x01, 0x12, 0x01, 0x01, 0x01, 0x16, 0x01, 0x01, 0x01, 0x1a,
|
||||
0x01, 0x01, 0x01, 0x1e, 0x01, 0x01, 0x01, 0x22, 0x01, 0x01, 0x01,
|
||||
0x26, 0x2a, 0x2e, 0x32, 0x36, 0x3a, 0x01, 0x01, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table7_emit_[16] = {
|
||||
table7_0_emit_, table7_1_emit_, table7_2_emit_, table7_3_emit_,
|
||||
table7_4_emit_, table6_5_emit_, table6_6_emit_, table6_7_emit_,
|
||||
table6_8_emit_, table6_9_emit_, table6_10_emit_, table6_11_emit_,
|
||||
table6_12_emit_, table6_13_emit_, table6_14_emit_, table7_15_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table7_ops_[16] = {
|
||||
table7_0_ops_, table7_1_ops_, table7_2_ops_, table7_3_ops_,
|
||||
table7_4_ops_, table7_5_ops_, table7_5_ops_, table7_5_ops_,
|
||||
table7_5_ops_, table7_5_ops_, table7_5_ops_, table7_11_ops_,
|
||||
table7_12_ops_, table7_12_ops_, table7_12_ops_, table7_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table1_0_emit_[71] = {
|
||||
0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x61, 0x30, 0x63, 0x30, 0x65, 0x30,
|
||||
0x69, 0x30, 0x6f, 0x30, 0x73, 0x30, 0x74, 0x30, 0x20, 0x30, 0x25, 0x30,
|
||||
0x2d, 0x30, 0x2e, 0x30, 0x2f, 0x30, 0x33, 0x30, 0x34, 0x30, 0x35, 0x30,
|
||||
0x36, 0x30, 0x37, 0x30, 0x38, 0x30, 0x39, 0x30, 0x3d, 0x30, 0x41, 0x30,
|
||||
0x5f, 0x30, 0x62, 0x30, 0x64, 0x30, 0x66, 0x30, 0x67, 0x30, 0x68, 0x30,
|
||||
0x6c, 0x30, 0x6d, 0x30, 0x6e, 0x30, 0x70, 0x30, 0x72, 0x30, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_0_inner_[37] = {
|
||||
0x000a, 0x008a, 0x018a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_0_outer_[64] = {
|
||||
0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7,
|
||||
8, 8, 9, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
|
||||
22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 36,
|
||||
36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36};
|
||||
const uint8_t HuffDecoderCommon::table1_1_emit_[71] = {
|
||||
0x31, 0x30, 0x31, 0x31, 0x32, 0x31, 0x61, 0x31, 0x63, 0x31, 0x65, 0x31,
|
||||
0x69, 0x31, 0x6f, 0x31, 0x73, 0x31, 0x74, 0x31, 0x20, 0x31, 0x25, 0x31,
|
||||
0x2d, 0x31, 0x2e, 0x31, 0x2f, 0x31, 0x33, 0x31, 0x34, 0x31, 0x35, 0x31,
|
||||
0x36, 0x31, 0x37, 0x31, 0x38, 0x31, 0x39, 0x31, 0x3d, 0x31, 0x41, 0x31,
|
||||
0x5f, 0x31, 0x62, 0x31, 0x64, 0x31, 0x66, 0x31, 0x67, 0x31, 0x68, 0x31,
|
||||
0x6c, 0x31, 0x6d, 0x31, 0x6e, 0x31, 0x70, 0x31, 0x72, 0x31, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_1_inner_[37] = {
|
||||
0x000a, 0x010a, 0x018a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_2_emit_[71] = {
|
||||
0x32, 0x30, 0x32, 0x31, 0x32, 0x32, 0x61, 0x32, 0x63, 0x32, 0x65, 0x32,
|
||||
0x69, 0x32, 0x6f, 0x32, 0x73, 0x32, 0x74, 0x32, 0x20, 0x32, 0x25, 0x32,
|
||||
0x2d, 0x32, 0x2e, 0x32, 0x2f, 0x32, 0x33, 0x32, 0x34, 0x32, 0x35, 0x32,
|
||||
0x36, 0x32, 0x37, 0x32, 0x38, 0x32, 0x39, 0x32, 0x3d, 0x32, 0x41, 0x32,
|
||||
0x5f, 0x32, 0x62, 0x32, 0x64, 0x32, 0x66, 0x32, 0x67, 0x32, 0x68, 0x32,
|
||||
0x6c, 0x32, 0x6d, 0x32, 0x6e, 0x32, 0x70, 0x32, 0x72, 0x32, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_2_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x028a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_3_emit_[71] = {
|
||||
0x61, 0x30, 0x61, 0x31, 0x61, 0x32, 0x61, 0x61, 0x63, 0x61, 0x65, 0x61,
|
||||
0x69, 0x61, 0x6f, 0x61, 0x73, 0x61, 0x74, 0x61, 0x20, 0x61, 0x25, 0x61,
|
||||
0x2d, 0x61, 0x2e, 0x61, 0x2f, 0x61, 0x33, 0x61, 0x34, 0x61, 0x35, 0x61,
|
||||
0x36, 0x61, 0x37, 0x61, 0x38, 0x61, 0x39, 0x61, 0x3d, 0x61, 0x41, 0x61,
|
||||
0x5f, 0x61, 0x62, 0x61, 0x64, 0x61, 0x66, 0x61, 0x67, 0x61, 0x68, 0x61,
|
||||
0x6c, 0x61, 0x6d, 0x61, 0x6e, 0x61, 0x70, 0x61, 0x72, 0x61, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_3_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x038a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_4_emit_[71] = {
|
||||
0x63, 0x30, 0x63, 0x31, 0x63, 0x32, 0x63, 0x61, 0x63, 0x63, 0x65, 0x63,
|
||||
0x69, 0x63, 0x6f, 0x63, 0x73, 0x63, 0x74, 0x63, 0x20, 0x63, 0x25, 0x63,
|
||||
0x2d, 0x63, 0x2e, 0x63, 0x2f, 0x63, 0x33, 0x63, 0x34, 0x63, 0x35, 0x63,
|
||||
0x36, 0x63, 0x37, 0x63, 0x38, 0x63, 0x39, 0x63, 0x3d, 0x63, 0x41, 0x63,
|
||||
0x5f, 0x63, 0x62, 0x63, 0x64, 0x63, 0x66, 0x63, 0x67, 0x63, 0x68, 0x63,
|
||||
0x6c, 0x63, 0x6d, 0x63, 0x6e, 0x63, 0x70, 0x63, 0x72, 0x63, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_4_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x048a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_5_emit_[71] = {
|
||||
0x65, 0x30, 0x65, 0x31, 0x65, 0x32, 0x65, 0x61, 0x65, 0x63, 0x65, 0x65,
|
||||
0x69, 0x65, 0x6f, 0x65, 0x73, 0x65, 0x74, 0x65, 0x20, 0x65, 0x25, 0x65,
|
||||
0x2d, 0x65, 0x2e, 0x65, 0x2f, 0x65, 0x33, 0x65, 0x34, 0x65, 0x35, 0x65,
|
||||
0x36, 0x65, 0x37, 0x65, 0x38, 0x65, 0x39, 0x65, 0x3d, 0x65, 0x41, 0x65,
|
||||
0x5f, 0x65, 0x62, 0x65, 0x64, 0x65, 0x66, 0x65, 0x67, 0x65, 0x68, 0x65,
|
||||
0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x65, 0x70, 0x65, 0x72, 0x65, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_5_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x058a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_6_emit_[71] = {
|
||||
0x69, 0x30, 0x69, 0x31, 0x69, 0x32, 0x69, 0x61, 0x69, 0x63, 0x69, 0x65,
|
||||
0x69, 0x69, 0x6f, 0x69, 0x73, 0x69, 0x74, 0x69, 0x20, 0x69, 0x25, 0x69,
|
||||
0x2d, 0x69, 0x2e, 0x69, 0x2f, 0x69, 0x33, 0x69, 0x34, 0x69, 0x35, 0x69,
|
||||
0x36, 0x69, 0x37, 0x69, 0x38, 0x69, 0x39, 0x69, 0x3d, 0x69, 0x41, 0x69,
|
||||
0x5f, 0x69, 0x62, 0x69, 0x64, 0x69, 0x66, 0x69, 0x67, 0x69, 0x68, 0x69,
|
||||
0x6c, 0x69, 0x6d, 0x69, 0x6e, 0x69, 0x70, 0x69, 0x72, 0x69, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_6_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x068a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_7_emit_[71] = {
|
||||
0x6f, 0x30, 0x6f, 0x31, 0x6f, 0x32, 0x6f, 0x61, 0x6f, 0x63, 0x6f, 0x65,
|
||||
0x6f, 0x69, 0x6f, 0x6f, 0x73, 0x6f, 0x74, 0x6f, 0x20, 0x6f, 0x25, 0x6f,
|
||||
0x2d, 0x6f, 0x2e, 0x6f, 0x2f, 0x6f, 0x33, 0x6f, 0x34, 0x6f, 0x35, 0x6f,
|
||||
0x36, 0x6f, 0x37, 0x6f, 0x38, 0x6f, 0x39, 0x6f, 0x3d, 0x6f, 0x41, 0x6f,
|
||||
0x5f, 0x6f, 0x62, 0x6f, 0x64, 0x6f, 0x66, 0x6f, 0x67, 0x6f, 0x68, 0x6f,
|
||||
0x6c, 0x6f, 0x6d, 0x6f, 0x6e, 0x6f, 0x70, 0x6f, 0x72, 0x6f, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_7_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x078a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_8_emit_[71] = {
|
||||
0x73, 0x30, 0x73, 0x31, 0x73, 0x32, 0x73, 0x61, 0x73, 0x63, 0x73, 0x65,
|
||||
0x73, 0x69, 0x73, 0x6f, 0x73, 0x73, 0x74, 0x73, 0x20, 0x73, 0x25, 0x73,
|
||||
0x2d, 0x73, 0x2e, 0x73, 0x2f, 0x73, 0x33, 0x73, 0x34, 0x73, 0x35, 0x73,
|
||||
0x36, 0x73, 0x37, 0x73, 0x38, 0x73, 0x39, 0x73, 0x3d, 0x73, 0x41, 0x73,
|
||||
0x5f, 0x73, 0x62, 0x73, 0x64, 0x73, 0x66, 0x73, 0x67, 0x73, 0x68, 0x73,
|
||||
0x6c, 0x73, 0x6d, 0x73, 0x6e, 0x73, 0x70, 0x73, 0x72, 0x73, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_8_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x080a, 0x088a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_9_emit_[71] = {
|
||||
0x74, 0x30, 0x74, 0x31, 0x74, 0x32, 0x74, 0x61, 0x74, 0x63, 0x74, 0x65,
|
||||
0x74, 0x69, 0x74, 0x6f, 0x74, 0x73, 0x74, 0x74, 0x20, 0x74, 0x25, 0x74,
|
||||
0x2d, 0x74, 0x2e, 0x74, 0x2f, 0x74, 0x33, 0x74, 0x34, 0x74, 0x35, 0x74,
|
||||
0x36, 0x74, 0x37, 0x74, 0x38, 0x74, 0x39, 0x74, 0x3d, 0x74, 0x41, 0x74,
|
||||
0x5f, 0x74, 0x62, 0x74, 0x64, 0x74, 0x66, 0x74, 0x67, 0x74, 0x68, 0x74,
|
||||
0x6c, 0x74, 0x6d, 0x74, 0x6e, 0x74, 0x70, 0x74, 0x72, 0x74, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table1_9_inner_[37] = {
|
||||
0x000a, 0x010a, 0x020a, 0x030a, 0x040a, 0x050a, 0x060a, 0x070a,
|
||||
0x080a, 0x090a, 0x098b, 0x0a8b, 0x0b8b, 0x0c8b, 0x0d8b, 0x0e8b,
|
||||
0x0f8b, 0x108b, 0x118b, 0x128b, 0x138b, 0x148b, 0x158b, 0x168b,
|
||||
0x178b, 0x188b, 0x198b, 0x1a8b, 0x1b8b, 0x1c8b, 0x1d8b, 0x1e8b,
|
||||
0x1f8b, 0x208b, 0x218b, 0x228b, 0x0015};
|
||||
const uint8_t HuffDecoderCommon::table1_10_emit_[40] = {
|
||||
0x20, 0x30, 0x20, 0x31, 0x20, 0x32, 0x20, 0x61, 0x20, 0x63,
|
||||
0x20, 0x65, 0x20, 0x69, 0x20, 0x6f, 0x20, 0x73, 0x20, 0x74,
|
||||
0x25, 0x30, 0x25, 0x31, 0x25, 0x32, 0x25, 0x61, 0x25, 0x63,
|
||||
0x25, 0x65, 0x25, 0x69, 0x25, 0x6f, 0x25, 0x73, 0x25, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table1_10_inner_[22] = {
|
||||
0x000b, 0x010b, 0x020b, 0x030b, 0x040b, 0x050b, 0x060b, 0x070b,
|
||||
0x080b, 0x090b, 0x0016, 0x0a0b, 0x0b0b, 0x0c0b, 0x0d0b, 0x0e0b,
|
||||
0x0f0b, 0x100b, 0x110b, 0x120b, 0x130b, 0x0a16};
|
||||
const uint8_t HuffDecoderCommon::table1_10_outer_[64] = {
|
||||
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10, 10, 10,
|
||||
10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
||||
11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 21, 21, 21, 21, 21,
|
||||
21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21};
|
||||
const uint8_t HuffDecoderCommon::table1_11_emit_[40] = {
|
||||
0x2d, 0x30, 0x2d, 0x31, 0x2d, 0x32, 0x2d, 0x61, 0x2d, 0x63,
|
||||
0x2d, 0x65, 0x2d, 0x69, 0x2d, 0x6f, 0x2d, 0x73, 0x2d, 0x74,
|
||||
0x2e, 0x30, 0x2e, 0x31, 0x2e, 0x32, 0x2e, 0x61, 0x2e, 0x63,
|
||||
0x2e, 0x65, 0x2e, 0x69, 0x2e, 0x6f, 0x2e, 0x73, 0x2e, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_12_emit_[40] = {
|
||||
0x2f, 0x30, 0x2f, 0x31, 0x2f, 0x32, 0x2f, 0x61, 0x2f, 0x63,
|
||||
0x2f, 0x65, 0x2f, 0x69, 0x2f, 0x6f, 0x2f, 0x73, 0x2f, 0x74,
|
||||
0x33, 0x30, 0x33, 0x31, 0x33, 0x32, 0x33, 0x61, 0x33, 0x63,
|
||||
0x33, 0x65, 0x33, 0x69, 0x33, 0x6f, 0x33, 0x73, 0x33, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_13_emit_[40] = {
|
||||
0x34, 0x30, 0x34, 0x31, 0x34, 0x32, 0x34, 0x61, 0x34, 0x63,
|
||||
0x34, 0x65, 0x34, 0x69, 0x34, 0x6f, 0x34, 0x73, 0x34, 0x74,
|
||||
0x35, 0x30, 0x35, 0x31, 0x35, 0x32, 0x35, 0x61, 0x35, 0x63,
|
||||
0x35, 0x65, 0x35, 0x69, 0x35, 0x6f, 0x35, 0x73, 0x35, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_14_emit_[40] = {
|
||||
0x36, 0x30, 0x36, 0x31, 0x36, 0x32, 0x36, 0x61, 0x36, 0x63,
|
||||
0x36, 0x65, 0x36, 0x69, 0x36, 0x6f, 0x36, 0x73, 0x36, 0x74,
|
||||
0x37, 0x30, 0x37, 0x31, 0x37, 0x32, 0x37, 0x61, 0x37, 0x63,
|
||||
0x37, 0x65, 0x37, 0x69, 0x37, 0x6f, 0x37, 0x73, 0x37, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_15_emit_[40] = {
|
||||
0x38, 0x30, 0x38, 0x31, 0x38, 0x32, 0x38, 0x61, 0x38, 0x63,
|
||||
0x38, 0x65, 0x38, 0x69, 0x38, 0x6f, 0x38, 0x73, 0x38, 0x74,
|
||||
0x39, 0x30, 0x39, 0x31, 0x39, 0x32, 0x39, 0x61, 0x39, 0x63,
|
||||
0x39, 0x65, 0x39, 0x69, 0x39, 0x6f, 0x39, 0x73, 0x39, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_16_emit_[40] = {
|
||||
0x3d, 0x30, 0x3d, 0x31, 0x3d, 0x32, 0x3d, 0x61, 0x3d, 0x63,
|
||||
0x3d, 0x65, 0x3d, 0x69, 0x3d, 0x6f, 0x3d, 0x73, 0x3d, 0x74,
|
||||
0x41, 0x30, 0x41, 0x31, 0x41, 0x32, 0x41, 0x61, 0x41, 0x63,
|
||||
0x41, 0x65, 0x41, 0x69, 0x41, 0x6f, 0x41, 0x73, 0x41, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_17_emit_[40] = {
|
||||
0x5f, 0x30, 0x5f, 0x31, 0x5f, 0x32, 0x5f, 0x61, 0x5f, 0x63,
|
||||
0x5f, 0x65, 0x5f, 0x69, 0x5f, 0x6f, 0x5f, 0x73, 0x5f, 0x74,
|
||||
0x62, 0x30, 0x62, 0x31, 0x62, 0x32, 0x62, 0x61, 0x62, 0x63,
|
||||
0x62, 0x65, 0x62, 0x69, 0x62, 0x6f, 0x62, 0x73, 0x62, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_18_emit_[40] = {
|
||||
0x64, 0x30, 0x64, 0x31, 0x64, 0x32, 0x64, 0x61, 0x64, 0x63,
|
||||
0x64, 0x65, 0x64, 0x69, 0x64, 0x6f, 0x64, 0x73, 0x64, 0x74,
|
||||
0x66, 0x30, 0x66, 0x31, 0x66, 0x32, 0x66, 0x61, 0x66, 0x63,
|
||||
0x66, 0x65, 0x66, 0x69, 0x66, 0x6f, 0x66, 0x73, 0x66, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_19_emit_[40] = {
|
||||
0x67, 0x30, 0x67, 0x31, 0x67, 0x32, 0x67, 0x61, 0x67, 0x63,
|
||||
0x67, 0x65, 0x67, 0x69, 0x67, 0x6f, 0x67, 0x73, 0x67, 0x74,
|
||||
0x68, 0x30, 0x68, 0x31, 0x68, 0x32, 0x68, 0x61, 0x68, 0x63,
|
||||
0x68, 0x65, 0x68, 0x69, 0x68, 0x6f, 0x68, 0x73, 0x68, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_20_emit_[40] = {
|
||||
0x6c, 0x30, 0x6c, 0x31, 0x6c, 0x32, 0x6c, 0x61, 0x6c, 0x63,
|
||||
0x6c, 0x65, 0x6c, 0x69, 0x6c, 0x6f, 0x6c, 0x73, 0x6c, 0x74,
|
||||
0x6d, 0x30, 0x6d, 0x31, 0x6d, 0x32, 0x6d, 0x61, 0x6d, 0x63,
|
||||
0x6d, 0x65, 0x6d, 0x69, 0x6d, 0x6f, 0x6d, 0x73, 0x6d, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_21_emit_[40] = {
|
||||
0x6e, 0x30, 0x6e, 0x31, 0x6e, 0x32, 0x6e, 0x61, 0x6e, 0x63,
|
||||
0x6e, 0x65, 0x6e, 0x69, 0x6e, 0x6f, 0x6e, 0x73, 0x6e, 0x74,
|
||||
0x70, 0x30, 0x70, 0x31, 0x70, 0x32, 0x70, 0x61, 0x70, 0x63,
|
||||
0x70, 0x65, 0x70, 0x69, 0x70, 0x6f, 0x70, 0x73, 0x70, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_22_emit_[40] = {
|
||||
0x72, 0x30, 0x72, 0x31, 0x72, 0x32, 0x72, 0x61, 0x72, 0x63,
|
||||
0x72, 0x65, 0x72, 0x69, 0x72, 0x6f, 0x72, 0x73, 0x72, 0x74,
|
||||
0x75, 0x30, 0x75, 0x31, 0x75, 0x32, 0x75, 0x61, 0x75, 0x63,
|
||||
0x75, 0x65, 0x75, 0x69, 0x75, 0x6f, 0x75, 0x73, 0x75, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table1_23_emit_[4] = {0x3a, 0x42, 0x43, 0x44};
|
||||
const uint16_t HuffDecoderCommon::table1_23_inner_[4] = {0x0017, 0x0097, 0x0117,
|
||||
0x0197};
|
||||
const uint8_t HuffDecoderCommon::table1_23_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3};
|
||||
const uint8_t HuffDecoderCommon::table1_24_emit_[4] = {0x45, 0x46, 0x47, 0x48};
|
||||
const uint8_t HuffDecoderCommon::table1_25_emit_[4] = {0x49, 0x4a, 0x4b, 0x4c};
|
||||
const uint8_t HuffDecoderCommon::table1_26_emit_[4] = {0x4d, 0x4e, 0x4f, 0x50};
|
||||
const uint8_t HuffDecoderCommon::table1_27_emit_[4] = {0x51, 0x52, 0x53, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table1_28_emit_[4] = {0x55, 0x56, 0x57, 0x59};
|
||||
const uint8_t HuffDecoderCommon::table1_29_emit_[4] = {0x6a, 0x6b, 0x71, 0x76};
|
||||
const uint8_t HuffDecoderCommon::table1_30_emit_[4] = {0x77, 0x78, 0x79, 0x7a};
|
||||
const uint8_t HuffDecoderCommon::table1_31_emit_[14] = {
|
||||
0x26, 0x2a, 0x2c, 0x3b, 0x58, 0x5a, 0x21,
|
||||
0x22, 0x28, 0x29, 0x3f, 0x27, 0x2b, 0x7c};
|
||||
const uint16_t HuffDecoderCommon::table1_31_inner_[17] = {
|
||||
0x0018, 0x0098, 0x0118, 0x0198, 0x0218, 0x0298, 0x031a, 0x039a, 0x041a,
|
||||
0x049a, 0x051a, 0x059b, 0x061b, 0x069b, 0x002b, 0x003b, 0x004b};
|
||||
const uint8_t HuffDecoderCommon::table1_31_outer_[64] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5,
|
||||
5, 5, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 12, 13, 14, 15, 16};
|
||||
const uint8_t* const HuffDecoderCommon::table1_emit_[32] = {
|
||||
table1_0_emit_, table1_1_emit_, table1_2_emit_, table1_3_emit_,
|
||||
table1_4_emit_, table1_5_emit_, table1_6_emit_, table1_7_emit_,
|
||||
table1_8_emit_, table1_9_emit_, table1_10_emit_, table1_11_emit_,
|
||||
table1_12_emit_, table1_13_emit_, table1_14_emit_, table1_15_emit_,
|
||||
table1_16_emit_, table1_17_emit_, table1_18_emit_, table1_19_emit_,
|
||||
table1_20_emit_, table1_21_emit_, table1_22_emit_, table1_23_emit_,
|
||||
table1_24_emit_, table1_25_emit_, table1_26_emit_, table1_27_emit_,
|
||||
table1_28_emit_, table1_29_emit_, table1_30_emit_, table1_31_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table1_inner_[32] = {
|
||||
table1_0_inner_, table1_1_inner_, table1_2_inner_, table1_3_inner_,
|
||||
table1_4_inner_, table1_5_inner_, table1_6_inner_, table1_7_inner_,
|
||||
table1_8_inner_, table1_9_inner_, table1_10_inner_, table1_10_inner_,
|
||||
table1_10_inner_, table1_10_inner_, table1_10_inner_, table1_10_inner_,
|
||||
table1_10_inner_, table1_10_inner_, table1_10_inner_, table1_10_inner_,
|
||||
table1_10_inner_, table1_10_inner_, table1_10_inner_, table1_23_inner_,
|
||||
table1_23_inner_, table1_23_inner_, table1_23_inner_, table1_23_inner_,
|
||||
table1_23_inner_, table1_23_inner_, table1_23_inner_, table1_31_inner_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table1_outer_[32] = {
|
||||
table1_0_outer_, table1_0_outer_, table1_0_outer_, table1_0_outer_,
|
||||
table1_0_outer_, table1_0_outer_, table1_0_outer_, table1_0_outer_,
|
||||
table1_0_outer_, table1_0_outer_, table1_10_outer_, table1_10_outer_,
|
||||
table1_10_outer_, table1_10_outer_, table1_10_outer_, table1_10_outer_,
|
||||
table1_10_outer_, table1_10_outer_, table1_10_outer_, table1_10_outer_,
|
||||
table1_10_outer_, table1_10_outer_, table1_10_outer_, table1_23_outer_,
|
||||
table1_23_outer_, table1_23_outer_, table1_23_outer_, table1_23_outer_,
|
||||
table1_23_outer_, table1_23_outer_, table1_23_outer_, table1_31_outer_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table12_0_inner_[6] = {0x00, 0x01, 0x05,
|
||||
0x09, 0x0d, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table12_0_outer_[8] = {0, 1, 0, 2, 3, 4, 0, 5};
|
||||
const uint8_t HuffDecoderCommon::table13_0_emit_[7] = {0x5d, 0x7e, 0x5e, 0x7d,
|
||||
0x3c, 0x60, 0x7b};
|
||||
const uint8_t HuffDecoderCommon::table13_0_inner_[9] = {
|
||||
0x00, 0x01, 0x05, 0x09, 0x0d, 0x11, 0x15, 0x19, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table13_0_outer_[16] = {
|
||||
0, 0, 0, 1, 0, 0, 0, 2, 0, 3, 0, 4, 5, 6, 7, 8};
|
||||
const uint8_t HuffDecoderCommon::table14_0_ops_[32] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
|
||||
0x00, 0x0d, 0x00, 0x11, 0x00, 0x15, 0x00, 0x19, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table15_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00,
|
||||
0x15, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table16_0_emit_[45] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d, 0x65,
|
||||
0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x7e, 0x30, 0x7e, 0x31,
|
||||
0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e, 0x65, 0x7e, 0x69, 0x7e, 0x6f,
|
||||
0x7e, 0x73, 0x7e, 0x74, 0x5e, 0x7d, 0x3c, 0x60, 0x7b};
|
||||
const uint8_t HuffDecoderCommon::table16_0_ops_[128] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x48, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x50, 0x58, 0x60, 0x68,
|
||||
0x70, 0x78, 0x80, 0x88, 0x90, 0x98, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x52, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xa2, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xa6,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xaa, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0xae, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0xb2,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x03};
|
||||
const uint8_t HuffDecoderCommon::table17_0_emit_[72] = {
|
||||
0x5d, 0x30, 0x5d, 0x31, 0x5d, 0x32, 0x5d, 0x61, 0x5d, 0x63, 0x5d, 0x65,
|
||||
0x5d, 0x69, 0x5d, 0x6f, 0x5d, 0x73, 0x5d, 0x74, 0x5d, 0x20, 0x5d, 0x25,
|
||||
0x5d, 0x2d, 0x5d, 0x2e, 0x5d, 0x2f, 0x5d, 0x33, 0x5d, 0x34, 0x5d, 0x35,
|
||||
0x5d, 0x36, 0x5d, 0x37, 0x5d, 0x38, 0x5d, 0x39, 0x5d, 0x3d, 0x5d, 0x41,
|
||||
0x5d, 0x5f, 0x5d, 0x62, 0x5d, 0x64, 0x5d, 0x66, 0x5d, 0x67, 0x5d, 0x68,
|
||||
0x5d, 0x6c, 0x5d, 0x6d, 0x5d, 0x6e, 0x5d, 0x70, 0x5d, 0x72, 0x5d, 0x75};
|
||||
const uint16_t HuffDecoderCommon::table17_0_ops_[64] = {
|
||||
0x0000, 0x0001, 0x0000, 0x0009, 0x0000, 0x0011, 0x0000, 0x0019,
|
||||
0x0000, 0x0021, 0x0000, 0x0029, 0x0000, 0x0031, 0x0000, 0x0039,
|
||||
0x0000, 0x0041, 0x0000, 0x0049, 0x0051, 0x0059, 0x0061, 0x0069,
|
||||
0x0071, 0x0079, 0x0081, 0x0089, 0x0091, 0x0099, 0x00a1, 0x00a9,
|
||||
0x00b1, 0x00b9, 0x00c1, 0x00c9, 0x00d1, 0x00d9, 0x00e1, 0x00e9,
|
||||
0x00f1, 0x00f9, 0x0101, 0x0109, 0x0111, 0x0119, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table17_1_emit_[72] = {
|
||||
0x7e, 0x30, 0x7e, 0x31, 0x7e, 0x32, 0x7e, 0x61, 0x7e, 0x63, 0x7e, 0x65,
|
||||
0x7e, 0x69, 0x7e, 0x6f, 0x7e, 0x73, 0x7e, 0x74, 0x7e, 0x20, 0x7e, 0x25,
|
||||
0x7e, 0x2d, 0x7e, 0x2e, 0x7e, 0x2f, 0x7e, 0x33, 0x7e, 0x34, 0x7e, 0x35,
|
||||
0x7e, 0x36, 0x7e, 0x37, 0x7e, 0x38, 0x7e, 0x39, 0x7e, 0x3d, 0x7e, 0x41,
|
||||
0x7e, 0x5f, 0x7e, 0x62, 0x7e, 0x64, 0x7e, 0x66, 0x7e, 0x67, 0x7e, 0x68,
|
||||
0x7e, 0x6c, 0x7e, 0x6d, 0x7e, 0x6e, 0x7e, 0x70, 0x7e, 0x72, 0x7e, 0x75};
|
||||
const uint8_t HuffDecoderCommon::table17_2_emit_[40] = {
|
||||
0x5e, 0x30, 0x5e, 0x31, 0x5e, 0x32, 0x5e, 0x61, 0x5e, 0x63,
|
||||
0x5e, 0x65, 0x5e, 0x69, 0x5e, 0x6f, 0x5e, 0x73, 0x5e, 0x74,
|
||||
0x7d, 0x30, 0x7d, 0x31, 0x7d, 0x32, 0x7d, 0x61, 0x7d, 0x63,
|
||||
0x7d, 0x65, 0x7d, 0x69, 0x7d, 0x6f, 0x7d, 0x73, 0x7d, 0x74};
|
||||
const uint16_t HuffDecoderCommon::table17_2_ops_[64] = {
|
||||
0x0001, 0x0009, 0x0011, 0x0019, 0x0021, 0x0029, 0x0031, 0x0039,
|
||||
0x0041, 0x0049, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0051, 0x0059, 0x0061, 0x0069, 0x0071, 0x0079, 0x0081, 0x0089,
|
||||
0x0091, 0x0099, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0052};
|
||||
const uint8_t HuffDecoderCommon::table17_3_emit_[6] = {0x3c, 0x60, 0x7b,
|
||||
0x5c, 0xc3, 0xd0};
|
||||
const uint16_t HuffDecoderCommon::table17_3_ops_[64] = {
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0002,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0006,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000a,
|
||||
0x000e, 0x0012, 0x0016, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
|
||||
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0003};
|
||||
const uint8_t* const HuffDecoderCommon::table17_emit_[4] = {
|
||||
table17_0_emit_,
|
||||
table17_1_emit_,
|
||||
table17_2_emit_,
|
||||
table17_3_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table17_ops_[4] = {
|
||||
table17_0_ops_,
|
||||
table17_0_ops_,
|
||||
table17_2_ops_,
|
||||
table17_3_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table10_0_emit_[1] = {0x5d};
|
||||
const uint16_t HuffDecoderCommon::table10_0_ops_[32] = {
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002,
|
||||
0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002, 0x0002};
|
||||
const uint8_t HuffDecoderCommon::table10_4_emit_[1] = {0x7e};
|
||||
const uint8_t HuffDecoderCommon::table10_8_emit_[1] = {0x5e};
|
||||
const uint16_t HuffDecoderCommon::table10_8_ops_[32] = {
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003,
|
||||
0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003, 0x0003};
|
||||
const uint8_t HuffDecoderCommon::table10_10_emit_[1] = {0x7d};
|
||||
const uint8_t HuffDecoderCommon::table10_12_emit_[1] = {0x3c};
|
||||
const uint16_t HuffDecoderCommon::table10_12_ops_[32] = {
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004};
|
||||
const uint8_t HuffDecoderCommon::table10_13_emit_[1] = {0x60};
|
||||
const uint8_t HuffDecoderCommon::table10_14_emit_[1] = {0x7b};
|
||||
const uint8_t HuffDecoderCommon::table10_15_emit_[11] = {
|
||||
0x5c, 0xc3, 0xd0, 0x80, 0x82, 0x83, 0xa2, 0xb8, 0xc2, 0xe0, 0xe2};
|
||||
const uint16_t HuffDecoderCommon::table10_15_ops_[32] = {
|
||||
0x0008, 0x0008, 0x0208, 0x0208, 0x0408, 0x0408, 0x0609, 0x0809,
|
||||
0x0a09, 0x0c09, 0x0e09, 0x1009, 0x1209, 0x1409, 0x0019, 0x0029,
|
||||
0x0039, 0x0049, 0x0059, 0x0069, 0x0079, 0x0089, 0x0099, 0x00a9,
|
||||
0x00b9, 0x00c9, 0x00d9, 0x00e9, 0x00f9, 0x0109, 0x0119, 0x0129};
|
||||
const uint8_t* const HuffDecoderCommon::table10_emit_[16] = {
|
||||
table10_0_emit_, table10_0_emit_, table10_0_emit_, table10_0_emit_,
|
||||
table10_4_emit_, table10_4_emit_, table10_4_emit_, table10_4_emit_,
|
||||
table10_8_emit_, table10_8_emit_, table10_10_emit_, table10_10_emit_,
|
||||
table10_12_emit_, table10_13_emit_, table10_14_emit_, table10_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table10_ops_[16] = {
|
||||
table10_0_ops_, table10_0_ops_, table10_0_ops_, table10_0_ops_,
|
||||
table10_0_ops_, table10_0_ops_, table10_0_ops_, table10_0_ops_,
|
||||
table10_8_ops_, table10_8_ops_, table10_8_ops_, table10_8_ops_,
|
||||
table10_12_ops_, table10_12_ops_, table10_12_ops_, table10_15_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table30_0_emit_[8] = {0x01, 0x87, 0x89, 0x8a,
|
||||
0x8b, 0x8c, 0x8d, 0x8f};
|
||||
const uint8_t HuffDecoderCommon::table30_0_inner_[8] = {0x03, 0x07, 0x0b, 0x0f,
|
||||
0x13, 0x17, 0x1b, 0x1f};
|
||||
const uint8_t HuffDecoderCommon::table31_0_emit_[8] = {0x93, 0x95, 0x96, 0x97,
|
||||
0x98, 0x9b, 0x9d, 0x9e};
|
||||
const uint8_t HuffDecoderCommon::table32_0_emit_[8] = {0xa5, 0xa6, 0xa8, 0xae,
|
||||
0xaf, 0xb4, 0xb6, 0xb7};
|
||||
const uint8_t HuffDecoderCommon::table36_0_emit_[5] = {0xbc, 0xbf, 0xc5, 0xe7,
|
||||
0xef};
|
||||
const uint8_t HuffDecoderCommon::table36_0_inner_[6] = {0x00, 0x02, 0x04,
|
||||
0x06, 0x08, 0x01};
|
||||
const uint8_t HuffDecoderCommon::table35_0_emit_[11] = {
|
||||
0xbc, 0xbf, 0xc5, 0xe7, 0xef, 0x09, 0x8e, 0x90, 0x91, 0x94, 0x9f};
|
||||
const uint8_t HuffDecoderCommon::table35_0_inner_[11] = {
|
||||
0x03, 0x0b, 0x13, 0x1b, 0x23, 0x2c, 0x34, 0x3c, 0x44, 0x4c, 0x54};
|
||||
const uint8_t HuffDecoderCommon::table38_0_emit_[6] = {0xab, 0xce, 0xd7,
|
||||
0xe1, 0xec, 0xed};
|
||||
const uint8_t HuffDecoderCommon::table38_0_inner_[8] = {0x00, 0x04, 0x08, 0x0c,
|
||||
0x10, 0x14, 0x01, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table39_0_emit_[10] = {
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table39_0_ops_[32] = {
|
||||
0x00, 0x01, 0x00, 0x05, 0x00, 0x09, 0x00, 0x0d, 0x00, 0x11, 0x00,
|
||||
0x15, 0x19, 0x1d, 0x21, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table40_0_emit_[25] = {
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea,
|
||||
0xeb, 0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5,
|
||||
0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff};
|
||||
const uint8_t HuffDecoderCommon::table40_0_ops_[64] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00,
|
||||
0x09, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00,
|
||||
0x00, 0x15, 0x00, 0x19, 0x00, 0x1d, 0x00, 0x21, 0x00, 0x25, 0x29,
|
||||
0x2d, 0x31, 0x35, 0x39, 0x3d, 0x41, 0x45, 0x49, 0x4d, 0x51, 0x55,
|
||||
0x59, 0x5d, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table41_0_emit_[44] = {
|
||||
0xab, 0xce, 0xd7, 0xe1, 0xec, 0xed, 0xc7, 0xcf, 0xea, 0xeb, 0xc0,
|
||||
0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee, 0xf0,
|
||||
0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf,
|
||||
0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe};
|
||||
const uint8_t HuffDecoderCommon::table41_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x29, 0x00, 0x2d, 0x00, 0x31, 0x00, 0x35,
|
||||
0x00, 0x39, 0x00, 0x3d, 0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d,
|
||||
0x00, 0x51, 0x00, 0x55, 0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x65, 0x69,
|
||||
0x6d, 0x71, 0x75, 0x79, 0x7d, 0x81, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99,
|
||||
0x9d, 0xa1, 0xa5, 0xa9, 0xad, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02};
|
||||
const uint8_t HuffDecoderCommon::table42_0_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x25};
|
||||
const uint8_t HuffDecoderCommon::table42_1_emit_[63] = {
|
||||
0xc0, 0xc1, 0xc8, 0xc9, 0xca, 0xcd, 0xd2, 0xd5, 0xda, 0xdb, 0xee,
|
||||
0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc, 0xd3, 0xd4, 0xd6, 0xdd, 0xde,
|
||||
0xdf, 0xf1, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd,
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x0b, 0x0c, 0x0e,
|
||||
0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a,
|
||||
0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint8_t HuffDecoderCommon::table42_1_ops_[128] = {
|
||||
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09,
|
||||
0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x15,
|
||||
0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x1d, 0x00, 0x00, 0x00, 0x21,
|
||||
0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x2d,
|
||||
0x00, 0x00, 0x00, 0x31, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x39,
|
||||
0x00, 0x3d, 0x00, 0x41, 0x00, 0x45, 0x00, 0x49, 0x00, 0x4d, 0x00, 0x51,
|
||||
0x00, 0x55, 0x00, 0x59, 0x00, 0x5d, 0x00, 0x61, 0x00, 0x65, 0x00, 0x69,
|
||||
0x00, 0x6d, 0x00, 0x71, 0x00, 0x75, 0x00, 0x79, 0x00, 0x7d, 0x00, 0x81,
|
||||
0x00, 0x85, 0x89, 0x8d, 0x91, 0x95, 0x99, 0x9d, 0xa1, 0xa5, 0xa9, 0xad,
|
||||
0xb1, 0xb5, 0xb9, 0xbd, 0xc1, 0xc5, 0xc9, 0xcd, 0xd1, 0xd5, 0xd9, 0xdd,
|
||||
0xe1, 0xe5, 0xe9, 0xed, 0xf1, 0xf5, 0xf9, 0x02};
|
||||
const uint8_t* const HuffDecoderCommon::table42_emit_[2] = {
|
||||
table39_0_emit_,
|
||||
table42_1_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table42_ops_[2] = {
|
||||
table42_0_ops_,
|
||||
table42_1_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table43_0_emit_[40] = {
|
||||
0xab, 0x30, 0xab, 0x31, 0xab, 0x32, 0xab, 0x61, 0xab, 0x63,
|
||||
0xab, 0x65, 0xab, 0x69, 0xab, 0x6f, 0xab, 0x73, 0xab, 0x74,
|
||||
0xce, 0x30, 0xce, 0x31, 0xce, 0x32, 0xce, 0x61, 0xce, 0x63,
|
||||
0xce, 0x65, 0xce, 0x69, 0xce, 0x6f, 0xce, 0x73, 0xce, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table43_0_ops_[64] = {
|
||||
0x00, 0x08, 0x10, 0x18, 0x20, 0x28, 0x30, 0x38, 0x40, 0x48, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x50,
|
||||
0x58, 0x60, 0x68, 0x70, 0x78, 0x80, 0x88, 0x90, 0x98, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x52};
|
||||
const uint8_t HuffDecoderCommon::table43_1_emit_[40] = {
|
||||
0xd7, 0x30, 0xd7, 0x31, 0xd7, 0x32, 0xd7, 0x61, 0xd7, 0x63,
|
||||
0xd7, 0x65, 0xd7, 0x69, 0xd7, 0x6f, 0xd7, 0x73, 0xd7, 0x74,
|
||||
0xe1, 0x30, 0xe1, 0x31, 0xe1, 0x32, 0xe1, 0x61, 0xe1, 0x63,
|
||||
0xe1, 0x65, 0xe1, 0x69, 0xe1, 0x6f, 0xe1, 0x73, 0xe1, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table43_2_emit_[40] = {
|
||||
0xec, 0x30, 0xec, 0x31, 0xec, 0x32, 0xec, 0x61, 0xec, 0x63,
|
||||
0xec, 0x65, 0xec, 0x69, 0xec, 0x6f, 0xec, 0x73, 0xec, 0x74,
|
||||
0xed, 0x30, 0xed, 0x31, 0xed, 0x32, 0xed, 0x61, 0xed, 0x63,
|
||||
0xed, 0x65, 0xed, 0x69, 0xed, 0x6f, 0xed, 0x73, 0xed, 0x74};
|
||||
const uint8_t HuffDecoderCommon::table43_3_emit_[4] = {0xc7, 0xcf, 0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table43_4_emit_[8] = {0xc0, 0xc1, 0xc8, 0xc9,
|
||||
0xca, 0xcd, 0xd2, 0xd5};
|
||||
const uint8_t HuffDecoderCommon::table43_5_emit_[9] = {
|
||||
0xda, 0xdb, 0xee, 0xf0, 0xf2, 0xf3, 0xff, 0xcb, 0xcc};
|
||||
const uint8_t HuffDecoderCommon::table43_5_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x0a, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x0e, 0x01,
|
||||
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x12, 0x01, 0x01, 0x01, 0x01,
|
||||
0x01, 0x01, 0x01, 0x16, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
|
||||
0x1a, 0x01, 0x01, 0x01, 0x1e, 0x01, 0x01, 0x01, 0x22};
|
||||
const uint8_t HuffDecoderCommon::table43_6_emit_[16] = {
|
||||
0xd3, 0xd4, 0xd6, 0xdd, 0xde, 0xdf, 0xf1, 0xf4,
|
||||
0xf5, 0xf6, 0xf7, 0xf8, 0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint8_t HuffDecoderCommon::table43_6_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x02, 0x01, 0x01, 0x01, 0x06, 0x01, 0x01, 0x01,
|
||||
0x0a, 0x01, 0x01, 0x01, 0x0e, 0x01, 0x01, 0x01, 0x12, 0x01, 0x01,
|
||||
0x01, 0x16, 0x01, 0x01, 0x01, 0x1a, 0x01, 0x01, 0x01, 0x1e, 0x01,
|
||||
0x01, 0x01, 0x22, 0x01, 0x01, 0x01, 0x26, 0x01, 0x01, 0x01, 0x2a,
|
||||
0x01, 0x01, 0x01, 0x2e, 0x01, 0x01, 0x01, 0x32, 0x01, 0x01, 0x01,
|
||||
0x36, 0x01, 0x01, 0x01, 0x3a, 0x01, 0x01, 0x01, 0x3e};
|
||||
const uint8_t HuffDecoderCommon::table43_7_emit_[30] = {
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x0b, 0x0c,
|
||||
0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x17, 0x18,
|
||||
0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9};
|
||||
const uint8_t HuffDecoderCommon::table43_7_ops_[64] = {
|
||||
0x01, 0x01, 0x01, 0x02, 0x01, 0x06, 0x01, 0x0a, 0x01, 0x0e, 0x01,
|
||||
0x12, 0x01, 0x16, 0x01, 0x1a, 0x01, 0x1e, 0x01, 0x22, 0x01, 0x26,
|
||||
0x01, 0x2a, 0x01, 0x2e, 0x01, 0x32, 0x01, 0x36, 0x01, 0x3a, 0x01,
|
||||
0x3e, 0x01, 0x42, 0x01, 0x46, 0x01, 0x4a, 0x01, 0x4e, 0x01, 0x52,
|
||||
0x01, 0x56, 0x01, 0x5a, 0x01, 0x5e, 0x01, 0x62, 0x01, 0x66, 0x01,
|
||||
0x6a, 0x01, 0x6e, 0x01, 0x72, 0x01, 0x76, 0x01, 0x03};
|
||||
const uint8_t* const HuffDecoderCommon::table43_emit_[8] = {
|
||||
table43_0_emit_, table43_1_emit_, table43_2_emit_, table43_3_emit_,
|
||||
table43_4_emit_, table43_5_emit_, table43_6_emit_, table43_7_emit_,
|
||||
};
|
||||
const uint8_t* const HuffDecoderCommon::table43_ops_[8] = {
|
||||
table43_0_ops_, table43_0_ops_, table43_0_ops_, table7_5_ops_,
|
||||
table7_12_ops_, table43_5_ops_, table43_6_ops_, table43_7_ops_,
|
||||
};
|
||||
const uint8_t HuffDecoderCommon::table37_0_emit_[1] = {0xab};
|
||||
const uint16_t HuffDecoderCommon::table37_0_ops_[64] = {
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004,
|
||||
0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004, 0x0004};
|
||||
const uint8_t HuffDecoderCommon::table37_1_emit_[1] = {0xce};
|
||||
const uint8_t HuffDecoderCommon::table37_2_emit_[1] = {0xd7};
|
||||
const uint8_t HuffDecoderCommon::table37_3_emit_[1] = {0xe1};
|
||||
const uint8_t HuffDecoderCommon::table37_4_emit_[1] = {0xec};
|
||||
const uint8_t HuffDecoderCommon::table37_5_emit_[1] = {0xed};
|
||||
const uint8_t HuffDecoderCommon::table37_6_emit_[2] = {0xc7, 0xcf};
|
||||
const uint16_t HuffDecoderCommon::table37_6_ops_[64] = {
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005, 0x0005,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025,
|
||||
0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025, 0x0025};
|
||||
const uint8_t HuffDecoderCommon::table37_7_emit_[2] = {0xea, 0xeb};
|
||||
const uint8_t HuffDecoderCommon::table37_8_emit_[4] = {0xc0, 0xc1, 0xc8, 0xc9};
|
||||
const uint16_t HuffDecoderCommon::table37_8_ops_[64] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066,
|
||||
0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066, 0x0066};
|
||||
const uint8_t HuffDecoderCommon::table37_9_emit_[4] = {0xca, 0xcd, 0xd2, 0xd5};
|
||||
const uint8_t HuffDecoderCommon::table37_10_emit_[4] = {0xda, 0xdb, 0xee, 0xf0};
|
||||
const uint8_t HuffDecoderCommon::table37_11_emit_[5] = {0xf2, 0xf3, 0xff, 0xcb,
|
||||
0xcc};
|
||||
const uint16_t HuffDecoderCommon::table37_11_ops_[64] = {
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006, 0x0006,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026, 0x0026,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046, 0x0046,
|
||||
0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087};
|
||||
const uint8_t HuffDecoderCommon::table37_12_emit_[8] = {0xd3, 0xd4, 0xd6, 0xdd,
|
||||
0xde, 0xdf, 0xf1, 0xf4};
|
||||
const uint16_t HuffDecoderCommon::table37_12_ops_[64] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007,
|
||||
0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027, 0x0027,
|
||||
0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047, 0x0047,
|
||||
0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067, 0x0067,
|
||||
0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087, 0x0087,
|
||||
0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00a7, 0x00a7,
|
||||
0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00c7, 0x00c7,
|
||||
0x00e7, 0x00e7, 0x00e7, 0x00e7, 0x00e7, 0x00e7, 0x00e7, 0x00e7};
|
||||
const uint8_t HuffDecoderCommon::table37_13_emit_[8] = {0xf5, 0xf6, 0xf7, 0xf8,
|
||||
0xfa, 0xfb, 0xfc, 0xfd};
|
||||
const uint8_t HuffDecoderCommon::table37_14_emit_[15] = {
|
||||
0xfe, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
|
||||
0x0b, 0x0c, 0x0e, 0x0f, 0x10, 0x11, 0x12};
|
||||
const uint16_t HuffDecoderCommon::table37_14_ops_[64] = {
|
||||
0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007, 0x0007,
|
||||
0x0028, 0x0028, 0x0028, 0x0028, 0x0048, 0x0048, 0x0048, 0x0048,
|
||||
0x0068, 0x0068, 0x0068, 0x0068, 0x0088, 0x0088, 0x0088, 0x0088,
|
||||
0x00a8, 0x00a8, 0x00a8, 0x00a8, 0x00c8, 0x00c8, 0x00c8, 0x00c8,
|
||||
0x00e8, 0x00e8, 0x00e8, 0x00e8, 0x0108, 0x0108, 0x0108, 0x0108,
|
||||
0x0128, 0x0128, 0x0128, 0x0128, 0x0148, 0x0148, 0x0148, 0x0148,
|
||||
0x0168, 0x0168, 0x0168, 0x0168, 0x0188, 0x0188, 0x0188, 0x0188,
|
||||
0x01a8, 0x01a8, 0x01a8, 0x01a8, 0x01c8, 0x01c8, 0x01c8, 0x01c8};
|
||||
const uint8_t HuffDecoderCommon::table37_15_emit_[18] = {
|
||||
0x13, 0x14, 0x15, 0x17, 0x18, 0x19, 0x1a, 0x1b, 0x1c,
|
||||
0x1d, 0x1e, 0x1f, 0x7f, 0xdc, 0xf9, 0x0a, 0x0d, 0x16};
|
||||
const uint16_t HuffDecoderCommon::table37_15_ops_[64] = {
|
||||
0x0008, 0x0008, 0x0008, 0x0008, 0x0028, 0x0028, 0x0028, 0x0028,
|
||||
0x0048, 0x0048, 0x0048, 0x0048, 0x0068, 0x0068, 0x0068, 0x0068,
|
||||
0x0088, 0x0088, 0x0088, 0x0088, 0x00a8, 0x00a8, 0x00a8, 0x00a8,
|
||||
0x00c8, 0x00c8, 0x00c8, 0x00c8, 0x00e8, 0x00e8, 0x00e8, 0x00e8,
|
||||
0x0108, 0x0108, 0x0108, 0x0108, 0x0128, 0x0128, 0x0128, 0x0128,
|
||||
0x0148, 0x0148, 0x0148, 0x0148, 0x0168, 0x0168, 0x0168, 0x0168,
|
||||
0x0188, 0x0188, 0x0188, 0x0188, 0x01a8, 0x01a8, 0x01a8, 0x01a8,
|
||||
0x01c8, 0x01c8, 0x01c8, 0x01c8, 0x01ea, 0x020a, 0x022a, 0x001a};
|
||||
const uint8_t* const HuffDecoderCommon::table37_emit_[16] = {
|
||||
table37_0_emit_, table37_1_emit_, table37_2_emit_, table37_3_emit_,
|
||||
table37_4_emit_, table37_5_emit_, table37_6_emit_, table37_7_emit_,
|
||||
table37_8_emit_, table37_9_emit_, table37_10_emit_, table37_11_emit_,
|
||||
table37_12_emit_, table37_13_emit_, table37_14_emit_, table37_15_emit_,
|
||||
};
|
||||
const uint16_t* const HuffDecoderCommon::table37_ops_[16] = {
|
||||
table37_0_ops_, table37_0_ops_, table37_0_ops_, table37_0_ops_,
|
||||
table37_0_ops_, table37_0_ops_, table37_6_ops_, table37_6_ops_,
|
||||
table37_8_ops_, table37_8_ops_, table37_8_ops_, table37_11_ops_,
|
||||
table37_12_ops_, table37_12_ops_, table37_14_ops_, table37_15_ops_,
|
||||
};
|
||||
} // namespace geometry_11_9_10
|
||||
} // namespace grpc_core
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue