Coverage Report

Created: 2026-08-14 08:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/rust/registry/src/index.crates.io-1949cf8c6b5b557f/jpeg-encoder-0.7.1/src/avx2.rs
Line
Count
Source
1
mod fdct;
2
mod ycbcr;
3
4
use crate::encoder::{AlignedBlock, Operations};
5
pub use fdct::fdct_avx2;
6
pub use ycbcr::*;
7
8
pub(crate) struct AVX2Operations;
9
10
impl Operations for AVX2Operations {
11
    #[inline(always)]
12
0
    fn fdct(data: &mut AlignedBlock) {
13
0
        fdct_avx2(data);
14
0
    }
15
}