Fixed formatting.

This commit is contained in:
Michael Rogers
2022-04-11 18:12:11 -05:00
parent 62ca9c31a0
commit bd033f9e15
+5 -4
View File
@@ -345,7 +345,8 @@ public:
auto sink_name = get_default_sink_name(); auto sink_name = get_default_sink_name();
if(sink_name.empty()) { if(sink_name.empty()) {
BOOST_LOG(warning) << "Couldn't find an active sink"sv; BOOST_LOG(warning) << "Couldn't find an active sink"sv;
} else { }
else {
sink.host = sink_name; sink.host = sink_name;
} }
@@ -438,13 +439,13 @@ public:
// 1. Config sink // 1. Config sink
// 2. Last sink swapped to (Usually virtual in this case) // 2. Last sink swapped to (Usually virtual in this case)
// 3. Default Sink // 3. Default Sink
// An attempt was made to always use default to match the switching mechanic, // An attempt was made to always use default to match the switching mechanic,
// but this happens right after the swap so the default returned by PA was not // but this happens right after the swap so the default returned by PA was not
// the new one just set! // the new one just set!
auto sink_name = config::audio.sink; auto sink_name = config::audio.sink;
if(sink_name.empty()) sink_name = requested_sink; if(sink_name.empty()) sink_name = requested_sink;
if(sink_name.empty()) sink_name = get_default_sink_name(); if(sink_name.empty()) sink_name = get_default_sink_name();
return ::platf::microphone(mapping, channels, sample_rate, frame_size, get_monitor_name(sink_name)); return ::platf::microphone(mapping, channels, sample_rate, frame_size, get_monitor_name(sink_name));
} }