forked from grame-cncm/faust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportaudio.rs
175 lines (140 loc) · 6.69 KB
/
portaudio.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/************************************************************************
************************************************************************
FAUST Architecture File
Copyright (C) 2017-2020 GRAME, Centre National de Creation Musicale
---------------------------------------------------------------------
This is sample code. This file is provided as an example of minimal
FAUST architecture file. Redistribution and use in source and binary
forms, with or without modification, in part or in full are permitted.
In particular you can create a derived work of this FAUST architecture
and distribute that work under terms of your choice.
This sample code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
************************************************************************
************************************************************************/
#![allow(unused_parens)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(dead_code)]
#![allow(unused_variables)]
#![allow(unused_mut)]
#![allow(non_upper_case_globals)]
//! PortAudio architecture file
extern crate portaudio;
use portaudio as pa;
use std::io;
extern crate libm;
type F32 = f32;
type F64 = f64;
#[derive(Copy, Clone)]
pub struct ParamIndex(pub i32);
pub struct Soundfile<'a,T> {
fBuffers: &'a&'a T,
fLength: &'a i32,
fSR: &'a i32,
fOffset: &'a i32,
fChannels: i32
}
pub trait FaustDsp {
type T;
fn new() -> Self where Self: Sized;
fn metadata(&self, m: &mut dyn Meta);
fn get_sample_rate(&self) -> i32;
fn get_num_inputs(&self) -> i32;
fn get_num_outputs(&self) -> i32;
fn class_init(sample_rate: i32) where Self: Sized;
fn instance_reset_params(&mut self);
fn instance_clear(&mut self);
fn instance_constants(&mut self, sample_rate: i32);
fn instance_init(&mut self, sample_rate: i32);
fn init(&mut self, sample_rate: i32);
fn build_user_interface(&self, ui_interface: &mut dyn UI<Self::T>);
fn build_user_interface_static(ui_interface: &mut dyn UI<Self::T>) where Self: Sized;
fn get_param(&self, param: ParamIndex) -> Option<Self::T>;
fn set_param(&mut self, param: ParamIndex, value: Self::T);
fn compute(&mut self, count: i32, inputs: &[&[Self::T]], outputs: &mut[&mut[Self::T]]);
}
pub trait Meta {
// -- metadata declarations
fn declare(&mut self, key: &str, value: &str);
}
pub trait UI<T> {
// -- widget's layouts
fn open_tab_box(&mut self, label: &str);
fn open_horizontal_box(&mut self, label: &str);
fn open_vertical_box(&mut self, label: &str);
fn close_box(&mut self);
// -- active widgets
fn add_button(&mut self, label: &str, param: ParamIndex);
fn add_check_button(&mut self, label: &str, param: ParamIndex);
fn add_vertical_slider(&mut self, label: &str, param: ParamIndex, init: T, min: T, max: T, step: T);
fn add_horizontal_slider(&mut self, label: &str, param: ParamIndex, init: T, min: T, max: T, step: T);
fn add_num_entry(&mut self, label: &str, param: ParamIndex, init: T, min: T, max: T, step: T);
// -- passive widgets
fn add_horizontal_bargraph(&mut self, label: &str, param: ParamIndex, min: T, max: T);
fn add_vertical_bargraph(&mut self, label: &str, param: ParamIndex, min: T, max: T);
// -- metadata declarations
fn declare(&mut self, param: Option<ParamIndex>, key: &str, value: &str);
}
<<includeIntrinsic>>
<<includeclass>>
const CHANNELS: i32 = 2;
const SAMPLE_RATE: f64 = 44_100.0;
const FRAMES_PER_BUFFER: u32 = 64;
fn main() {
run().unwrap()
}
fn run() -> Result<(), pa::Error> {
let pa = pa::PortAudio::new()?;
// Allocation DSP on the heap
let mut dsp = Box::new(mydsp::new());
println!("Faust Rust code running with Portaudio: sample-rate = {} buffer-size = {}", SAMPLE_RATE, FRAMES_PER_BUFFER);
//Create a input/output stream with the same number of input and output channels
const INTERLEAVED: bool = false;// We want NON interleaved streams
let input_device = pa.default_input_device()?;
let output_device = pa.default_output_device()?;
let input_latency = pa.device_info(input_device)?.default_low_input_latency;
let output_latency = pa.device_info(output_device)?.default_low_input_latency;
let in_params = pa::StreamParameters::new(input_device, CHANNELS, INTERLEAVED, input_latency);
let out_params = pa::StreamParameters::new(output_device, CHANNELS, INTERLEAVED, output_latency);
let settings = pa::DuplexStreamSettings::new(in_params, out_params, SAMPLE_RATE, FRAMES_PER_BUFFER);
//This would have been interleaved:
//let mut settings = try!(pa.default_duplex_stream_settings(CHANNELS, CHANNELS, SAMPLE_RATE, FRAMES_PER_BUFFER));
println!("get_num_inputs: {}", dsp.get_num_inputs());
println!("get_num_outputs: {}", dsp.get_num_outputs());
// Init DSP with a given SR
dsp.init(SAMPLE_RATE as i32);
//settings.flags = pa::stream_flags::CLIP_OFF;
// This routine will be called by the PortAudio engine when audio is needed. It may called at
// interrupt level on some machines so don't do anything that could mess up the system like
// dynamic resource allocation or IO.
let callback = move |pa::DuplexStreamCallbackArgs { in_buffer, out_buffer, frames, time, .. } : pa::DuplexStreamCallbackArgs<f32, f32>| {
let out_buffr: &mut [*mut f32];
let in_buffr: & [*const f32];
//rust-portaudio does not support non-interleaved audio out of the box (but portaudio does)
unsafe {
let out_buffer: *mut *mut f32 = ::std::mem::transmute(out_buffer.get_unchecked_mut(0));
out_buffr = ::std::slice::from_raw_parts_mut(out_buffer, CHANNELS as usize);
let output0 = ::std::slice::from_raw_parts_mut(out_buffr[0], frames);
let output1 = ::std::slice::from_raw_parts_mut(out_buffr[1], frames);
let in_buffer: *const *const f32 = ::std::mem::transmute(in_buffer.get_unchecked(0));
in_buffr = ::std::slice::from_raw_parts(in_buffer, CHANNELS as usize);
let input0 = ::std::slice::from_raw_parts(in_buffr[0], frames);
let input1 = ::std::slice::from_raw_parts(in_buffr[1], frames);
let inputs = &[input0, input1];
let outputs = &mut [output0, output1];
dsp.compute(frames as i32, inputs, outputs);
}
pa::Continue
};
let mut stream = pa.open_non_blocking_stream(settings, callback)?;
stream.start()?;
// Wait for user input to quit
println!("Press enter/return to quit...");
let mut user_input = String::new();
io::stdin().read_line(&mut user_input).ok();
stream.stop()?;
stream.close()?;
Ok(())
}