This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #587 from Sergeanur/opus
OPUS support for OpenAL
- Loading branch information
Showing
with
238 additions
and 10 deletions.
- +12 −0 .gitmodules
- +1 −0 ogg
- +1 −0 opus
- +1 −0 opusfile
- +29 −3 premake5.lua
- +106 −0 src/audio/oal/stream.cpp
- +37 −0 src/audio/sampman.h
- +51 −7 src/audio/sampman_oal.cpp
There are no files selected for viewing
| @@ -1,3 +1,15 @@ | |||
| [submodule "librw"] | [submodule "librw"] | ||
| path = librw | path = librw | ||
| url = https://github.com/aap/librw | url = https://github.com/aap/librw | ||
| [submodule "opus"] | |||
| path = opus | |||
| url = https://github.com/xiph/opus.git | |||
| branch = master | |||
| [submodule "opusfile"] | |||
| path = opusfile | |||
| url = https://github.com/xiph/opusfile.git | |||
| branch = master | |||
| [submodule "ogg"] | |||
| path = ogg | |||
| url = https://github.com/xiph/ogg.git | |||
| branch = master | |||