this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

CoreAudio.component: Use correct base factory

+2 -2
+2 -2
src/CoreAudio/CoreAudioComponent/AUHAL.cpp
··· 20 20 #include "AUHAL.h" 21 21 22 22 #pragma GCC visibility push(default) 23 - AUDIOCOMPONENT_ENTRY(AUBaseFactory, AUHAL); 23 + AUDIOCOMPONENT_ENTRY(AUOutputBaseFactory, AUHAL); 24 24 #pragma GCC visibility pop 25 25 26 26 enum { ··· 43 43 44 44 bool AUHAL::StreamFormatWritable(AudioUnitScope scope, AudioUnitElement element) 45 45 { 46 - return !m_running; 46 + return !m_running && IsInitialized(); 47 47 } 48 48 49 49 OSStatus AUHAL::Version()