This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Change default rtaudio block size to 512.
tags/v2.0.0
Andrew Belt
2 years ago
parent
d7aa204bc7
commit
1f2de5d7f4
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/rtaudio.cpp
+ 1
- 1
src/rtaudio.cpp
View File
@@ -116,7 +116,7 @@ struct RtAudioDevice : audio::Device {
}
if (blockSize <= 0) {
blockSize =
256
;
blockSize =
512
;
}
INFO("Opening RtAudio %s device %d: %s (%d in, %d out, %g sample rate, %d block size)", RTAUDIO_API_NAMES.at(api).c_str(), deviceId, deviceInfo.name.c_str(), inputParameters.nChannels, outputParameters.nChannels, closestSampleRate, blockSize);
Write
Preview
Loading…
Cancel
Save