Changeset 1348 for portaudio/branches
- Timestamp:
- 02/21/08 00:31:26 (10 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
portaudio/branches/v19-devel/src/hostapi/asio/pa_asio.cpp
r1344 r1348 1717 1717 /* unless we move to using lower level ASIO calls, we can only have 1718 1718 one device open at a time */ 1719 if( asioHostApi->openAsioDeviceIndex != paNoDevice ){ 1719 if( asioHostApi->openAsioDeviceIndex != paNoDevice ) 1720 { 1720 1721 PA_DEBUG(("OpenStream paDeviceUnavailable\n")); 1721 1722 return paDeviceUnavailable; … … 1726 1727 /* full duplex ASIO stream must use the same device for input and output */ 1727 1728 1728 if( inputParameters->device != outputParameters->device ){ 1729 if( inputParameters->device != outputParameters->device ) 1730 { 1729 1731 PA_DEBUG(("OpenStream paBadIODeviceCombination\n")); 1730 1732 return paBadIODeviceCombination;
