Initialize default device IDs.
This commit is contained in:
parent
3e603eba3e
commit
f3b86fe9d5
1 changed files with 2 additions and 2 deletions
|
|
@ -202,7 +202,7 @@ static PaDeviceID Pa_QueryDefaultInputDevice( void )
|
|||
UInt32 count;
|
||||
int i;
|
||||
AudioDeviceID tempDeviceID = kAudioDeviceUnknown;
|
||||
PaDeviceID defaultDeviceID;
|
||||
PaDeviceID defaultDeviceID = paNoDevice;
|
||||
|
||||
// get the default output device for the HAL
|
||||
// it is required to pass the size of the data to be returned
|
||||
|
|
@ -232,7 +232,7 @@ static PaDeviceID Pa_QueryDefaultOutputDevice( void )
|
|||
UInt32 count;
|
||||
int i;
|
||||
AudioDeviceID tempDeviceID = kAudioDeviceUnknown;
|
||||
PaDeviceID defaultDeviceID;
|
||||
PaDeviceID defaultDeviceID = paNoDevice;
|
||||
|
||||
// get the default output device for the HAL
|
||||
// it is required to pass the size of the data to be returned
|
||||
|
|
|
|||
Loading…
Reference in a new issue