obs-x264-plugin-main.c 324 B

12345678910111213141516
  1. #include <obs-module.h>
  2. OBS_DECLARE_MODULE()
  3. OBS_MODULE_USE_DEFAULT_LOCALE("obs-x264", "en-US")
  4. MODULE_EXPORT const char *obs_module_description(void)
  5. {
  6. return "x264 based encoder";
  7. }
  8. extern struct obs_encoder_info obs_x264_encoder;
  9. bool obs_module_load(void)
  10. {
  11. obs_register_encoder(&obs_x264_encoder);
  12. return true;
  13. }