playterm-player 0.1.0

Audio playback engine for playterm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod engine;
pub mod queue;
pub mod scrobble;
pub mod stream;
pub mod tap;

use std::collections::VecDeque;
use std::sync::{Arc, Mutex};

pub type SampleBuffer = Arc<Mutex<VecDeque<f32>>>;

pub use engine::{spawn_player, PlayerCommand, PlayerEvent};
pub use tap::SampleTap;