33dc028c7e
- Add CoreAudio device input capture for mac audio capturing. The code should cover just about everything for capturing mac input device audio. Because of the way mac audio is designed, users may have no choice but to obtain the open source soundflower software to capture their mac's desktop audio. It may be necessary for us to distribute it with the program as well. - Hide event backend - Use win32 events for windows - Allow timed waits for events - Fix a few warnings
14 lines
233 B
C
14 lines
233 B
C
#include <obs-module.h>
|
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
extern struct obs_source_info coreaudio_info;
|
|
|
|
bool obs_module_load(uint32_t libobs_version)
|
|
{
|
|
obs_register_source(&coreaudio_info);
|
|
|
|
UNUSED_PARAMETER(libobs_version);
|
|
return true;
|
|
}
|