Adds Microsoft Media Foundation AAC Encoder that supports 96k to 192k bitrates. This plugin is only enabled on Microsoft Windows 8+ due to performance issues found on Windows 7.
13 lines
203 B
C
13 lines
203 B
C
#include <obs-module.h>
|
|
|
|
extern void RegisterMFAACEncoder();
|
|
|
|
bool obs_module_load(void)
|
|
{
|
|
RegisterMFAACEncoder();
|
|
return true;
|
|
}
|
|
|
|
OBS_DECLARE_MODULE()
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("win-mf", "en-US")
|