yuv 0.8.13

High performance utilities for YUV format handling and conversion.
Documentation
/*
 * Copyright (c) Radzivon Bartoshyk, 1/2025. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1.  Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * 2.  Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * 3.  Neither the name of the copyright holder nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
use crate::internals::ProcessedOffset;
use crate::neon::utils::neon_vld_rgb_for_yuv;
use crate::yuv_support::{CbCrForwardTransform, YuvChromaRange, YuvSourceChannels};
use std::arch::aarch64::*;

#[inline(always)]
unsafe fn encode_16_part_prof420<const ORIGIN_CHANNELS: u8>(
    rgba0: &[u8],
    rgba1: &[u8],
    y_plane0: &mut [u8],
    y_plane1: &mut [u8],
    u_plane: &mut [u8],
    v_plane: &mut [u8],
    y_bias: int32x4_t,
    uv_bias: int32x4_t,
    v_weights: int16x8_t,
    v_cr_b: int16x8_t,
) {
    const PRECISION: i32 = 16;
    let (r_values0, g_values0, b_values0) = neon_vld_rgb_for_yuv::<ORIGIN_CHANNELS>(rgba0.as_ptr());
    let (r_values1, g_values1, b_values1) = neon_vld_rgb_for_yuv::<ORIGIN_CHANNELS>(rgba1.as_ptr());

    let r_high0 = vreinterpretq_s16_u16(vmovl_high_u8(r_values0));
    let g_high0 = vreinterpretq_s16_u16(vmovl_high_u8(g_values0));
    let b_high0 = vreinterpretq_s16_u16(vmovl_high_u8(b_values0));

    let r_h_low0 = vget_low_s16(r_high0);
    let g_h_low0 = vget_low_s16(g_high0);
    let b_h_low0 = vget_low_s16(b_high0);

    let mut y0_h_high = vqdmlal_high_laneq_s16::<0>(y_bias, r_high0, v_weights);
    let mut y0_h_low = vqdmlal_laneq_s16::<0>(y_bias, r_h_low0, v_weights);
    y0_h_high = vqdmlal_high_laneq_s16::<1>(y0_h_high, g_high0, v_weights);
    y0_h_low = vqdmlal_laneq_s16::<1>(y0_h_low, g_h_low0, v_weights);
    y0_h_high = vqdmlal_high_laneq_s16::<2>(y0_h_high, b_high0, v_weights);
    y0_h_low = vqdmlal_laneq_s16::<2>(y0_h_low, b_h_low0, v_weights);

    let y0_h_low = vqshrn_n_s32::<PRECISION>(y0_h_low);
    let y0_h_high = vqshrn_n_s32::<PRECISION>(y0_h_high);

    let y0_high = vreinterpretq_u16_s16(vcombine_s16(y0_h_low, y0_h_high));

    let r_high1 = vreinterpretq_s16_u16(vmovl_high_u8(r_values1));
    let g_high1 = vreinterpretq_s16_u16(vmovl_high_u8(g_values1));
    let b_high1 = vreinterpretq_s16_u16(vmovl_high_u8(b_values1));

    let r_h_low1 = vget_low_s16(r_high1);
    let g_h_low1 = vget_low_s16(g_high1);
    let b_h_low1 = vget_low_s16(b_high1);

    let mut y1_h_high = vqdmlal_high_laneq_s16::<0>(y_bias, r_high1, v_weights);
    let mut y1_h_low = vqdmlal_laneq_s16::<0>(y_bias, r_h_low1, v_weights);
    y1_h_high = vqdmlal_high_laneq_s16::<1>(y1_h_high, g_high1, v_weights);
    y1_h_low = vqdmlal_laneq_s16::<1>(y1_h_low, g_h_low1, v_weights);
    y1_h_high = vqdmlal_high_laneq_s16::<2>(y1_h_high, b_high1, v_weights);
    y1_h_low = vqdmlal_laneq_s16::<2>(y1_h_low, b_h_low1, v_weights);

    let y1_h_low = vqshrn_n_s32::<PRECISION>(y1_h_low);
    let y1_h_high = vqshrn_n_s32::<PRECISION>(y1_h_high);

    let y1_high = vreinterpretq_u16_s16(vcombine_s16(y1_h_low, y1_h_high));

    let r_low0 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(r_values0)));
    let g_low0 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(g_values0)));
    let b_low0 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(b_values0)));

    let r_l_low0 = vget_low_s16(r_low0);
    let g_l_low0 = vget_low_s16(g_low0);
    let b_l_low0 = vget_low_s16(b_low0);

    let mut y0_l_high = vqdmlal_high_laneq_s16::<0>(y_bias, r_low0, v_weights);
    let mut y0_l_low = vqdmlal_laneq_s16::<0>(y_bias, r_l_low0, v_weights);
    y0_l_high = vqdmlal_high_laneq_s16::<1>(y0_l_high, g_low0, v_weights);
    y0_l_low = vqdmlal_laneq_s16::<1>(y0_l_low, g_l_low0, v_weights);
    y0_l_high = vqdmlal_high_laneq_s16::<2>(y0_l_high, b_low0, v_weights);
    y0_l_low = vqdmlal_laneq_s16::<2>(y0_l_low, b_l_low0, v_weights);

    let y0_l_low = vqshrn_n_s32::<PRECISION>(y0_l_low);
    let y0_l_high = vqshrn_n_s32::<PRECISION>(y0_l_high);

    let y0_low = vreinterpretq_u16_s16(vcombine_s16(y0_l_low, y0_l_high));

    let r_low1 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(r_values1)));
    let g_low1 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(g_values1)));
    let b_low1 = vreinterpretq_s16_u16(vmovl_u8(vget_low_u8(b_values1)));

    let r_l_low1 = vget_low_s16(r_low1);
    let g_l_low1 = vget_low_s16(g_low1);
    let b_l_low1 = vget_low_s16(b_low1);

    let mut y1_l_high = vqdmlal_high_laneq_s16::<0>(y_bias, r_low1, v_weights);
    let mut y1_l_low = vqdmlal_laneq_s16::<0>(y_bias, r_l_low1, v_weights);
    y1_l_high = vqdmlal_high_laneq_s16::<1>(y1_l_high, g_low1, v_weights);
    y1_l_low = vqdmlal_laneq_s16::<1>(y1_l_low, g_l_low1, v_weights);
    y1_l_high = vqdmlal_high_laneq_s16::<2>(y1_l_high, b_low1, v_weights);
    y1_l_low = vqdmlal_laneq_s16::<2>(y1_l_low, b_l_low1, v_weights);

    let y1_l_low = vqshrn_n_s32::<PRECISION>(y1_l_low);
    let y1_l_high = vqshrn_n_s32::<PRECISION>(y1_l_high);

    let y1_low = vreinterpretq_u16_s16(vcombine_s16(y1_l_low, y1_l_high));

    let y00q = vmovn_u16(y0_low);
    let y01q = vmovn_u16(y0_high);
    let y10q = vmovn_u16(y1_low);
    let y11q = vmovn_u16(y1_high);
    let y0 = vcombine_u8(y00q, y01q);
    let y1 = vcombine_u8(y10q, y11q);
    vst1q_u8(y_plane0.as_mut_ptr(), y0);
    vst1q_u8(y_plane1.as_mut_ptr(), y1);

    let r1hvu = vrhaddq_u8(r_values0, r_values1);
    let g1hvu = vrhaddq_u8(g_values0, g_values1);
    let b1hvu = vrhaddq_u8(b_values0, b_values1);

    let r1hv = vpaddlq_u8(r1hvu);
    let g1hv = vpaddlq_u8(g1hvu);
    let b1hv = vpaddlq_u8(b1hvu);

    let r1 = vreinterpretq_s16_u16(vrshrq_n_u16::<1>(r1hv));
    let g1 = vreinterpretq_s16_u16(vrshrq_n_u16::<1>(g1hv));
    let b1 = vreinterpretq_s16_u16(vrshrq_n_u16::<1>(b1hv));

    let mut cb_h = vqdmlal_high_laneq_s16::<5>(uv_bias, b1, v_weights);
    let mut cb_l = vqdmlal_laneq_s16::<5>(uv_bias, vget_low_s16(b1), v_weights);
    let mut cr_h = vqdmlal_high_laneq_s16::<6>(uv_bias, r1, v_weights);
    let mut cr_l = vqdmlal_laneq_s16::<6>(uv_bias, vget_low_s16(r1), v_weights);

    cb_h = vqdmlal_high_laneq_s16::<4>(cb_h, g1, v_weights);
    cb_l = vqdmlal_laneq_s16::<4>(cb_l, vget_low_s16(g1), v_weights);
    cr_h = vqdmlal_high_laneq_s16::<7>(cr_h, g1, v_weights);
    cr_l = vqdmlal_laneq_s16::<7>(cr_l, vget_low_s16(g1), v_weights);

    cb_h = vqdmlal_high_laneq_s16::<3>(cb_h, r1, v_weights);
    cb_l = vqdmlal_laneq_s16::<3>(cb_l, vget_low_s16(r1), v_weights);
    cr_h = vqdmlal_high_laneq_s16::<0>(cr_h, b1, v_cr_b);
    cr_l = vqdmlal_laneq_s16::<0>(cr_l, vget_low_s16(b1), v_cr_b);

    let cb_l = vqshrn_n_s32::<PRECISION>(cb_l);
    let cb_h = vqshrn_n_s32::<PRECISION>(cb_h);
    let cr_l = vqshrn_n_s32::<PRECISION>(cr_l);
    let cr_h = vqshrn_n_s32::<PRECISION>(cr_h);

    let cb = vmovn_u16(vreinterpretq_u16_s16(vcombine_s16(cb_l, cb_h)));

    let cr = vmovn_u16(vreinterpretq_u16_s16(vcombine_s16(cr_l, cr_h)));

    vst1_u8(u_plane.as_mut_ptr(), cb);
    vst1_u8(v_plane.as_mut_ptr(), cr);
}

pub(crate) unsafe fn neon_rgba_to_yuv_prof420<const ORIGIN_CHANNELS: u8>(
    transform: &CbCrForwardTransform<i32>,
    range: &YuvChromaRange,
    y_plane0: &mut [u8],
    y_plane1: &mut [u8],
    u_plane: &mut [u8],
    v_plane: &mut [u8],
    rgba0: &[u8],
    rgba1: &[u8],
    start_cx: usize,
    start_ux: usize,
    width: usize,
) -> ProcessedOffset {
    let source_channels: YuvSourceChannels = ORIGIN_CHANNELS.into();
    let channels = source_channels.get_channels_count();

    const PRECISION: i32 = 16;

    let rounding_const_bias: i32 = (1 << (PRECISION - 1)) - 1;
    let bias_y = range.bias_y as i32 * (1 << PRECISION) + rounding_const_bias;
    let bias_uv = range.bias_uv as i32 * (1 << PRECISION) + rounding_const_bias;

    let u_ptr = u_plane;
    let v_ptr = v_plane;

    let y_bias = vdupq_n_s32(bias_y);
    let uv_bias = vdupq_n_s32(bias_uv);

    let weights_arr: [i16; 8] = [
        transform.yr as i16,
        transform.yg as i16,
        transform.yb as i16,
        transform.cb_r as i16,
        transform.cb_g as i16,
        transform.cb_b as i16,
        transform.cr_r as i16,
        transform.cr_g as i16,
    ];
    let v_weights = vld1q_s16(weights_arr.as_ptr());
    let v_cr_b = vdupq_n_s16(transform.cr_b as i16);

    let mut cx = start_cx;
    let mut ux = start_ux;

    while cx + 16 <= width {
        encode_16_part_prof420::<ORIGIN_CHANNELS>(
            rgba0.get_unchecked(cx * channels..),
            rgba1.get_unchecked(cx * channels..),
            y_plane0.get_unchecked_mut(cx..),
            y_plane1.get_unchecked_mut(cx..),
            u_ptr.get_unchecked_mut(ux..),
            v_ptr.get_unchecked_mut(ux..),
            y_bias,
            uv_bias,
            v_weights,
            v_cr_b,
        );

        ux += 8;
        cx += 16;
    }

    if cx < width {
        let diff = width - cx;
        assert!(diff <= 16);
        let mut src_buffer0: [u8; 16 * 4] = [0; 16 * 4];
        let mut src_buffer1: [u8; 16 * 4] = [0; 16 * 4];
        let mut y_buffer0: [u8; 16] = [0; 16];
        let mut y_buffer1: [u8; 16] = [0; 16];
        let mut u_buffer: [u8; 16] = [0; 16];
        let mut v_buffer: [u8; 16] = [0; 16];

        // Replicate last item to one more position for subsampling
        if diff % 2 != 0 {
            let lst = (width - 1) * channels;
            let last_items0 = rgba0.get_unchecked(lst..(lst + channels));
            let last_items1 = rgba1.get_unchecked(lst..(lst + channels));
            let dvb = diff * channels;
            let dst0 = src_buffer0.get_unchecked_mut(dvb..(dvb + channels));
            let dst1 = src_buffer1.get_unchecked_mut(dvb..(dvb + channels));
            for (dst, src) in dst0.iter_mut().zip(last_items0) {
                *dst = *src;
            }
            for (dst, src) in dst1.iter_mut().zip(last_items1) {
                *dst = *src;
            }
        }

        std::ptr::copy_nonoverlapping(
            rgba0.get_unchecked(cx * channels..).as_ptr(),
            src_buffer0.as_mut_ptr().cast(),
            diff * channels,
        );
        std::ptr::copy_nonoverlapping(
            rgba1.get_unchecked(cx * channels..).as_ptr(),
            src_buffer1.as_mut_ptr().cast(),
            diff * channels,
        );

        encode_16_part_prof420::<ORIGIN_CHANNELS>(
            src_buffer0.as_slice(),
            src_buffer1.as_slice(),
            y_buffer0.as_mut_slice(),
            y_buffer1.as_mut_slice(),
            u_buffer.as_mut_slice(),
            v_buffer.as_mut_slice(),
            y_bias,
            uv_bias,
            v_weights,
            v_cr_b,
        );

        let y_dst_0 = y_plane0.get_unchecked_mut(cx..);
        std::ptr::copy_nonoverlapping(y_buffer0.as_ptr(), y_dst_0.as_mut_ptr().cast(), diff);
        let y_dst_1 = y_plane1.get_unchecked_mut(cx..);
        std::ptr::copy_nonoverlapping(y_buffer1.as_ptr(), y_dst_1.as_mut_ptr().cast(), diff);

        cx += diff;

        let hv = diff.div_ceil(2);

        std::ptr::copy_nonoverlapping(
            u_buffer.as_ptr().cast(),
            u_ptr.get_unchecked_mut(ux..).as_mut_ptr(),
            hv,
        );
        std::ptr::copy_nonoverlapping(
            v_buffer.as_ptr().cast(),
            v_ptr.get_unchecked_mut(ux..).as_mut_ptr(),
            hv,
        );

        ux += hv;
    }

    ProcessedOffset { cx, ux }
}