| 123456789101112131415161718192021222324252627282930313233343536 |
- #include <obs-module.h>
- #include "mf-config.hpp"
- #if ENABLE_WINMF
- #include <util/profiler.h>
- #include "mf-common.hpp"
- extern "C" extern void RegisterMFAACEncoder();
- extern void RegisterMFH264Encoders();
- #endif
- extern "C" bool obs_module_load(void)
- {
- #if ENABLE_WINMF
- MFStartup(MF_VERSION, MFSTARTUP_FULL);
- RegisterMFAACEncoder();
- RegisterMFH264Encoders();
- #endif
- return true;
- }
- extern "C" void obs_module_unload(void)
- {
- #if ENABLE_WINMF
- MFShutdown();
- #endif
- }
- OBS_DECLARE_MODULE()
- #if ENABLE_WINMF
- OBS_MODULE_USE_DEFAULT_LOCALE("win-mf", "en-US")
- #endif
|