Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
cluster.h
Go to the documentation of this file.
1/* Copyright 2013 Google Inc. All Rights Reserved.
2
3 Distributed under MIT license.
4 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5*/
6
7/* Functions for clustering similar histograms together. */
8
9#ifndef BROTLI_ENC_CLUSTER_H_
10#define BROTLI_ENC_CLUSTER_H_
11
12#include <brotli/types.h>
13
14#include "../common/platform.h"
15#include "histogram.h"
16#include "memory.h"
17
18#if defined(__cplusplus) || defined(c_plusplus)
19extern "C" {
20#endif
21
22typedef struct HistogramPair {
23 uint32_t idx1;
24 uint32_t idx2;
25 double cost_combo;
26 double cost_diff;
28
29#define CODE(X) /* Declaration */;
30
31#define FN(X) X ## Literal
32#include "cluster_inc.h" /* NOLINT(build/include) */
33#undef FN
34
35#define FN(X) X ## Command
36#include "cluster_inc.h" /* NOLINT(build/include) */
37#undef FN
38
39#define FN(X) X ## Distance
40#include "cluster_inc.h" /* NOLINT(build/include) */
41#undef FN
42
43#undef CODE
44
45#if defined(__cplusplus) || defined(c_plusplus)
46} /* extern "C" */
47#endif
48
49#endif /* BROTLI_ENC_CLUSTER_H_ */
struct HistogramPair HistogramPair
Definition cluster.h:21
uint32_t idx1
Definition cluster.h:22
double cost_diff
Definition cluster.h:25
double cost_combo
Definition cluster.h:24
uint32_t idx2
Definition cluster.h:23