ff_decode/image/mod.rs
1//! Image decoding module.
2//!
3//! This module provides the image decoder implementation for decoding still
4//! images (JPEG, PNG, BMP, TIFF, WebP) into [`VideoFrame`](ff_format::VideoFrame)s.
5
6#[cfg(feature = "tokio")]
7pub mod async_decoder;
8pub mod builder;
9pub mod decoder_inner;
10
11#[cfg(feature = "tokio")]
12pub use async_decoder::AsyncImageDecoder;
13pub use builder::{ImageDecoder, ImageDecoderBuilder};