mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 18:50:00 +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.";
|
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() );
|
_peq.initialize( _inputFormat.sampleRate() );
|
||||||
_inputGain.initialize();
|
_inputGain.initialize();
|
||||||
_sourceGain.initialize();
|
_sourceGain.initialize();
|
||||||
|
|
Loading…
Reference in a new issue