oximedia-codec 0.1.6

Video codec implementations for OxiMedia
Documentation
1
2
3
4
5
6
7
8
9
10
//! x86_64 SIMD implementations (AVX2 and AVX-512).
//!
//! This module provides optimized SIMD implementations for x86_64 processors
//! using AVX2 and AVX-512 instruction sets.

pub mod avx2;
pub mod avx512;

pub use avx2::Avx2Simd;
pub use avx512::Avx512Simd;