// Player module - Complete playback control system // TRACES: UR-003, UR-004, UR-005, UR-019, UR-023, UR-026 | // IR-003, IR-004, IR-006, IR-008 | // DR-001, DR-004, DR-005, DR-009, DR-028, DR-029, DR-047 pub mod autoplay; pub mod backend; pub mod events; pub mod media; pub mod queue; pub mod seek; pub mod session; pub mod sleep_timer; pub mod state; pub mod stream_end; #[cfg(test)] mod mpv_backend_test; // Platform-specific backends #[cfg(target_os = "android")] pub mod android; #[cfg(target_os = "linux")] pub mod mpv_backend; // Platforms with no native audio backend (e.g. Windows) render audio-only // playback through a webview