obs-studio/plugins/win-dshow/dshow-plugin.cpp

19 lines
371 B
C++
Raw Normal View History

#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";
}
extern void RegisterDShowSource();
extern void RegisterDShowEncoders();
bool obs_module_load(void)
{
RegisterDShowSource();
RegisterDShowEncoders();
return true;
}