]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/BrotliCompress/enc/cluster.h
BaseTools: Make brotli a submodule
[mirror_edk2.git] / BaseTools / Source / C / BrotliCompress / enc / cluster.h
diff --git a/BaseTools/Source/C/BrotliCompress/enc/cluster.h b/BaseTools/Source/C/BrotliCompress/enc/cluster.h
deleted file mode 100644 (file)
index b7ebec8..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/* Copyright 2013 Google Inc. All Rights Reserved.\r
-\r
-   Distributed under MIT license.\r
-   See file LICENSE for detail or copy at https://opensource.org/licenses/MIT\r
-*/\r
-\r
-/* Functions for clustering similar histograms together. */\r
-\r
-#ifndef BROTLI_ENC_CLUSTER_H_\r
-#define BROTLI_ENC_CLUSTER_H_\r
-\r
-#include "../common/platform.h"\r
-#include <brotli/types.h>\r
-#include "./histogram.h"\r
-#include "./memory.h"\r
-\r
-#if defined(__cplusplus) || defined(c_plusplus)\r
-extern "C" {\r
-#endif\r
-\r
-typedef struct HistogramPair {\r
-  uint32_t idx1;\r
-  uint32_t idx2;\r
-  double cost_combo;\r
-  double cost_diff;\r
-} HistogramPair;\r
-\r
-#define CODE(X) /* Declaration */;\r
-\r
-#define FN(X) X ## Literal\r
-#include "./cluster_inc.h"  /* NOLINT(build/include) */\r
-#undef FN\r
-\r
-#define FN(X) X ## Command\r
-#include "./cluster_inc.h"  /* NOLINT(build/include) */\r
-#undef FN\r
-\r
-#define FN(X) X ## Distance\r
-#include "./cluster_inc.h"  /* NOLINT(build/include) */\r
-#undef FN\r
-\r
-#undef CODE\r
-\r
-#if defined(__cplusplus) || defined(c_plusplus)\r
-}  /* extern "C" */\r
-#endif\r
-\r
-#endif  /* BROTLI_ENC_CLUSTER_H_ */\r