codec/dsp: Add support for decoding Opus encoded streams

The Opus codec is a modern free audio codec, that is also royalty-free.
Adding support for it will allow clients and servers supporting it to
transfer audio in similar efficient way like with AAC.
So, add support it.
This commit is contained in:
Pascal Nowack
2023-11-18 11:43:21 +01:00
committed by akallabeth
parent 3ca26384ee
commit 330f7ae0a2
3 changed files with 75 additions and 0 deletions

View File

@@ -216,6 +216,11 @@ if(LAME_FOUND)
include_directories(${LAME_INCLUDE_DIRS})
endif()
if(OPUS_FOUND)
freerdp_library_add(${OPUS_LIBRARIES})
include_directories(${OPUS_INCLUDE_DIRS})
endif()
if(FAAD2_FOUND)
freerdp_library_add(${FAAD2_LIBRARIES})
include_directories(${FAAD2_INCLUDE_DIRS})