2025-11-03 06:55:45 +01:00
|
|
|
//! Sinks d'extension pour pmoaudio
|
|
|
|
|
//!
|
|
|
|
|
//! Ce module contient des sinks qui dépendent de multiples crates
|
|
|
|
|
//! et ne peuvent pas être placés directement dans pmoaudio sans créer
|
|
|
|
|
//! de dépendances cycliques.
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "cache-sink")]
|
|
|
|
|
mod flac_cache_sink;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "cache-sink")]
|
|
|
|
|
pub use flac_cache_sink::{FlacCacheSink, FlacCacheSinkStats, TrackStats};
|
2025-11-11 19:27:39 +00:00
|
|
|
|
|
|
|
|
#[cfg(feature = "http-stream")]
|
|
|
|
|
mod streaming_flac_sink;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "http-stream")]
|
|
|
|
|
pub use streaming_flac_sink::{StreamingFlacSink, StreamHandle, MetadataSnapshot, FlacClientStream, IcyClientStream};
|