fix formatting
This commit is contained in:
parent
d67529be1b
commit
e0f51d04a2
3 changed files with 6 additions and 11 deletions
|
@ -3,8 +3,8 @@
|
||||||
// See README.md and COPYING for details.
|
// See README.md and COPYING for details.
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
FeedbackFilter, GraphMessage, NodeOp, NodeProg, MAX_ALLOCATED_NODES,
|
FeedbackFilter, GraphMessage, NodeOp, NodeProg, MAX_ALLOCATED_NODES, MAX_AVAIL_TRACKERS,
|
||||||
MAX_AVAIL_TRACKERS, MAX_INPUTS, UNUSED_MONITOR_IDX,
|
MAX_INPUTS, UNUSED_MONITOR_IDX,
|
||||||
};
|
};
|
||||||
use crate::dsp::tracker::{PatternData, Tracker};
|
use crate::dsp::tracker::{PatternData, Tracker};
|
||||||
use crate::dsp::{node_factory, Node, NodeId, NodeInfo, ParamId, SAtom};
|
use crate::dsp::{node_factory, Node, NodeId, NodeInfo, ParamId, SAtom};
|
||||||
|
@ -245,12 +245,7 @@ impl SharedNodeConf {
|
||||||
}
|
}
|
||||||
|
|
||||||
(
|
(
|
||||||
Self {
|
Self { node_ctx_values, graph_update_prod: rb_graph_prod, monitor, drop_thread },
|
||||||
node_ctx_values,
|
|
||||||
graph_update_prod: rb_graph_prod,
|
|
||||||
monitor,
|
|
||||||
drop_thread,
|
|
||||||
},
|
|
||||||
SharedNodeExec {
|
SharedNodeExec {
|
||||||
node_ctx_values: exec_node_ctx_vals,
|
node_ctx_values: exec_node_ctx_vals,
|
||||||
graph_update_con: rb_graph_con,
|
graph_update_con: rb_graph_con,
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
// See README.md and COPYING for details.
|
// See README.md and COPYING for details.
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
DropMsg, GraphMessage, NodeProg, FB_DELAY_TIME_US, MAX_ALLOCATED_NODES,
|
DropMsg, GraphMessage, NodeProg, FB_DELAY_TIME_US, MAX_ALLOCATED_NODES, MAX_FB_DELAY_SIZE,
|
||||||
MAX_FB_DELAY_SIZE, MAX_SMOOTHERS, UNUSED_MONITOR_IDX,
|
MAX_SMOOTHERS, UNUSED_MONITOR_IDX,
|
||||||
};
|
};
|
||||||
use crate::dsp::{Node, NodeContext, NodeId, MAX_BLOCK_SIZE};
|
use crate::dsp::{Node, NodeContext, NodeId, MAX_BLOCK_SIZE};
|
||||||
use crate::monitor::{MonitorBackend, MON_SIG_CNT};
|
use crate::monitor::{MonitorBackend, MON_SIG_CNT};
|
||||||
|
|
|
@ -119,7 +119,7 @@ fn check_node_delay_2() {
|
||||||
vec![
|
vec![
|
||||||
// 10ms smoothing time for "inp"
|
// 10ms smoothing time for "inp"
|
||||||
0.001133, // 30ms delaytime just mixing the 0.5:
|
0.001133, // 30ms delaytime just mixing the 0.5:
|
||||||
0.5, 0.5, 0.5, // the delayed smoothing ramp (10ms):
|
0.5, 0.5, 0.5, // the delayed smoothing ramp (10ms):
|
||||||
0.951113, // the delay + input signal:
|
0.951113, // the delay + input signal:
|
||||||
1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0
|
1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue