summaryrefslogtreecommitdiffstats
path: root/third_party/jpeg-xl/lib/jxl/enc_transforms.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/jpeg-xl/lib/jxl/enc_transforms.cc')
-rw-r--r--third_party/jpeg-xl/lib/jxl/enc_transforms.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/third_party/jpeg-xl/lib/jxl/enc_transforms.cc b/third_party/jpeg-xl/lib/jxl/enc_transforms.cc
index 8978ba1dcb..d116183404 100644
--- a/third_party/jpeg-xl/lib/jxl/enc_transforms.cc
+++ b/third_party/jpeg-xl/lib/jxl/enc_transforms.cc
@@ -21,20 +21,19 @@ void TransformFromPixels(const AcStrategy::Type strategy,
const float* JXL_RESTRICT pixels, size_t pixels_stride,
float* JXL_RESTRICT coefficients,
float* scratch_space) {
- return HWY_DYNAMIC_DISPATCH(TransformFromPixels)(
- strategy, pixels, pixels_stride, coefficients, scratch_space);
+ HWY_DYNAMIC_DISPATCH(TransformFromPixels)
+ (strategy, pixels, pixels_stride, coefficients, scratch_space);
}
HWY_EXPORT(DCFromLowestFrequencies);
void DCFromLowestFrequencies(AcStrategy::Type strategy, const float* block,
float* dc, size_t dc_stride) {
- return HWY_DYNAMIC_DISPATCH(DCFromLowestFrequencies)(strategy, block, dc,
- dc_stride);
+ HWY_DYNAMIC_DISPATCH(DCFromLowestFrequencies)(strategy, block, dc, dc_stride);
}
HWY_EXPORT(AFVDCT4x4);
void AFVDCT4x4(const float* JXL_RESTRICT pixels, float* JXL_RESTRICT coeffs) {
- return HWY_DYNAMIC_DISPATCH(AFVDCT4x4)(pixels, coeffs);
+ HWY_DYNAMIC_DISPATCH(AFVDCT4x4)(pixels, coeffs);
}
#endif // HWY_ONCE