wip: AudioEngine (new jack init)

This commit is contained in:
🪞👃🪞 2024-11-03 02:44:58 +02:00
parent 98cf8da424
commit 2303b258f6
5 changed files with 108 additions and 80 deletions

View file

@ -391,7 +391,10 @@ impl Default for Phrase {
impl PartialEq for Phrase { fn eq (&self, other: &Self) -> bool { self.uuid == other.uuid } }
impl Eq for Phrase {}
impl PhrasePlayer {
pub fn new (clock: &Arc<TransportTime>) -> Self {
pub fn new (
jack: &Arc<JackClient>,
clock: &Arc<TransportTime>
) -> Self {
Self {
clock: clock.clone(),
phrase: None,