mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
allocate 4x initial input buffer size
This commit is contained in:
parent
5a6f8015f6
commit
04eca22a50
1 changed files with 1 additions and 1 deletions
|
@ -431,7 +431,7 @@ void Audio::start() {
|
|||
qDebug() << "Unable to set up audio output because of a problem with output format.";
|
||||
}
|
||||
|
||||
_inputFrameBuffer.initialize( _inputFormat.channelCount(), _audioInput->bufferSize() * 2 );
|
||||
_inputFrameBuffer.initialize( _inputFormat.channelCount(), _audioInput->bufferSize() * 4 );
|
||||
_peq.initialize( _inputFormat.sampleRate() );
|
||||
_inputGain.initialize();
|
||||
_sourceGain.initialize();
|
||||
|
|
Loading…
Reference in a new issue