mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-21 14:03:11 -07:00
Receive and decode Audio Frames
This commit is contained in:
parent
bd434921ae
commit
41cfefd5ae
13 changed files with 202 additions and 20 deletions
16
cmake/FindOpus.cmake
Normal file
16
cmake/FindOpus.cmake
Normal 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
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue