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.
56pub mod builder;
7pub mod decoder_inner;
89pub use builder::{VideoDecoder, VideoDecoderBuilder, VideoFrameIterator};