yuv 0.8.13

High performance utilities for YUV format handling and conversion.
Documentation
/*
 * Copyright (c) Radzivon Bartoshyk, 10/2024. 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::sse::{_mm_load_deinterleave_rgb_for_yuv, sse_pairwise_avg_epi8_j};
use crate::yuv_support::{
    CbCrForwardTransform, YuvChromaRange, YuvChromaSubsampling, YuvNVOrder, YuvSourceChannels,
};
#[cfg(target_arch = "x86")]
use std::arch::x86::*;
#[cfg(target_arch = "x86_64")]
use std::arch::x86_64::*;

pub(crate) fn sse_rgba_to_nv_row<
    const ORIGIN_CHANNELS: u8,
    const UV_ORDER: u8,
    const SAMPLING: u8,
    const PRECISION: i32,
>(
    y_plane: &mut [u8],
    uv_plane: &mut [u8],
    rgba: &[u8],
    width: u32,
    range: &YuvChromaRange,
    transform: &CbCrForwardTransform<i32>,
    start_cx: usize,
    start_ux: usize,
) -> ProcessedOffset {
    unsafe {
        sse_rgba_to_nv_row_impl::<ORIGIN_CHANNELS, UV_ORDER, SAMPLING, PRECISION>(
            y_plane, uv_plane, rgba, width, range, transform, start_cx, start_ux,
        )
    }
}

#[inline(always)]
unsafe fn encode_16_part<
    const ORIGIN_CHANNELS: u8,
    const UV_ORDER: u8,
    const SAMPLING: u8,
    const PRECISION: i32,
>(
    src: &[u8],
    y_dst: &mut [u8],
    uv_dst: &mut [u8],
    range: &YuvChromaRange,
    transform: &CbCrForwardTransform<i32>,
) {
    let order: YuvNVOrder = UV_ORDER.into();
    let chroma_subsampling: YuvChromaSubsampling = SAMPLING.into();

    let (r_values, g_values, b_values) =
        _mm_load_deinterleave_rgb_for_yuv::<ORIGIN_CHANNELS>(src.as_ptr());

    const V_S: i32 = 4;
    const A_E: i32 = 2;
    let y_bias = _mm_set1_epi16(range.bias_y as i16 * (1 << A_E));
    let v_yr = _mm_set1_epi16(transform.yr as i16);
    let v_yg = _mm_set1_epi16(transform.yg as i16);
    let v_yb = _mm_set1_epi16(transform.yb as i16);

    let rl = _mm_unpacklo_epi8(r_values, r_values);
    let rh = _mm_unpackhi_epi8(r_values, r_values);
    let gl = _mm_unpacklo_epi8(g_values, g_values);
    let gh = _mm_unpackhi_epi8(g_values, g_values);
    let bl = _mm_unpacklo_epi8(b_values, b_values);
    let bh = _mm_unpackhi_epi8(b_values, b_values);

    let r_low = _mm_srli_epi16::<V_S>(rl);
    let r_high = _mm_srli_epi16::<V_S>(rh);
    let g_low = _mm_srli_epi16::<V_S>(gl);
    let g_high = _mm_srli_epi16::<V_S>(gh);
    let b_low = _mm_srli_epi16::<V_S>(bl);
    let b_high = _mm_srli_epi16::<V_S>(bh);

    let rlc = _mm_mulhrs_epi16(r_low, v_yr);
    let glc = _mm_mulhrs_epi16(g_low, v_yg);
    let blc = _mm_mulhrs_epi16(b_low, v_yb);
    let rhc = _mm_mulhrs_epi16(r_high, v_yr);
    let ghc = _mm_mulhrs_epi16(g_high, v_yg);
    let bhc = _mm_mulhrs_epi16(b_high, v_yb);

    let ylc = _mm_add_epi16(rlc, glc);
    let yhc = _mm_add_epi16(rhc, ghc);
    let ylw = _mm_add_epi16(ylc, blc);
    let yhw = _mm_add_epi16(yhc, bhc);

    let ylw0 = _mm_add_epi16(y_bias, ylw);
    let yhw0 = _mm_add_epi16(y_bias, yhw);

    let y_l = _mm_srli_epi16::<A_E>(ylw0);
    let y_h = _mm_srli_epi16::<A_E>(yhw0);

    let y_yuv = _mm_packus_epi16(y_l, y_h);
    _mm_storeu_si128(y_dst.as_mut_ptr() as *mut __m128i, y_yuv);

    let uv_bias = _mm_set1_epi16(range.bias_uv as i16 * (1 << A_E) + (1 << (A_E - 1)) - 1);
    let v_cb_r = _mm_set1_epi16(transform.cb_r as i16);
    let v_cb_g = _mm_set1_epi16(transform.cb_g as i16);
    let v_cb_b = _mm_set1_epi16(transform.cb_b as i16);
    let v_cr_r = _mm_set1_epi16(transform.cr_r as i16);
    let v_cr_g = _mm_set1_epi16(transform.cr_g as i16);
    let v_cr_b = _mm_set1_epi16(transform.cr_b as i16);

    if chroma_subsampling == YuvChromaSubsampling::Yuv444 {
        let cblc = _mm_mulhrs_epi16(r_low, v_cb_r);
        let cbgc = _mm_mulhrs_epi16(g_low, v_cb_g);
        let crlc = _mm_mulhrs_epi16(r_low, v_cr_r);
        let crgc = _mm_mulhrs_epi16(g_low, v_cr_g);
        let cbbc = _mm_mulhrs_epi16(b_low, v_cb_b);
        let crbc = _mm_mulhrs_epi16(b_low, v_cr_b);

        let cbbl = _mm_add_epi16(cblc, cbgc);
        let crrl = _mm_add_epi16(crlc, crgc);

        let cbbw = _mm_add_epi16(cbbl, cbbc);
        let crrw = _mm_add_epi16(crrl, crbc);

        let cb_l = _mm_srli_epi16::<A_E>(_mm_add_epi16(uv_bias, cbbw));
        let cr_l = _mm_srli_epi16::<A_E>(_mm_add_epi16(uv_bias, crrw));
        let cb_h = _mm_srli_epi16::<A_E>(_mm_add_epi16(
            uv_bias,
            _mm_add_epi16(
                _mm_add_epi16(
                    _mm_mulhrs_epi16(r_high, v_cb_r),
                    _mm_mulhrs_epi16(g_high, v_cb_g),
                ),
                _mm_mulhrs_epi16(b_high, v_cb_b),
            ),
        ));
        let cr_h = _mm_srli_epi16::<A_E>(_mm_add_epi16(
            uv_bias,
            _mm_add_epi16(
                _mm_add_epi16(
                    _mm_mulhrs_epi16(r_high, v_cr_r),
                    _mm_mulhrs_epi16(g_high, v_cr_g),
                ),
                _mm_mulhrs_epi16(b_high, v_cr_b),
            ),
        ));

        let cb = _mm_packus_epi16(cb_l, cb_h);
        let cr = _mm_packus_epi16(cr_l, cr_h);

        let row0 = match order {
            YuvNVOrder::UV => _mm_unpacklo_epi8(cb, cr),
            YuvNVOrder::VU => _mm_unpacklo_epi8(cr, cb),
        };
        let row1 = match order {
            YuvNVOrder::UV => _mm_unpackhi_epi8(cb, cr),
            YuvNVOrder::VU => _mm_unpackhi_epi8(cr, cb),
        };

        _mm_storeu_si128(uv_dst.as_mut_ptr() as *mut __m128i, row0);
        _mm_storeu_si128(uv_dst.as_mut_ptr().add(16) as *mut __m128i, row1);
    } else if chroma_subsampling == YuvChromaSubsampling::Yuv422
        || (chroma_subsampling == YuvChromaSubsampling::Yuv420)
    {
        let r1 = sse_pairwise_avg_epi8_j(r_values, 1 << (16 - V_S - 8 - 1));
        let g1 = sse_pairwise_avg_epi8_j(g_values, 1 << (16 - V_S - 8 - 1));
        let b1 = sse_pairwise_avg_epi8_j(b_values, 1 << (16 - V_S - 8 - 1));

        let cbrc = _mm_mulhrs_epi16(r1, v_cb_r);
        let crrc = _mm_mulhrs_epi16(r1, v_cr_r);
        let cbgc = _mm_mulhrs_epi16(g1, v_cb_g);
        let crgc = _mm_mulhrs_epi16(g1, v_cr_g);
        let cbbc = _mm_mulhrs_epi16(b1, v_cb_b);
        let crbc = _mm_mulhrs_epi16(b1, v_cr_b);

        let cbo = _mm_add_epi16(cbrc, cbgc);
        let cro = _mm_add_epi16(crrc, crgc);

        let cbl = _mm_add_epi16(cbo, cbbc);
        let crl = _mm_add_epi16(cro, crbc);

        let cbk = _mm_srli_epi16::<A_E>(_mm_add_epi16(uv_bias, cbl));
        let crk = _mm_srli_epi16::<A_E>(_mm_add_epi16(uv_bias, crl));

        let cb = _mm_packus_epi16(cbk, cbk);
        let cr = _mm_packus_epi16(crk, crk);

        let row0 = match order {
            YuvNVOrder::UV => _mm_unpacklo_epi8(cb, cr),
            YuvNVOrder::VU => _mm_unpacklo_epi8(cr, cb),
        };
        _mm_storeu_si128(uv_dst.as_mut_ptr() as *mut __m128i, row0);
    }
}

#[target_feature(enable = "sse4.1")]
unsafe fn sse_rgba_to_nv_row_impl<
    const ORIGIN_CHANNELS: u8,
    const UV_ORDER: u8,
    const SAMPLING: u8,
    const PRECISION: i32,
>(
    y_plane: &mut [u8],
    uv_plane: &mut [u8],
    rgba: &[u8],
    width: u32,
    range: &YuvChromaRange,
    transform: &CbCrForwardTransform<i32>,
    start_cx: usize,
    start_ux: usize,
) -> ProcessedOffset {
    let chroma_subsampling: YuvChromaSubsampling = SAMPLING.into();
    let source_channels: YuvSourceChannels = ORIGIN_CHANNELS.into();
    let channels = source_channels.get_channels_count();

    let mut cx = start_cx;
    let mut uv_x = start_ux;

    while cx + 16 < width as usize {
        let px = cx * channels;
        encode_16_part::<ORIGIN_CHANNELS, UV_ORDER, SAMPLING, PRECISION>(
            rgba.get_unchecked(px..),
            y_plane.get_unchecked_mut(cx..),
            uv_plane.get_unchecked_mut(uv_x..),
            range,
            transform,
        );

        if chroma_subsampling == YuvChromaSubsampling::Yuv444 {
            uv_x += 32;
        } else if chroma_subsampling == YuvChromaSubsampling::Yuv422
            || (chroma_subsampling == YuvChromaSubsampling::Yuv420)
        {
            uv_x += 16;
        }

        cx += 16;
    }

    if cx < width as usize {
        let diff = width as usize - cx;
        assert!(diff <= 16);

        let mut src_buffer: [u8; 16 * 4] = [0; 16 * 4];
        let mut y_buffer0: [u8; 16] = [0; 16];
        let mut uv_buffer: [u8; 16 * 2] = [0; 16 * 2];

        std::ptr::copy_nonoverlapping(
            rgba.get_unchecked(cx * channels..).as_ptr(),
            src_buffer.as_mut_ptr().cast(),
            diff * channels,
        );

        // Replicate last item to one more position for subsampling
        if chroma_subsampling != YuvChromaSubsampling::Yuv444 && diff % 2 != 0 {
            let lst = (width as usize - 1) * channels;
            let last_items = rgba.get_unchecked(lst..(lst + channels));
            let dvb = diff * channels;
            let dst = src_buffer.get_unchecked_mut(dvb..(dvb + channels));
            for (dst, src) in dst.iter_mut().zip(last_items) {
                *dst = *src;
            }
        }

        encode_16_part::<ORIGIN_CHANNELS, UV_ORDER, SAMPLING, PRECISION>(
            src_buffer.as_slice(),
            y_buffer0.as_mut_slice(),
            uv_buffer.as_mut_slice(),
            range,
            transform,
        );

        std::ptr::copy_nonoverlapping(
            y_buffer0.as_ptr().cast(),
            y_plane.get_unchecked_mut(cx..).as_mut_ptr(),
            diff,
        );

        let ux_size = match chroma_subsampling {
            YuvChromaSubsampling::Yuv420 | YuvChromaSubsampling::Yuv422 => diff.div_ceil(2) * 2,
            YuvChromaSubsampling::Yuv444 => diff * 2,
        };

        std::ptr::copy_nonoverlapping(
            uv_buffer.as_ptr().cast(),
            uv_plane.get_unchecked_mut(uv_x..).as_mut_ptr(),
            ux_size,
        );

        cx += diff;
        uv_x += ux_size;
    }

    ProcessedOffset { cx, ux: uv_x }
}