Skip to content

Commit

Permalink
AVX YUY2 to RGB
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed Sep 1, 2024
1 parent e687f08 commit d94bc07
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/yuy2_to_rgb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use crate::avx2::yuy2_to_rgb_avx;
#[cfg(all(target_arch = "aarch64", target_feature = "neon"))]
use crate::neon::yuy2_to_rgb_neon;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
use crate::sse::yuy2_to_rgb_sse;
use crate::yuv_support::{
get_inverse_transform, get_kr_kb, get_yuv_range, YuvSourceChannels, Yuy2Description,
Expand Down

0 comments on commit d94bc07

Please sign in to comment.