jpeg-encoder 0.7.1

JPEG encoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod fdct;
mod ycbcr;

use crate::encoder::{AlignedBlock, Operations};
pub use fdct::fdct_avx2;
pub use ycbcr::*;

pub(crate) struct AVX2Operations;

impl Operations for AVX2Operations {
    #[inline(always)]
    fn fdct(data: &mut AlignedBlock) {
        fdct_avx2(data);
    }
}