win-mf: Add Media Foundation AAC Encoder
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.
This commit is contained in:
23
plugins/win-mf/CMakeLists.txt
Normal file
23
plugins/win-mf/CMakeLists.txt
Normal file
@@ -0,0 +1,23 @@
|
||||
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)
|
Reference in New Issue
Block a user