mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Formatting: Remove double-dots from comments and other strings
This commit is contained in:
parent
82dc6d1c7e
commit
83e5264c86
209 changed files with 508 additions and 509 deletions
|
|
@ -800,11 +800,11 @@ public:
|
|||
OpenSLAudioIODevice (const String& deviceName) : AudioIODevice (deviceName, openSLTypeName)
|
||||
{
|
||||
// OpenSL has piss-poor support for determining latency, so the only way I can find to
|
||||
// get a number for this is by asking the AudioTrack/AudioRecord classes..
|
||||
// get a number for this is by asking the AudioTrack/AudioRecord classes.
|
||||
AndroidAudioIODevice javaDevice (deviceName);
|
||||
|
||||
// this is a total guess about how to calculate the latency, but seems to vaguely agree
|
||||
// with the devices I've tested.. YMMV
|
||||
// with the devices I've tested. YMMV
|
||||
inputLatency = (javaDevice.minBufferSizeIn * 2) / 3;
|
||||
outputLatency = (javaDevice.minBufferSizeOut * 2) / 3;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue