//! # Video Wallpaper Support
//!
//! Native video wallpaper playback with hardware-accelerated decoding.
//!
//! ## Architecture
//!
//! - **decoder**: FFmpeg-based video demuxing and decoding with hardware acceleration
//! - **scheduler**: PTS-based frame timing and presentation scheduling
//! - **gpu**: GPU adapter detection and selection
//! - **error**: Comprehensive error types for video operations
//!
//! ## Design Principles
//!
//! - Hardware-accelerated decoding (VAAPI, NVDEC) with software fallback
//! - Streaming architecture: bounded queues, no full video buffering
//! - Zero-copy or minimal-copy texture uploads
//! - PTS-based timing for accurate playback
//! - Seamless looping without restart
//! - Integration with existing transition system
pub use ;
pub use ;
pub use ;
pub use VideoPlayback;
pub use ;