use num_traits::ToPrimitive;
use v_frame::pixel::Pixel;
use crate::{
data::{
mc::FilterMode,
plane::{PlaneRegionMut, PlaneSlice},
},
math::round_shift,
};
const SUBPEL_FILTER_SIZE: usize = 8;
const SUBPEL_FILTERS: [[[i32; SUBPEL_FILTER_SIZE]; 16]; 6] = [
[
[0, 0, 0, 128, 0, 0, 0, 0],
[0, 2, -6, 126, 8, -2, 0, 0],
[0, 2, -10, 122, 18, -4, 0, 0],
[0, 2, -12, 116, 28, -8, 2, 0],
[0, 2, -14, 110, 38, -10, 2, 0],
[0, 2, -14, 102, 48, -12, 2, 0],
[0, 2, -16, 94, 58, -12, 2, 0],
[0, 2, -14, 84, 66, -12, 2, 0],
[0, 2, -14, 76, 76, -14, 2, 0],
[0, 2, -12, 66, 84, -14, 2, 0],
[0, 2, -12, 58, 94, -16, 2, 0],
[0, 2, -12, 48, 102, -14, 2, 0],
[0, 2, -10, 38, 110, -14, 2, 0],
[0, 2, -8, 28, 116, -12, 2, 0],
[0, 0, -4, 18, 122, -10, 2, 0],
[0, 0, -2, 8, 126, -6, 2, 0],
],
[
[0, 0, 0, 128, 0, 0, 0, 0],
[0, 2, 28, 62, 34, 2, 0, 0],
[0, 0, 26, 62, 36, 4, 0, 0],
[0, 0, 22, 62, 40, 4, 0, 0],
[0, 0, 20, 60, 42, 6, 0, 0],
[0, 0, 18, 58, 44, 8, 0, 0],
[0, 0, 16, 56, 46, 10, 0, 0],
[0, -2, 16, 54, 48, 12, 0, 0],
[0, -2, 14, 52, 52, 14, -2, 0],
[0, 0, 12, 48, 54, 16, -2, 0],
[0, 0, 10, 46, 56, 16, 0, 0],
[0, 0, 8, 44, 58, 18, 0, 0],
[0, 0, 6, 42, 60, 20, 0, 0],
[0, 0, 4, 40, 62, 22, 0, 0],
[0, 0, 4, 36, 62, 26, 0, 0],
[0, 0, 2, 34, 62, 28, 2, 0],
],
[
[0, 0, 0, 128, 0, 0, 0, 0],
[-2, 2, -6, 126, 8, -2, 2, 0],
[-2, 6, -12, 124, 16, -6, 4, -2],
[-2, 8, -18, 120, 26, -10, 6, -2],
[-4, 10, -22, 116, 38, -14, 6, -2],
[-4, 10, -22, 108, 48, -18, 8, -2],
[-4, 10, -24, 100, 60, -20, 8, -2],
[-4, 10, -24, 90, 70, -22, 10, -2],
[-4, 12, -24, 80, 80, -24, 12, -4],
[-2, 10, -22, 70, 90, -24, 10, -4],
[-2, 8, -20, 60, 100, -24, 10, -4],
[-2, 8, -18, 48, 108, -22, 10, -4],
[-2, 6, -14, 38, 116, -22, 10, -4],
[-2, 6, -10, 26, 120, -18, 8, -2],
[-2, 4, -6, 16, 124, -12, 6, -2],
[0, 2, -2, 8, 126, -6, 2, -2],
],
[
[0, 0, 0, 128, 0, 0, 0, 0],
[0, 0, 0, 120, 8, 0, 0, 0],
[0, 0, 0, 112, 16, 0, 0, 0],
[0, 0, 0, 104, 24, 0, 0, 0],
[0, 0, 0, 96, 32, 0, 0, 0],
[0, 0, 0, 88, 40, 0, 0, 0],
[0, 0, 0, 80, 48, 0, 0, 0],
[0, 0, 0, 72, 56, 0, 0, 0],
[0, 0, 0, 64, 64, 0, 0, 0],
[0, 0, 0, 56, 72, 0, 0, 0],
[0, 0, 0, 48, 80, 0, 0, 0],
[0, 0, 0, 40, 88, 0, 0, 0],
[0, 0, 0, 32, 96, 0, 0, 0],
[0, 0, 0, 24, 104, 0, 0, 0],
[0, 0, 0, 16, 112, 0, 0, 0],
[0, 0, 0, 8, 120, 0, 0, 0],
],
[
[0, 0, 0, 128, 0, 0, 0, 0],
[0, 0, -4, 126, 8, -2, 0, 0],
[0, 0, -8, 122, 18, -4, 0, 0],
[0, 0, -10, 116, 28, -6, 0, 0],
[0, 0, -12, 110, 38, -8, 0, 0],
[0, 0, -12, 102, 48, -10, 0, 0],
[0, 0, -14, 94, 58, -10, 0, 0],
[0, 0, -12, 84, 66, -10, 0, 0],
[0, 0, -12, 76, 76, -12, 0, 0],
[0, 0, -10, 66, 84, -12, 0, 0],
[0, 0, -10, 58, 94, -14, 0, 0],
[0, 0, -10, 48, 102, -12, 0, 0],
[0, 0, -8, 38, 110, -12, 0, 0],
[0, 0, -6, 28, 116, -10, 0, 0],
[0, 0, -4, 18, 122, -8, 0, 0],
[0, 0, -2, 8, 126, -4, 0, 0],
],
[
[0, 0, 0, 128, 0, 0, 0, 0],
[0, 0, 30, 62, 34, 2, 0, 0],
[0, 0, 26, 62, 36, 4, 0, 0],
[0, 0, 22, 62, 40, 4, 0, 0],
[0, 0, 20, 60, 42, 6, 0, 0],
[0, 0, 18, 58, 44, 8, 0, 0],
[0, 0, 16, 56, 46, 10, 0, 0],
[0, 0, 14, 54, 48, 12, 0, 0],
[0, 0, 12, 52, 52, 12, 0, 0],
[0, 0, 12, 48, 54, 14, 0, 0],
[0, 0, 10, 46, 56, 16, 0, 0],
[0, 0, 8, 44, 58, 18, 0, 0],
[0, 0, 6, 42, 60, 20, 0, 0],
[0, 0, 4, 40, 62, 22, 0, 0],
[0, 0, 4, 36, 62, 26, 0, 0],
[0, 0, 2, 34, 62, 30, 0, 0],
],
];
#[cfg_attr(
all(asm_x86_64, any(target_feature = "ssse3", target_feature = "avx2")),
cold
)]
#[cfg_attr(asm_neon, cold)]
pub fn put_8tap_internal<T: Pixel>(
dst: &mut PlaneRegionMut<'_, T>,
src: PlaneSlice<'_, T>,
width: usize,
height: usize,
col_frac: i32,
row_frac: i32,
bit_depth: usize,
) {
assert_eq!(height & 1, 0);
assert!(width.is_power_of_two() && (2..=128).contains(&width));
let ref_stride = src.plane.geometry().stride.get();
let y_filter = get_filter(row_frac, height);
let x_filter = get_filter(col_frac, width);
let max_sample_val = (1 << bit_depth) - 1;
let intermediate_bits = 4 - if bit_depth == 12 { 2 } else { 0 };
match (col_frac, row_frac) {
(0, 0) => {
for r in 0..height {
let src_slice = &src[r];
let dst_slice = &mut dst[r];
dst_slice[..width].copy_from_slice(&src_slice[..width]);
}
}
(0, _) => {
let offset_slice = src.go_up(3);
for r in 0..height {
let src_slice = &offset_slice[r];
let dst_slice = &mut dst[r];
for c in 0..width {
dst_slice[c] = T::from(
round_shift(
unsafe { run_filter(src_slice[c..].as_ptr(), ref_stride, y_filter) },
7,
)
.clamp(0, max_sample_val),
)
.expect("value should fit in Pixel");
}
}
}
(_, 0) => {
let offset_slice = src.go_left(3);
for r in 0..height {
let src_slice = &offset_slice[r];
let dst_slice = &mut dst[r];
for c in 0..width {
dst_slice[c] = T::from(
round_shift(
round_shift(
unsafe { run_filter(src_slice[c..].as_ptr(), 1, x_filter) },
7 - intermediate_bits,
),
intermediate_bits,
)
.clamp(0, max_sample_val),
)
.expect("value should fit in Pixel");
}
}
}
(_, _) => {
let mut intermediate: [i16; 8 * (128 + 7)] = [0; 8 * (128 + 7)];
let offset_slice = src.go_left(3).go_up(3);
for cg in (0..width).step_by(8) {
for r in 0..height + 7 {
let src_slice = &offset_slice[r];
for c in cg..(cg + 8).min(width) {
intermediate[8 * r + (c - cg)] = round_shift(
unsafe { run_filter(src_slice[c..].as_ptr(), 1, x_filter) },
7 - intermediate_bits,
) as i16;
}
}
for r in 0..height {
let dst_slice = &mut dst[r];
for c in cg..(cg + 8).min(width) {
dst_slice[c] = T::from(
round_shift(
unsafe {
run_filter(intermediate[8 * r + c - cg..].as_ptr(), 8, y_filter)
},
7 + intermediate_bits,
)
.clamp(0, max_sample_val),
)
.expect("value should fit in Pixel");
}
}
}
}
}
}
fn get_filter(frac: i32, length: usize) -> [i32; SUBPEL_FILTER_SIZE] {
const MODE: FilterMode = FilterMode::REGULAR;
let filter_idx = if MODE == FilterMode::BILINEAR || length > 4 {
MODE as usize
} else {
(MODE as usize).min(1) + 4
};
SUBPEL_FILTERS[filter_idx][frac as usize]
}
unsafe fn run_filter<T: ToPrimitive>(src: *const T, stride: usize, filter: [i32; 8]) -> i32 {
filter
.iter()
.enumerate()
.map(|(i, f)| {
unsafe {
let p = src.add(i * stride);
f * (*p).to_i32().expect("value should fit in i32")
}
})
.sum::<i32>()
}