Typedef pointers are unsafe. If you do: typedef struct bla *bla_t; then you cannot use it as a constant, such as: const bla_t, because that constant will be to the pointer itself rather than to the underlying data. I admit this was a fundamental mistake that must be corrected. All typedefs that were pointer types will now have their pointers removed from the type itself, and the pointers will be used when they are actually used as variables/parameters/returns instead. This does not break ABI though, which is pretty nice.
90 lines
1.9 KiB
C++
90 lines
1.9 KiB
C++
#include <obs-module.h>
|
|
|
|
#include "xcompcap-main.hpp"
|
|
|
|
static void* xcompcap_create(obs_data_t *settings, obs_source_t *source)
|
|
{
|
|
return new XCompcapMain(settings, source);
|
|
}
|
|
|
|
static void xcompcap_destroy(void *data)
|
|
{
|
|
XCompcapMain* cc = (XCompcapMain*)data;
|
|
delete cc;
|
|
}
|
|
|
|
static void xcompcap_video_tick(void* data, float seconds)
|
|
{
|
|
XCompcapMain* cc = (XCompcapMain*)data;
|
|
cc->tick(seconds);
|
|
}
|
|
|
|
static void xcompcap_video_render(void* data, gs_effect_t *effect)
|
|
{
|
|
XCompcapMain* cc = (XCompcapMain*)data;
|
|
cc->render(effect);
|
|
}
|
|
|
|
static uint32_t xcompcap_getwidth(void* data)
|
|
{
|
|
XCompcapMain* cc = (XCompcapMain*)data;
|
|
return cc->width();
|
|
}
|
|
|
|
static uint32_t xcompcap_getheight(void* data)
|
|
{
|
|
XCompcapMain* cc = (XCompcapMain*)data;
|
|
return cc->height();
|
|
}
|
|
|
|
static obs_properties_t *xcompcap_props(void)
|
|
{
|
|
return XCompcapMain::properties();
|
|
}
|
|
|
|
void xcompcap_defaults(obs_data_t *settings)
|
|
{
|
|
XCompcapMain::defaults(settings);
|
|
}
|
|
|
|
void xcompcap_update(void *data, obs_data_t *settings)
|
|
{
|
|
XCompcapMain* cc = (XCompcapMain*)data;
|
|
cc->updateSettings(settings);
|
|
}
|
|
|
|
static const char* xcompcap_getname(void)
|
|
{
|
|
return obs_module_text("XCCapture");
|
|
}
|
|
|
|
extern "C" void xcomposite_load(void)
|
|
{
|
|
if (!XCompcapMain::init())
|
|
return;
|
|
|
|
obs_source_info sinfo;
|
|
memset(&sinfo, 0, sizeof(obs_source_info));
|
|
|
|
sinfo.id = "xcomposite_input";
|
|
sinfo.output_flags = OBS_SOURCE_VIDEO;
|
|
|
|
sinfo.get_name = xcompcap_getname;
|
|
sinfo.create = xcompcap_create;
|
|
sinfo.destroy = xcompcap_destroy;
|
|
sinfo.get_properties = xcompcap_props;
|
|
sinfo.get_defaults = xcompcap_defaults;
|
|
sinfo.update = xcompcap_update;
|
|
sinfo.video_tick = xcompcap_video_tick;
|
|
sinfo.video_render = xcompcap_video_render;
|
|
sinfo.get_width = xcompcap_getwidth;
|
|
sinfo.get_height = xcompcap_getheight;
|
|
|
|
obs_register_source(&sinfo);
|
|
}
|
|
|
|
extern "C" void xcomposite_unload(void)
|
|
{
|
|
XCompcapMain::deinit();
|
|
}
|