mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-05 17:05:57 +08:00
fix: ASSERT audioInDataAvailable
This commit is contained in:
@@ -171,7 +171,7 @@ namespace swift::core::afv::audio
|
||||
sample = static_cast<qint16>(value);
|
||||
|
||||
qint16 sampleInput = qAbs(sample);
|
||||
m_maxSampleInput = qMax(qAbs(sampleInput), m_maxSampleInput);
|
||||
m_maxSampleInput = qMax(sampleInput, m_maxSampleInput); // qAbs entfernt!
|
||||
}
|
||||
|
||||
int length {};
|
||||
|
||||
Reference in New Issue
Block a user