mf-plugin.c 203 B

123456789101112
  1. #include <obs-module.h>
  2. extern void RegisterMFAACEncoder();
  3. bool obs_module_load(void)
  4. {
  5. RegisterMFAACEncoder();
  6. return true;
  7. }
  8. OBS_DECLARE_MODULE()
  9. OBS_MODULE_USE_DEFAULT_LOCALE("win-mf", "en-US")