ace-player 0.1.0

ACE Player — High-Performance Rust Media Engine SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! DRM module — Phase 2: Widevine + forensic watermarking.
//! Enable with feature flag: `--features drm`

/// Widevine license acquisition (Phase 2).
#[cfg(feature = "drm")]
pub mod widevine;

/// Placeholder to satisfy mod declaration in lib.rs.
#[cfg(not(feature = "drm"))]
pub fn drm_enabled() -> bool {
    false
}