obs-studio/plugins/obs-x264/obs-x264-plugin-main.c

13 lines
235 B
C

#include <obs-module.h>
OBS_DECLARE_MODULE()
OBS_MODULE_USE_DEFAULT_LOCALE("obs-x264", "en-US")
extern struct obs_encoder_info obs_x264_encoder;
bool obs_module_load(void)
{
obs_register_encoder(&obs_x264_encoder);
return true;
}