summaryrefslogtreecommitdiffstats
path: root/third_party/jpeg-xl/lib/jxl/enc_cluster.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/jpeg-xl/lib/jxl/enc_cluster.h
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/jpeg-xl/lib/jxl/enc_cluster.h')
-rw-r--r--third_party/jpeg-xl/lib/jxl/enc_cluster.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/third_party/jpeg-xl/lib/jxl/enc_cluster.h b/third_party/jpeg-xl/lib/jxl/enc_cluster.h
new file mode 100644
index 0000000000..4b062e820c
--- /dev/null
+++ b/third_party/jpeg-xl/lib/jxl/enc_cluster.h
@@ -0,0 +1,63 @@
+// Copyright (c) the JPEG XL Project Authors. All rights reserved.
+//
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// Functions for clustering similar histograms together.
+
+#ifndef LIB_JXL_ENC_CLUSTER_H_
+#define LIB_JXL_ENC_CLUSTER_H_
+
+#include <stddef.h>
+#include <stdint.h>
+#include <string.h>
+
+#include <vector>
+
+#include "lib/jxl/ans_params.h"
+#include "lib/jxl/enc_ans.h"
+
+namespace jxl {
+
+struct Histogram {
+ Histogram() {
+ total_count_ = 0;
+ entropy_ = 0.0;
+ }
+ void Clear() {
+ data_.clear();
+ total_count_ = 0;
+ }
+ void Add(size_t symbol) {
+ if (data_.size() <= symbol) {
+ data_.resize(DivCeil(symbol + 1, kRounding) * kRounding);
+ }
+ ++data_[symbol];
+ ++total_count_;
+ }
+ void AddHistogram(const Histogram& other) {
+ if (other.data_.size() > data_.size()) {
+ data_.resize(other.data_.size());
+ }
+ for (size_t i = 0; i < other.data_.size(); ++i) {
+ data_[i] += other.data_[i];
+ }
+ total_count_ += other.total_count_;
+ }
+ float PopulationCost() const {
+ return ANSPopulationCost(data_.data(), data_.size());
+ }
+ float ShannonEntropy() const;
+
+ std::vector<ANSHistBin> data_;
+ size_t total_count_;
+ mutable float entropy_; // WARNING: not kept up-to-date.
+ static constexpr size_t kRounding = 8;
+};
+
+void ClusterHistograms(HistogramParams params, const std::vector<Histogram>& in,
+ size_t max_histograms, std::vector<Histogram>* out,
+ std::vector<uint32_t>* histogram_symbols);
+} // namespace jxl
+
+#endif // LIB_JXL_ENC_CLUSTER_H_