ff-decode 0.13.0

Video and audio decoding - the Rust way
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Image decoding module.
//!
//! This module provides the image decoder implementation for decoding still
//! images (JPEG, PNG, BMP, TIFF, WebP) into [`VideoFrame`](ff_format::VideoFrame)s.

#[cfg(feature = "tokio")]
pub mod async_decoder;
pub mod builder;
pub mod decoder_inner;

#[cfg(feature = "tokio")]
pub use async_decoder::AsyncImageDecoder;
pub use builder::{ImageDecoder, ImageDecoderBuilder};