3ae747dd50
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.
24 lines
313 B
CMake
24 lines
313 B
CMake
project(win-mf)
|
|
|
|
set(win-mf_SOURCES
|
|
mf-plugin.c
|
|
mf-aac.cpp
|
|
mf-aac-encoder.cpp)
|
|
|
|
set(win-mf_HEADERS
|
|
mf-aac-encoder.hpp)
|
|
|
|
add_library(win-mf MODULE
|
|
${win-mf_SOURCES}
|
|
${win-mf_HEADERS})
|
|
|
|
target_link_libraries(win-mf
|
|
uuid
|
|
mfplat
|
|
mfuuid
|
|
mf
|
|
wmcodecdspuuid
|
|
libobs)
|
|
|
|
install_obs_plugin_with_data(win-mf data)
|