use crate::sse::{
_mm_expand8_hi_to_10, _mm_expand8_lo_to_10, _mm_store_interleave_half_rgb_for_yuv,
_mm_store_interleave_rgb_for_yuv,
};
use crate::yuv_support::{CbCrInverseTransform, YuvChromaRange, YuvSourceChannels};
#[cfg(target_arch = "x86")]
use std::arch::x86::*;
#[cfg(target_arch = "x86_64")]
use std::arch::x86_64::*;
pub(crate) fn sse_y_to_rgba_alpha_row<const DESTINATION_CHANNELS: u8>(
range: &YuvChromaRange,
transform: &CbCrInverseTransform<i32>,
y_plane: &[u8],
a_plane: &[u8],
rgba: &mut [u8],
start_cx: usize,
width: usize,
) -> usize {
unsafe {
sse_y_to_rgba_alpha_row_impl::<DESTINATION_CHANNELS>(
range, transform, y_plane, a_plane, rgba, start_cx, width,
)
}
}
#[target_feature(enable = "sse4.1")]
unsafe fn sse_y_to_rgba_alpha_row_impl<const DESTINATION_CHANNELS: u8>(
range: &YuvChromaRange,
transform: &CbCrInverseTransform<i32>,
y_plane: &[u8],
a_plane: &[u8],
rgba: &mut [u8],
start_cx: usize,
width: usize,
) -> usize {
let destination_channels: YuvSourceChannels = DESTINATION_CHANNELS.into();
let channels = destination_channels.get_channels_count();
let mut cx = start_cx;
let y_ptr = y_plane.as_ptr();
let rgba_ptr = rgba.as_mut_ptr();
let y_corr = _mm_set1_epi8(range.bias_y as i8);
let v_luma_coeff = _mm_set1_epi16(transform.y_coef as i16);
let zeros = _mm_setzero_si128();
while cx + 16 < width {
let y_vl = _mm_loadu_si128(y_ptr.add(cx) as *const __m128i);
let a_values = _mm_loadu_si128(a_plane.get_unchecked(cx..).as_ptr() as *const __m128i);
let y_values = _mm_subs_epu8(y_vl, y_corr);
let vhl = _mm_expand8_hi_to_10(y_values);
let vll = _mm_expand8_lo_to_10(y_values);
let v_high = _mm_mulhrs_epi16(vhl, v_luma_coeff);
let v_low = _mm_mulhrs_epi16(vll, v_luma_coeff);
let v_values = _mm_packus_epi16(v_low, v_high);
let dst_shift = cx * channels;
_mm_store_interleave_rgb_for_yuv::<DESTINATION_CHANNELS>(
rgba_ptr.add(dst_shift),
v_values,
v_values,
v_values,
a_values,
);
cx += 16;
}
while cx + 8 < width {
let y_values = _mm_subs_epi8(_mm_loadu_si64(y_ptr.add(cx)), y_corr);
let a_values = _mm_loadu_si64(a_plane.get_unchecked(cx..).as_ptr());
let v_low = _mm_mulhrs_epi16(_mm_expand8_lo_to_10(y_values), v_luma_coeff);
let v_values = _mm_packus_epi16(v_low, zeros);
let dst_shift = cx * channels;
_mm_store_interleave_half_rgb_for_yuv::<DESTINATION_CHANNELS>(
rgba_ptr.add(dst_shift),
v_values,
v_values,
v_values,
a_values,
);
cx += 8;
}
cx
}