pocketstation 1.0.1

Source-aware desktop audio Session SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Realtime audio frame ownership.
//!
//! Platform and graph identities are intentionally separate from pooled audio
//! storage. The audio module remains specialized; arbitrary signals use the
//! asynchronous signal lane.

mod audio;
mod identity;
mod lineage;
mod platform;
mod pool;

pub use audio::*;
pub use identity::*;
pub use lineage::*;
pub use platform::Platform;
pub use pool::*;