replace "None" with DeviceNone in ALSA/Coreaudio
[ardour.git] / libs / backends / coreaudio / coreaudio_pcmio_aggregate.cc
index d9831b550906f9b634bc66c0bda9c78df00e0087..7c2d0fe19694a73783e19ce26070a49503b01fac 100644 (file)
@@ -183,12 +183,10 @@ CoreAudioPCM::create_aggregate_device (
        CFDictionaryAddValue(aggDeviceDict, CFSTR(kAudioAggregateDeviceNameKey), AggregateDeviceNameRef);
        CFDictionaryAddValue(aggDeviceDict, CFSTR(kAudioAggregateDeviceUIDKey), AggregateDeviceUIDRef);
 
-#ifndef NDEBUG
        // hide from list
        int value = 1;
        CFNumberRef AggregateDeviceNumberRef = CFNumberCreate(NULL, kCFNumberIntType, &value);
        CFDictionaryAddValue(aggDeviceDict, CFSTR(kAudioAggregateDeviceIsPrivateKey), AggregateDeviceNumberRef);
-#endif
 
        //-------------------------------------------------
        // Create a CFMutableArray for our sub-device list
@@ -337,10 +335,8 @@ CoreAudioPCM::create_aggregate_device (
        // Clean up
        //----------
 
-#ifndef NDEBUG
        // release the private AD key
        CFRelease(AggregateDeviceNumberRef);
-#endif
 
        // release the CF objects we have created - we don't need them any more
        CFRelease(aggDeviceDict);