Skip to content

Commit

Permalink
Add some Default routing for Mix2
Browse files Browse the repository at this point in the history
  • Loading branch information
FrostyCoolSlug committed Oct 12, 2024
1 parent f882c92 commit fb52c2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions profile/src/components/mixer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ impl Mixers {
// Long List incoming, these are the routes enabled in the Default config file...
let mut mixer_table: RoutingTable = EnumMap::default();
mixer_table[InputChannels::Mic][OutputChannels::Broadcast] = 8192;
mixer_table[InputChannels::Mic][OutputChannels::StreamMix2] = 8192;
mixer_table[InputChannels::Mic][OutputChannels::ChatMic] = 8192;
mixer_table[InputChannels::Mic][OutputChannels::Headphones] = 8192;
mixer_table[InputChannels::Mic][OutputChannels::Sampler] = 8192;
Expand All @@ -66,6 +67,7 @@ impl Mixers {
mixer_table[InputChannels::System][OutputChannels::LineOut] = 8192;

mixer_table[InputChannels::Game][OutputChannels::Broadcast] = 8192;
mixer_table[InputChannels::Game][OutputChannels::StreamMix2] = 8192;
mixer_table[InputChannels::Game][OutputChannels::Headphones] = 8192;
mixer_table[InputChannels::Game][OutputChannels::LineOut] = 8192;

Expand All @@ -77,11 +79,13 @@ impl Mixers {
mixer_table[InputChannels::Music][OutputChannels::LineOut] = 8192;

mixer_table[InputChannels::Sample][OutputChannels::Broadcast] = 8192;
mixer_table[InputChannels::Sample][OutputChannels::StreamMix2] = 8192;
mixer_table[InputChannels::Sample][OutputChannels::ChatMic] = 8192;
mixer_table[InputChannels::Sample][OutputChannels::Headphones] = 8192;
mixer_table[InputChannels::Sample][OutputChannels::LineOut] = 8192;

mixer_table[InputChannels::Console][OutputChannels::Broadcast] = 8192;
mixer_table[InputChannels::Console][OutputChannels::StreamMix2] = 8192;
mixer_table[InputChannels::Console][OutputChannels::Headphones] = 8192;
mixer_table[InputChannels::Console][OutputChannels::LineOut] = 8192;

Expand Down

0 comments on commit fb52c2b

Please sign in to comment.