summaryrefslogtreecommitdiffstats
path: root/third_party/jpeg-xl/lib/jxl/enc_cache.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /third_party/jpeg-xl/lib/jxl/enc_cache.h
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/jpeg-xl/lib/jxl/enc_cache.h')
-rw-r--r--third_party/jpeg-xl/lib/jxl/enc_cache.h81
1 files changed, 81 insertions, 0 deletions
diff --git a/third_party/jpeg-xl/lib/jxl/enc_cache.h b/third_party/jpeg-xl/lib/jxl/enc_cache.h
new file mode 100644
index 0000000000..6efcc081c1
--- /dev/null
+++ b/third_party/jpeg-xl/lib/jxl/enc_cache.h
@@ -0,0 +1,81 @@
+// 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.
+
+#ifndef LIB_JXL_ENC_CACHE_H_
+#define LIB_JXL_ENC_CACHE_H_
+
+#include <jxl/cms_interface.h>
+#include <stddef.h>
+#include <stdint.h>
+
+#include <memory>
+#include <vector>
+
+#include "lib/jxl/base/data_parallel.h"
+#include "lib/jxl/base/status.h"
+#include "lib/jxl/dct_util.h"
+#include "lib/jxl/enc_ans.h"
+#include "lib/jxl/enc_bit_writer.h"
+#include "lib/jxl/enc_params.h"
+#include "lib/jxl/enc_progressive_split.h"
+#include "lib/jxl/frame_header.h"
+#include "lib/jxl/image.h"
+#include "lib/jxl/passes_state.h"
+#include "lib/jxl/quant_weights.h"
+
+namespace jxl {
+
+struct AuxOut;
+
+// Contains encoder state.
+struct PassesEncoderState {
+ PassesSharedState shared;
+
+ bool streaming_mode = false;
+ bool initialize_global_state = true;
+ size_t dc_group_index = 0;
+
+ // Per-pass DCT coefficients for the image. One row per group.
+ std::vector<std::unique_ptr<ACImage>> coeffs;
+
+ // Raw data for special (reference+DC) frames.
+ std::vector<std::unique_ptr<BitWriter>> special_frames;
+
+ // For splitting into passes.
+ ProgressiveSplitter progressive_splitter;
+
+ CompressParams cparams;
+
+ struct PassData {
+ std::vector<std::vector<Token>> ac_tokens;
+ std::vector<uint8_t> context_map;
+ EntropyEncodingData codes;
+ };
+
+ std::vector<PassData> passes;
+ std::vector<uint8_t> histogram_idx;
+
+ // Block sizes seen so far.
+ uint32_t used_acs = 0;
+ // Coefficient orders that are non-default.
+ std::vector<uint32_t> used_orders;
+
+ // Multiplier to be applied to the quant matrices of the x channel.
+ float x_qm_multiplier = 1.0f;
+ float b_qm_multiplier = 1.0f;
+};
+
+// Initialize per-frame information.
+class ModularFrameEncoder;
+Status InitializePassesEncoder(const FrameHeader& frame_header,
+ const Image3F& opsin, const Rect& rect,
+ const JxlCmsInterface& cms, ThreadPool* pool,
+ PassesEncoderState* passes_enc_state,
+ ModularFrameEncoder* modular_frame_encoder,
+ AuxOut* aux_out);
+
+} // namespace jxl
+
+#endif // LIB_JXL_ENC_CACHE_H_