audio: removed hardcoded stereo value

Fixes bug that caused AudioMonitor to only show two channels regardless of the
actual number of channels being mixed.
This commit is contained in:
itsmattkc
2020-04-14 23:55:28 +10:00
parent 2646d424d8
commit fd1ecfae6f
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ qint64 AudioOutputDeviceProxy::readData(char *data, qint64 maxlen)
// If we read any
if (read_count > 0 && send_averages_) {
emit ProcessedAverages(AudioBufferAverage::ProcessAverages(data, static_cast<int>(read_count)));
emit ProcessedAverages(AudioBufferAverage::ProcessAverages(data, static_cast<int>(read_count), params_.channel_count()));
}
return read_count;