2014-12-19 07:53:15 -08:00
|
|
|
#include <obs-module.h>
|
|
|
|
|
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("win-dshow", "en-US")
|
|
|
|
|
|
|
|
extern void RegisterDShowSource();
|
2014-12-19 12:31:23 -08:00
|
|
|
extern void RegisterDShowEncoders();
|
2014-12-19 07:53:15 -08:00
|
|
|
|
|
|
|
bool obs_module_load(void)
|
|
|
|
{
|
|
|
|
RegisterDShowSource();
|
2014-12-19 12:31:23 -08:00
|
|
|
RegisterDShowEncoders();
|
2014-12-19 07:53:15 -08:00
|
|
|
return true;
|
|
|
|
}
|