Skip to main content

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
6pub mod builder;
7pub mod decoder_inner;
8
9pub use builder::{VideoDecoder, VideoDecoderBuilder, VideoFrameIterator};