mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-12 20:55:39 +08:00
fix: ASSERT audioInDataAvailable
This commit is contained in:
committed by
Lars Toenning
parent
b39034003c
commit
36b7736473
@@ -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