mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-17 00:44:19 +00:00
Minor tweaks to MidiMessage, Label. Removed some intel compiler warnings.
This commit is contained in:
parent
7bfa419f17
commit
0a9cbd36c4
24 changed files with 207 additions and 240 deletions
|
|
@ -133,9 +133,9 @@ public:
|
|||
WASAPIDeviceBase (const ComSmartPtr <IMMDevice>& device_, const bool useExclusiveMode_)
|
||||
: device (device_),
|
||||
sampleRate (0),
|
||||
defaultSampleRate (0),
|
||||
numChannels (0),
|
||||
actualNumChannels (0),
|
||||
defaultSampleRate (0),
|
||||
minBufferSize (0),
|
||||
defaultBufferSize (0),
|
||||
latencySamples (0),
|
||||
|
|
@ -548,11 +548,11 @@ public:
|
|||
const bool useExclusiveMode_)
|
||||
: AudioIODevice (deviceName, "Windows Audio"),
|
||||
Thread ("Juce WASAPI"),
|
||||
isOpen_ (false),
|
||||
isStarted (false),
|
||||
outputDeviceId (outputDeviceId_),
|
||||
inputDeviceId (inputDeviceId_),
|
||||
useExclusiveMode (useExclusiveMode_),
|
||||
isOpen_ (false),
|
||||
isStarted (false),
|
||||
currentBufferSizeSamples (0),
|
||||
currentSampleRate (0),
|
||||
callback (0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue