define midi ins and audio outs in project

This commit is contained in:
🪞👃🪞 2024-07-12 19:20:57 +03:00
parent 58cd51dfbf
commit c4c1271c32
5 changed files with 56 additions and 35 deletions

View file

@ -56,10 +56,10 @@ pub struct App {
/// Paths to user directories
xdg: Option<Arc<XdgApp>>,
/// Main audio outputs.
audio_outs: Vec<Arc<Port<Unowned>>>,
pub audio_outs: Vec<Arc<Port<Unowned>>>,
/// Number of frames requested by process callback
chunk_size: usize,
/// Transport model and view.
pub transport: TransportToolbar,
}