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
@@ -151,7 +151,7 @@ void AudioOutputManager::ProcessAverages(const char *data, int length)
return;
}
emit SentSamples(AudioBufferAverage::ProcessAverages(data, length));
emit SentSamples(AudioBufferAverage::ProcessAverages(data, length, output_.get()->format().channelCount()));
}
OLIVE_NAMESPACE_EXIT