1 2 3 4 5 6 7 8 9 10
//! SIMD implementations for AV1 decode operations //! //! This module contains safe SIMD implementations using archmage tokens. #![allow(dead_code)] #![allow(unused_imports)] mod avg; pub use avg::*;