#av1 #decoder #libaom #cest-lavif #unavif

aom-decode

Minimal safe wrapper for libaom AV1 decoder

7 releases

0.2.9 Apr 25, 2024
0.2.7 Nov 20, 2023
0.2.6 Jun 15, 2023
0.2.5 Jan 4, 2023
0.1.1 Nov 21, 2020

#715 in Images

Download history 194/week @ 2024-02-21 134/week @ 2024-02-28 104/week @ 2024-03-06 68/week @ 2024-03-13 70/week @ 2024-03-20 147/week @ 2024-03-27 91/week @ 2024-04-03 57/week @ 2024-04-10 125/week @ 2024-04-17 254/week @ 2024-04-24 141/week @ 2024-05-01 184/week @ 2024-05-08 207/week @ 2024-05-15 163/week @ 2024-05-22 80/week @ 2024-05-29 56/week @ 2024-06-05

526 downloads per month
Used in 8 crates (4 directly)

BSD-2-Clause

32KB
669 lines

Rust wrapper for AOMedia AV1 decoder

It's a minimal safe wrapper that allows decoding individual AV1 frames. It's meant for decoding AVIF images.

Usage

See examples/topng.rs for the full code.

You'll need the avif-parse crate to get AV1 data out of an AVIF file, and the yuv crate to convert YUV pixels into RGB.

let avif = avif_parse::read_avif(file)?;

let mut d = Decoder::new(&Config {
    threads: num_cpus::get(),
})?;

let img = d.decode_frame(&avif.primary_item)?;
match img.rows_iter()? {
    RowsIters::YuvPlanes8 {y,u,v,chroma_sampling} => {
        match chroma_sampling {
            color::ChromaSampling::Cs444 => {
                yuv_444(y, u, v).map(|px| {
                    // here's your YUV pixel
                });
            },
        }
    },
}

Dependencies

~20MB
~397K SLoC