// SPDX-FileCopyrightText: Copyright (c) 2026 Mike Li/Mikewolfli/Wei Li(mikewolfli@163.com)
// SPDX-License-Identifier: MIT
//! Audio module — format detection, decoding, encoding, sample processing, and normalization.
//!
//! # Reachability
//!
//! **State:** Reserved: a complete audio subsystem with no production consumer and no example. Build it only under `--features audio`. Removal condition: when no audio backend is planned, or when a consumer wires it to a playback pipeline.
pub use ;
pub use encode;
pub use AudioEngine;
pub use AudioFormat;
pub use normalize;
pub use resample;
pub use AudioBuffer;
pub use ffmpeg_encode;
pub use AudioOutput;