Merge remote-tracking branch 'upstream/pr/136'
[rtaudio-cdist.git] / tests / record.cpp
index d16ea4955efac57ea451753696fb2a88dbfdb863..0e48f77e02dfe87e7cf521cb56837c3e61a7c441 100644 (file)
@@ -117,7 +117,10 @@ int main( int argc, char *argv[] )
   // Set our stream parameters for input only.
   bufferFrames = 512;
   RtAudio::StreamParameters iParams;
-  iParams.deviceId = device;
+  if ( device == 0 )
+    iParams.deviceId = adc.getDefaultInputDevice();
+  else
+    iParams.deviceId = device;
   iParams.nChannels = channels;
   iParams.firstChannel = offset;