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.
|
||||
|
||||
use super::{
|
||||
FeedbackFilter, GraphMessage, NodeOp, NodeProg, MAX_ALLOCATED_NODES,
|
||||
MAX_AVAIL_TRACKERS, MAX_INPUTS, UNUSED_MONITOR_IDX,
|
||||
FeedbackFilter, GraphMessage, NodeOp, NodeProg, MAX_ALLOCATED_NODES, MAX_AVAIL_TRACKERS,
|
||||
MAX_INPUTS, UNUSED_MONITOR_IDX,
|
||||
};
|
||||
use crate::dsp::tracker::{PatternData, Tracker};
|
||||
use crate::dsp::{node_factory, Node, NodeId, NodeInfo, ParamId, SAtom};
|
||||
|
@ -245,12 +245,7 @@ impl SharedNodeConf {
|
|||
}
|
||||
|
||||
(
|
||||
Self {
|
||||
node_ctx_values,
|
||||
graph_update_prod: rb_graph_prod,
|
||||
monitor,
|
||||
drop_thread,
|
||||
},
|
||||
Self { node_ctx_values, graph_update_prod: rb_graph_prod, monitor, drop_thread },
|
||||
SharedNodeExec {
|
||||
node_ctx_values: exec_node_ctx_vals,
|
||||
graph_update_con: rb_graph_con,
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
// See README.md and COPYING for details.
|
||||
|
||||
use super::{
|
||||
DropMsg, GraphMessage, NodeProg, FB_DELAY_TIME_US, MAX_ALLOCATED_NODES,
|
||||
MAX_FB_DELAY_SIZE, MAX_SMOOTHERS, UNUSED_MONITOR_IDX,
|
||||
DropMsg, GraphMessage, NodeProg, FB_DELAY_TIME_US, MAX_ALLOCATED_NODES, MAX_FB_DELAY_SIZE,
|
||||
MAX_SMOOTHERS, UNUSED_MONITOR_IDX,
|
||||
};
|
||||
use crate::dsp::{Node, NodeContext, NodeId, MAX_BLOCK_SIZE};
|
||||
use crate::monitor::{MonitorBackend, MON_SIG_CNT};
|
||||
|
|
|
@ -119,7 +119,7 @@ fn check_node_delay_2() {
|
|||
vec![
|
||||
// 10ms smoothing time for "inp"
|
||||
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:
|
||||
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