2014-12-19 07:53:15 -08:00
|
|
|
#include <obs-module.h>
|
|
|
|
|
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("win-dshow", "en-US")
|
2018-09-11 01:51:38 -07:00
|
|
|
MODULE_EXPORT const char *obs_module_description(void)
|
|
|
|
{
|
|
|
|
return "Windows DirectShow source/encoder";
|
|
|
|
}
|
2014-12-19 07:53:15 -08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|