Skip to content

Commit

Permalink
AVX + SSE improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed May 21, 2024
1 parent ca27f4e commit ad366d0
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/yuv_to_rgba.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ use crate::internals::ProcessedOffset;
use crate::yuv_support::*;
#[cfg(target_arch = "aarch64")]
#[cfg(target_feature = "neon")]
use std::arch::aarch64::{
uint8x16x3_t, uint8x16x4_t, uint8x8_t, vcombine_u8, vdup_n_u8, vdupq_n_s16, vdupq_n_u8,
vget_high_u8, vget_low_u8, vld1_u8, vld1q_u8, vmaxq_s16, vmovl_u8, vmull_high_u8, vmull_u8,
vmulq_s16, vqaddq_s16, vqshrun_n_s16, vreinterpretq_s16_u16, vst3q_u8, vst4q_u8, vsubq_s16,
vsubq_u8, vzip1_u8, vzip2_u8,
};
use std::arch::aarch64::*;
#[cfg(target_arch = "x86_64")]
#[allow(unused_imports)]
use std::arch::x86_64::*;
Expand Down

0 comments on commit ad366d0

Please sign in to comment.