use crate::mlaf::fmla;
use crate::{ForgeError, RgbToneMapperParameters, ToneMapper};
use moxcms::{CmsError, InPlaceStage, Matrix3f, Rgb, filmlike_clip};
use num_traits::AsPrimitive;
use std::fmt::Debug;
use std::sync::Arc;
pub(crate) struct ToneMapperImpl<T: Copy, const N: usize, const CN: usize, const GAMMA_SIZE: usize>
{
pub(crate) linear_map_r: Box<[f32; N]>,
pub(crate) linear_map_g: Box<[f32; N]>,
pub(crate) linear_map_b: Box<[f32; N]>,
pub(crate) gamma_map_r: Box<[T; 65536]>,
pub(crate) gamma_map_g: Box<[T; 65536]>,
pub(crate) gamma_map_b: Box<[T; 65536]>,
pub(crate) im_stage: Option<Box<dyn InPlaceStage + Sync + Send>>,
pub(crate) tone_map: Arc<crate::tonemapper::SyncToneMap>,
pub(crate) params: RgbToneMapperParameters,
}
pub(crate) struct MatrixStage<const CN: usize> {
pub(crate) gamut_color_conversion: Matrix3f,
}
impl<const CN: usize> InPlaceStage for MatrixStage<CN> {
fn transform(&self, dst: &mut [f32]) -> Result<(), CmsError> {
let c = self.gamut_color_conversion;
for chunk in dst.as_chunks_mut::<CN>().0.iter_mut() {
let r = fmla(
chunk[1],
c.v[0][1],
fmla(chunk[2], c.v[0][2], chunk[0] * c.v[0][0]),
);
let g = fmla(
chunk[1],
c.v[1][1],
fmla(chunk[2], c.v[1][2], chunk[0] * c.v[1][0]),
);
let b = fmla(
chunk[1],
c.v[2][1],
fmla(chunk[2], c.v[2][2], chunk[0] * c.v[2][0]),
);
chunk[0] = r.max(0.0).min(1.0);
chunk[1] = g.max(0.0).min(1.0);
chunk[2] = b.max(0.0).min(1.0);
}
Ok(())
}
}
#[cfg(target_arch = "x86_64")]
pub(crate) struct FmaMatrixStage<const CN: usize> {
pub(crate) gamut_color_conversion: Matrix3f,
}
#[cfg(target_arch = "x86_64")]
impl<const CN: usize> FmaMatrixStage<CN> {
#[target_feature(enable = "avx2", enable = "fma")]
fn transform_impl(&self, dst: &mut [f32]) -> Result<(), CmsError> {
let c = self.gamut_color_conversion;
for chunk in dst.as_chunks_mut::<CN>().0.iter_mut() {
let r = f32::mul_add(
chunk[1],
c.v[0][1],
f32::mul_add(chunk[2], c.v[0][2], chunk[0] * c.v[0][0]),
);
let g = f32::mul_add(
chunk[1],
c.v[1][1],
f32::mul_add(chunk[2], c.v[1][2], chunk[0] * c.v[1][0]),
);
let b = f32::mul_add(
chunk[1],
c.v[2][1],
f32::mul_add(chunk[2], c.v[2][2], chunk[0] * c.v[2][0]),
);
chunk[0] = r.max(0.0).min(1.0);
chunk[1] = g.max(0.0).min(1.0);
chunk[2] = b.max(0.0).min(1.0);
}
Ok(())
}
}
#[cfg(target_arch = "x86_64")]
impl<const CN: usize> InPlaceStage for FmaMatrixStage<CN> {
fn transform(&self, dst: &mut [f32]) -> Result<(), CmsError> {
unsafe { self.transform_impl(dst) }
}
}
pub(crate) struct MatrixGamutClipping<const CN: usize> {
pub(crate) gamut_color_conversion: Matrix3f,
}
impl<const CN: usize> InPlaceStage for MatrixGamutClipping<CN> {
fn transform(&self, dst: &mut [f32]) -> Result<(), CmsError> {
let c = self.gamut_color_conversion;
for chunk in dst.as_chunks_mut::<CN>().0.iter_mut() {
let r = fmla(
chunk[1],
c.v[0][1],
fmla(chunk[2], c.v[0][2], chunk[0] * c.v[0][0]),
);
let g = fmla(
chunk[1],
c.v[1][1],
fmla(chunk[2], c.v[1][2], chunk[0] * c.v[1][0]),
);
let b = fmla(
chunk[1],
c.v[2][1],
fmla(chunk[2], c.v[2][2], chunk[0] * c.v[2][0]),
);
let mut rgb = Rgb::new(r, g, b);
if rgb.is_out_of_gamut() {
rgb = filmlike_clip(rgb);
chunk[0] = rgb.r.max(0.0).min(1.0);
chunk[1] = rgb.g.max(0.0).min(1.0);
chunk[2] = rgb.b.max(0.0).min(1.0);
} else {
chunk[0] = r.max(0.0).min(1.0);
chunk[1] = g.max(0.0).min(1.0);
chunk[2] = b.max(0.0).min(1.0);
}
}
Ok(())
}
}
impl<
T: Copy + AsPrimitive<usize> + Clone + Default + Debug,
const N: usize,
const CN: usize,
const GAMMA_SIZE: usize,
> ToneMapper<T> for ToneMapperImpl<T, N, CN, GAMMA_SIZE>
where
u32: AsPrimitive<T>,
{
fn tonemap_lane(&self, src: &[T], dst: &mut [T]) -> Result<(), ForgeError> {
assert!(CN == 3 || CN == 4);
if src.len() != dst.len() {
return Err(ForgeError::LaneSizeMismatch);
}
if !src.len().is_multiple_of(CN) {
return Err(ForgeError::LaneMultipleOfChannels);
}
assert_eq!(src.len(), dst.len());
const CHUNK: usize = 256;
let mut scratch = [0f32; CHUNK * 4];
let scratch = &mut scratch[..CHUNK * CN];
let src_chunks = src.as_chunks::<CN>().0;
let dst_chunks = dst.as_chunks_mut::<CN>().0;
for (src_block, dst_block) in src_chunks.chunks(CHUNK).zip(dst_chunks.chunks_mut(CHUNK)) {
let len = src_block.len();
let scratch = &mut scratch[..len * CN];
for (src, dst) in src_block
.iter()
.zip(scratch.as_chunks_mut::<CN>().0.iter_mut())
{
dst[0] = self.linear_map_r[src[0].as_()] * self.params.exposure;
dst[1] = self.linear_map_g[src[1].as_()] * self.params.exposure;
dst[2] = self.linear_map_b[src[2].as_()] * self.params.exposure;
if CN == 4 {
dst[3] = f32::from_bits(src[3].as_() as u32);
}
}
self.tonemap_linearized_lane(scratch)?;
if let Some(c) = &self.im_stage {
c.transform(scratch).map_err(|_| ForgeError::UnknownError)?;
} else {
for chunk in scratch.as_chunks_mut::<CN>().0.iter_mut() {
chunk[0] = chunk[0].max(0.);
chunk[1] = chunk[1].max(0.);
chunk[2] = chunk[2].max(0.);
}
}
let scale_value = (GAMMA_SIZE - 1) as f32;
for (dst, src) in dst_block.iter_mut().zip(scratch.as_chunks::<CN>().0.iter()) {
let r = fmla(src[0], scale_value, 0.5).min(u16::MAX as f32) as u16;
let g = fmla(src[1], scale_value, 0.5).min(u16::MAX as f32) as u16;
let b = fmla(src[2], scale_value, 0.5).min(u16::MAX as f32) as u16;
dst[0] = self.gamma_map_r[r as usize];
dst[1] = self.gamma_map_g[g as usize];
dst[2] = self.gamma_map_b[b as usize];
if CN == 4 {
dst[3] = src[3].to_bits().as_();
}
}
}
Ok(())
}
fn tonemap_linearized_lane(&self, in_place: &mut [f32]) -> Result<(), ForgeError> {
assert!(CN == 3 || CN == 4);
if !in_place.len().is_multiple_of(CN) {
return Err(ForgeError::LaneMultipleOfChannels);
}
self.tone_map.process_lane(in_place);
Ok(())
}
}