Skip to content

Commit d797c6c

Browse files
authored
Merge pull request #389 from HEnquist/mixer_matrix
Mixer matrix
2 parents ebc57dd + 38fc788 commit d797c6c

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
New features:
33
- Add RACE processor.
44
- Add option for custom log filtering.
5-
- Allow larger buffer target levels.
65
Changes:
76
- Add microsecond delay unit.
7+
- Allow larger buffer target levels.
8+
- Change mixer config rules to not allow duplicated channels.
89

910
## v3.0.0
1011
New features:

src/mixer.rs

+18
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ impl Mixer {
108108
pub fn validate_mixer(mixer_config: &config::Mixer) -> Res<()> {
109109
let chan_in = mixer_config.channels.r#in;
110110
let chan_out = mixer_config.channels.out;
111+
let mut output_channels: Vec<usize> = Vec::with_capacity(chan_out);
112+
let mut input_channels: Vec<usize> = Vec::with_capacity(chan_in);
111113
for mapping in mixer_config.mapping.iter() {
112114
if mapping.dest >= chan_out {
113115
let msg = format!(
@@ -117,6 +119,15 @@ pub fn validate_mixer(mixer_config: &config::Mixer) -> Res<()> {
117119
);
118120
return Err(config::ConfigError::new(&msg).into());
119121
}
122+
if output_channels.contains(&mapping.dest) {
123+
let msg = format!(
124+
"There is more than one mapping for destination channel {}",
125+
mapping.dest,
126+
);
127+
return Err(config::ConfigError::new(&msg).into());
128+
}
129+
output_channels.push(mapping.dest);
130+
input_channels.clear();
120131
for source in mapping.sources.iter() {
121132
if source.channel >= chan_in {
122133
let msg = format!(
@@ -126,6 +137,13 @@ pub fn validate_mixer(mixer_config: &config::Mixer) -> Res<()> {
126137
);
127138
return Err(config::ConfigError::new(&msg).into());
128139
}
140+
if input_channels.contains(&source.channel) {
141+
let msg = format!(
142+
"Input channel {} is listed mote than once for destination channel {}",
143+
source.channel, mapping.dest,
144+
);
145+
return Err(config::ConfigError::new(&msg).into());
146+
}
129147
}
130148
}
131149
Ok(())

0 commit comments

Comments
 (0)