From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- third_party/jpeg-xl/lib/jpegli/dct.cc | 75 +++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 third_party/jpeg-xl/lib/jpegli/dct.cc (limited to 'third_party/jpeg-xl/lib/jpegli/dct.cc') diff --git a/third_party/jpeg-xl/lib/jpegli/dct.cc b/third_party/jpeg-xl/lib/jpegli/dct.cc new file mode 100644 index 0000000000..4320abe4c6 --- /dev/null +++ b/third_party/jpeg-xl/lib/jpegli/dct.cc @@ -0,0 +1,75 @@ +// 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. + +#include "lib/jpegli/dct.h" + +#include + +#undef HWY_TARGET_INCLUDE +#define HWY_TARGET_INCLUDE "lib/jpegli/dct.cc" +#include +#include + +#include "lib/jpegli/dct-inl.h" +#include "lib/jpegli/encode_internal.h" +#include "lib/jpegli/memory_manager.h" + +HWY_BEFORE_NAMESPACE(); +namespace jpegli { +namespace HWY_NAMESPACE { +namespace { + +void ComputeDCTCoefficients(j_compress_ptr cinfo) { + jpeg_comp_master* m = cinfo->master; + float* tmp = m->dct_buffer; + for (int c = 0; c < cinfo->num_components; c++) { + jpeg_component_info* comp = &cinfo->comp_info[c]; + int by0 = m->next_iMCU_row * comp->v_samp_factor; + int block_rows_left = comp->height_in_blocks - by0; + int max_block_rows = std::min(comp->v_samp_factor, block_rows_left); + JBLOCKARRAY ba = (*cinfo->mem->access_virt_barray)( + reinterpret_cast(cinfo), m->coeff_buffers[c], by0, + max_block_rows, true); + float* qmc = m->quant_mul[c]; + RowBuffer* plane = m->raw_data[c]; + const int h_factor = m->h_factor[c]; + const int v_factor = m->v_factor[c]; + const float* zero_bias_offset = m->zero_bias_offset[c]; + const float* zero_bias_mul = m->zero_bias_mul[c]; + float aq_strength = 0.0f; + for (int iy = 0; iy < comp->v_samp_factor; iy++) { + size_t by = by0 + iy; + if (by >= comp->height_in_blocks) continue; + JBLOCKROW brow = ba[iy]; + const float* row = plane->Row(8 * by); + for (size_t bx = 0; bx < comp->width_in_blocks; bx++) { + JCOEF* block = &brow[bx][0]; + if (m->use_adaptive_quantization) { + aq_strength = m->quant_field.Row(by * v_factor)[bx * h_factor]; + } + ComputeCoefficientBlock(row + 8 * bx, plane->stride(), qmc, aq_strength, + zero_bias_offset, zero_bias_mul, tmp, block); + } + } + } +} + +// NOLINTNEXTLINE(google-readability-namespace-comments) +} // namespace +} // namespace HWY_NAMESPACE +} // namespace jpegli +HWY_AFTER_NAMESPACE(); + +#if HWY_ONCE +namespace jpegli { + +HWY_EXPORT(ComputeDCTCoefficients); + +void ComputeDCTCoefficients(j_compress_ptr cinfo) { + HWY_DYNAMIC_DISPATCH(ComputeDCTCoefficients)(cinfo); +} + +} // namespace jpegli +#endif // HWY_ONCE -- cgit v1.2.3