summaryrefslogtreecommitdiff
path: root/lib/jxl/enc_group.h
diff options
context:
space:
mode:
authorjiyong.min <jiyong.min@samsung.com>2022-04-05 17:38:29 +0900
committerjiyong.min <jiyong.min@samsung.com>2022-04-05 17:41:06 +0900
commitb8aee4491f6498d0cc17d18c80f6b3505e2a62ef (patch)
tree650aad24ed8b4f5c9e421fc08f514e94f3fdbba6 /lib/jxl/enc_group.h
parent7f081e487b777dbff09e268d41341e48038d5176 (diff)
downloadlibjxl-b8aee4491f6498d0cc17d18c80f6b3505e2a62ef.tar.gz
libjxl-b8aee4491f6498d0cc17d18c80f6b3505e2a62ef.tar.bz2
libjxl-b8aee4491f6498d0cc17d18c80f6b3505e2a62ef.zip
Imported Upstream version 0.6.1upstream/0.6.1
Change-Id: I1d7cf6d8e9b1a01ffb0971218121010d59418875
Diffstat (limited to 'lib/jxl/enc_group.h')
-rw-r--r--lib/jxl/enc_group.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/jxl/enc_group.h b/lib/jxl/enc_group.h
new file mode 100644
index 0000000..62468dd
--- /dev/null
+++ b/lib/jxl/enc_group.h
@@ -0,0 +1,30 @@
+// 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_GROUP_H_
+#define LIB_JXL_ENC_GROUP_H_
+
+#include <stddef.h>
+#include <stdint.h>
+
+#include "lib/jxl/aux_out_fwd.h"
+#include "lib/jxl/base/status.h"
+#include "lib/jxl/enc_bit_writer.h"
+#include "lib/jxl/enc_cache.h"
+
+namespace jxl {
+
+// Fills DC
+void ComputeCoefficients(size_t group_idx, PassesEncoderState* enc_state,
+ const Image3F& opsin, Image3F* dc);
+
+Status EncodeGroupTokenizedCoefficients(size_t group_idx, size_t pass_idx,
+ size_t histogram_idx,
+ const PassesEncoderState& enc_state,
+ BitWriter* writer, AuxOut* aux_out);
+
+} // namespace jxl
+
+#endif // LIB_JXL_ENC_GROUP_H_