Receive and decode Audio Frames

This commit is contained in:
Florian Märkl 2018-12-02 13:21:47 +01:00
commit 41cfefd5ae
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
13 changed files with 202 additions and 20 deletions

16
cmake/FindOpus.cmake Normal file
View file

@ -0,0 +1,16 @@
# Opus_FOUND
# Opus_INCLUDE_DIRS
# Opus_LIBRARIES
find_path(Opus_INCLUDE_DIRS
NAMES opus/opus.h
PATH_SUFFIXES include
)
find_library(Opus_LIBRARIES NAMES opus)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Opus
DEFAULT_MSG
Opus_INCLUDE_DIRS Opus_LIBRARIES
)