use glycin_common::{MemoryFormat, MemoryFormatInfo};
use glycin_utils::FungibleMemory;
use crate::{ColorState, Error};
pub fn apply_transformation(
icc_profile: &[u8],
mut frame: glycin_utils::Frame<FungibleMemory>,
) -> (
glycin_utils::Frame<FungibleMemory>,
Result<ColorState, Error>,
) {
match transform(
icc_profile,
frame.memory_format,
&mut frame.texture,
frame.width,
frame.stride,
) {
Err(err) => (frame, Err(err.into())),
Ok(color_state) => (frame, Ok(color_state)),
}
}
fn transformation<P: lcms2::Pod>(
icc_profile: &[u8],
memory_format: MemoryFormat,
) -> std::result::Result<lcms2::Transform<P, P>, lcms2::Error> {
tracing::debug!("Converting to sRGB via ICC profile");
let icc_pixel_format = lcms_pixel_format(memory_format);
let src_profile = lcms2::Profile::new_icc(icc_profile)?;
let target_profile = if memory_format.n_channels() > 2 {
lcms2::Profile::new_srgb()
} else {
lcms2::Profile::new_gray(lcms2_sys::ffi::CIExyY::d50(), &lcms2::ToneCurve::new(2.2))?
};
lcms2::Transform::new(
&src_profile,
icc_pixel_format,
&target_profile,
icc_pixel_format,
lcms2::Intent::Perceptual,
)
}
fn transform(
icc_profile: &[u8],
memory_format: MemoryFormat,
buf: &mut [u8],
width: u32,
stride: u32,
) -> std::result::Result<ColorState, lcms2::Error> {
let multiple = std::thread::available_parallelism().map_or(2, |x| x.get());
tracing::trace!("Applying ICC profiles while using {multiple} threads");
let chunk_size = (buf.len() / stride as usize).div_ceil(multiple) * stride as usize;
let row_length = width as usize * memory_format.n_bytes().usize();
std::thread::scope(|s| {
for chunk in buf.chunks_mut(chunk_size) {
s.spawn(move || {
let transform = transformation(icc_profile, memory_format)?;
for row in chunk.chunks_mut(stride as usize) {
transform.transform_in_place(&mut row[0..row_length]);
}
Ok::<(), lcms2::Error>(())
});
}
});
Ok(ColorState::Srgb)
}
const fn lcms_pixel_format(format: MemoryFormat) -> lcms2::PixelFormat {
match format {
MemoryFormat::B8g8r8a8Premultiplied => premul(lcms2::PixelFormat::BGRA_8),
MemoryFormat::A8r8g8b8Premultiplied => premul(lcms2::PixelFormat::ARGB_8),
MemoryFormat::R8g8b8a8Premultiplied => premul(lcms2::PixelFormat::RGBA_8),
MemoryFormat::B8g8r8a8 => lcms2::PixelFormat::BGRA_8,
MemoryFormat::A8r8g8b8 => lcms2::PixelFormat::ARGB_8,
MemoryFormat::R8g8b8a8 => lcms2::PixelFormat::RGBA_8,
MemoryFormat::A8b8g8r8 => lcms2::PixelFormat::ABGR_8,
MemoryFormat::R8g8b8 => lcms2::PixelFormat::RGB_8,
MemoryFormat::B8g8r8 => lcms2::PixelFormat::BGR_8,
MemoryFormat::R16g16b16 => lcms2::PixelFormat::RGB_16,
MemoryFormat::R16g16b16a16Premultiplied => premul(lcms2::PixelFormat::RGBA_16),
MemoryFormat::R16g16b16a16 => lcms2::PixelFormat::RGBA_16,
MemoryFormat::R16g16b16Float => lcms2::PixelFormat::RGB_HALF_FLT,
MemoryFormat::R16g16b16a16Float => lcms2::PixelFormat::RGBA_HALF_FLT,
MemoryFormat::R32g32b32Float => lcms2::PixelFormat::RGB_FLT,
MemoryFormat::R32g32b32a32FloatPremultiplied => premul(lcms2::PixelFormat::RGBA_FLT),
MemoryFormat::R32g32b32a32Float => lcms2::PixelFormat::RGBA_FLT,
MemoryFormat::G8a8Premultiplied => premul(lcms2::PixelFormat::GRAYA_8),
MemoryFormat::G8a8 => lcms2::PixelFormat::GRAYA_8,
MemoryFormat::G8 => lcms2::PixelFormat::GRAY_8,
MemoryFormat::G16a16Premultiplied => premul(lcms2::PixelFormat::GRAYA_16),
MemoryFormat::G16a16 => lcms2::PixelFormat::GRAYA_16,
MemoryFormat::G16 => lcms2::PixelFormat::GRAY_16,
}
}
const fn premul(format: lcms2::PixelFormat) -> lcms2::PixelFormat {
let mut bytes = format.0;
bytes |= 0b1 << 23;
lcms2::PixelFormat(bytes)
}
#[test]
fn premul_test() {
assert!(!lcms2::PixelFormat::RGBA_8.premultiplied());
assert!(premul(lcms2::PixelFormat::RGBA_8).premultiplied());
}