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;
mod audio;
mod ffmpeg;
mod controls;
pub mod video;
pub mod ffmpeg;
pub mod renderer;
pub mod state;
pub use video::VideoPlayer;
pub use video::Video;
pub use state::{PlayerState, PlaybackState};