ff-decode 0.13.0

Video and audio decoding - the Rust way
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Video decoding module.
//!
//! This module provides the video decoder implementation for extracting video
//! frames from media files with hardware acceleration support.

#[cfg(feature = "tokio")]
pub mod async_decoder;
pub mod builder;
pub mod decoder_inner;

#[cfg(feature = "tokio")]
pub use async_decoder::AsyncVideoDecoder;
pub use builder::{VideoDecoder, VideoDecoderBuilder};