Skip to main content

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
6pub mod builder;
7pub mod decoder_inner;
8
9pub use builder::{ImageDecoder, ImageDecoderBuilder, ImageFrameIterator};