Skip to content

Commit

Permalink
feat: expose low-level structures
Browse files Browse the repository at this point in the history
  • Loading branch information
mbillingr committed May 20, 2019
1 parent 3af1317 commit ed4da4e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,15 @@ it easy to implement arbitrary speaker configurations in the future.
mod bformat;
mod bmixer;
mod bstream;
pub mod constants;
mod renderer;
pub mod sources;

use crate::bmixer::BmixerComposer;
pub use crate::bstream::{BstreamConfig, SoundController};
pub use crate::renderer::{HrtfConfig, StereoConfig};
pub mod constants;
pub mod sources;
pub use bmixer::{bmixer, BmixerComposer, BstreamMixer};
pub use bstream::{bstream, Bstream, BstreamConfig, SoundController};
pub use renderer::{BstreamHrtfRenderer, BstreamStereoRenderer, HrtfConfig, StereoConfig};
pub use rodio;

use std::f32;
use std::sync::Arc;

Expand Down

0 comments on commit ed4da4e

Please sign in to comment.