Update player module exports

This commit is contained in:
2026-03-19 01:08:57 +08:00
parent 60dd44825f
commit 52eeaa1004

View File

@@ -1,8 +1,11 @@
//! 視頻播放模組 //! Player module
//!
//! Video playback, frame decoding, and rendering
mod video; pub mod video;
mod audio; pub mod ffmpeg;
mod ffmpeg; pub mod renderer;
mod controls; pub mod state;
pub use video::VideoPlayer; pub use video::Video;
pub use state::{PlayerState, PlaybackState};