blob: b8530f1173d751464bbf57216f3881d8ccbe2ca1 (
plain)
1
2
3
4
5
6
7
8
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// 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 <stddef.h>
#include <stdint.h>
#include <vector>
#include "lib/jxl/ac_strategy.h"
#include "lib/jxl/aux_out.h"
#include "lib/jxl/base/data_parallel.h"
#include "lib/jxl/chroma_from_luma.h"
#include "lib/jxl/coeff_order.h"
#include "lib/jxl/coeff_order_fwd.h"
#include "lib/jxl/common.h"
#include "lib/jxl/dct_util.h"
#include "lib/jxl/enc_ans.h"
#include "lib/jxl/enc_heuristics.h"
#include "lib/jxl/enc_params.h"
#include "lib/jxl/frame_header.h"
#include "lib/jxl/image.h"
#include "lib/jxl/image_bundle.h"
#include "lib/jxl/passes_state.h"
#include "lib/jxl/progressive_split.h"
#include "lib/jxl/quant_weights.h"
#include "lib/jxl/quantizer.h"
namespace jxl {
// Contains encoder state.
struct PassesEncoderState {
PassesSharedState shared;
ImageF initial_quant_field; // Invalid in Falcon mode.
ImageF initial_quant_masking; // Invalid in Falcon mode.
// 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;
// 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;
// Heuristics to be used by the encoder.
std::unique_ptr<EncoderHeuristics> heuristics =
make_unique<DefaultEncoderHeuristics>();
};
// Initialize per-frame information.
class ModularFrameEncoder;
void InitializePassesEncoder(const Image3F& opsin, ThreadPool* pool,
PassesEncoderState* passes_enc_state,
ModularFrameEncoder* modular_frame_encoder,
AuxOut* aux_out);
// Working area for ComputeCoefficients (per-group!)
struct EncCache {
// Allocates memory when first called, shrinks images to current group size.
void InitOnce();
// TokenizeCoefficients
Image3I num_nzeroes;
};
} // namespace jxl
#endif // LIB_JXL_ENC_CACHE_H_
|