@@ -108,6 +108,8 @@ impl Mixer {
108
108
pub fn validate_mixer ( mixer_config : & config:: Mixer ) -> Res < ( ) > {
109
109
let chan_in = mixer_config. channels . r#in ;
110
110
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) ;
111
113
for mapping in mixer_config. mapping . iter ( ) {
112
114
if mapping. dest >= chan_out {
113
115
let msg = format ! (
@@ -117,6 +119,15 @@ pub fn validate_mixer(mixer_config: &config::Mixer) -> Res<()> {
117
119
) ;
118
120
return Err ( config:: ConfigError :: new ( & msg) . into ( ) ) ;
119
121
}
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 ( ) ;
120
131
for source in mapping. sources . iter ( ) {
121
132
if source. channel >= chan_in {
122
133
let msg = format ! (
@@ -126,6 +137,13 @@ pub fn validate_mixer(mixer_config: &config::Mixer) -> Res<()> {
126
137
) ;
127
138
return Err ( config:: ConfigError :: new ( & msg) . into ( ) ) ;
128
139
}
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
+ }
129
147
}
130
148
}
131
149
Ok ( ( ) )
0 commit comments