ff_decode/video/mod.rs
1//! Video decoding module.
2//!
3//! This module provides the video decoder implementation for extracting video
4//! frames from media files with hardware acceleration support.
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::AsyncVideoDecoder;
13pub use builder::{VideoDecoder, VideoDecoderBuilder};