Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix the source ID for a source voice stopped from deletion | Chris Robinson | 2020-04-21 | 1 | -1/+1 |
| | |||||
* | Set the device name in the Oboe backend | Chris Robinson | 2020-04-20 | 1 | -0/+2 |
| | |||||
* | Get rid of an unnecessary variable | Chris Robinson | 2020-04-20 | 1 | -20/+14 |
| | |||||
* | Trace the opened Oboe stream properties | Chris Robinson | 2020-04-19 | 1 | -6/+6 |
| | |||||
* | More gracefully relax the Oboe format request | Chris Robinson | 2020-04-19 | 1 | -21/+23 |
| | |||||
* | Simplify some install statements | Chris Robinson | 2020-04-19 | 1 | -32/+19 |
| | |||||
* | Use an import target for libsndfile | Chris Robinson | 2020-04-19 | 2 | -39/+31 |
| | |||||
* | Fix some message formatting | Chris Robinson | 2020-04-19 | 1 | -1/+1 |
| | |||||
* | Make sure HAVE_OBOE is cleared before checking | Chris Robinson | 2020-04-19 | 1 | -26/+27 |
| | |||||
* | Correctly test for SSE switches | Chris Robinson | 2020-04-19 | 1 | -25/+33 |
| | |||||
* | Rename install options for consistency | Chris Robinson | 2020-04-19 | 1 | -14/+23 |
| | |||||
* | Don't explicitly link libpthread | Chris Robinson | 2020-04-19 | 1 | -5/+0 |
| | | | | Compiling and linking with -pthread is apparently enough. | ||||
* | Build Oboe with hidden visibility | Chris Robinson | 2020-04-18 | 1 | -0/+10 |
| | |||||
* | Try to be more robust with the Oboe format | Chris Robinson | 2020-04-18 | 1 | -8/+45 |
| | |||||
* | Add missing backslash | Chris Robinson | 2020-04-18 | 1 | -1/+1 |
| | |||||
* | Initial implementation for Oboe-based playback | Chris Robinson | 2020-04-18 | 1 | -4/+185 |
| | |||||
* | Attempt to build with Oboe on Android with Travis | Chris Robinson | 2020-04-18 | 1 | -0/+4 |
| | |||||
* | Add an Oboe backend stub | Chris Robinson | 2020-04-18 | 6 | -0/+116 |
| | |||||
* | Use cmake --build with Travis to build | Chris Robinson | 2020-04-17 | 1 | -1/+1 |
| | | | | Instead of assuming makefiles | ||||
* | Update Travis to use Android NDK r21, API 16 | Chris Robinson | 2020-04-17 | 1 | -12/+12 |
| | |||||
* | Precalculate some values | Chris Robinson | 2020-04-16 | 1 | -11/+17 |
| | | | | | MSVC isn't as willing to precompute sqrt and log10 results from known input values. | ||||
* | Simplify some reverb update code | Chris Robinson | 2020-04-16 | 1 | -49/+36 |
| | |||||
* | Remove another unnecessary return value | Chris Robinson | 2020-04-16 | 16 | -82/+41 |
| | |||||
* | Remove an always-true return value | Chris Robinson | 2020-04-16 | 1 | -8/+5 |
| | |||||
* | Move a type to where it's used | Chris Robinson | 2020-04-16 | 2 | -3/+4 |
| | |||||
* | Get rid of the specialized MixRow_ methods | Chris Robinson | 2020-04-16 | 7 | -125/+41 |
| | |||||
* | Combine multiple target installs | Chris Robinson | 2020-04-15 | 1 | -27/+19 |
| | |||||
* | Fix installing alsoft-config | Chris Robinson | 2020-04-15 | 2 | -5/+13 |
| | |||||
* | Combine utility target installs | Chris Robinson | 2020-04-14 | 2 | -13/+6 |
| | |||||
* | Always define install targets for the main library | Chris Robinson | 2020-04-14 | 1 | -67/+53 |
| | | | | Examples and utilities now have separate install options. | ||||
* | Simplify some indentation | Chris Robinson | 2020-04-14 | 1 | -25/+22 |
| | |||||
* | Remove some unnecessary cmake checks | Chris Robinson | 2020-04-14 | 3 | -38/+15 |
| | |||||
* | Silence a type conversion warning with GCC | Chris Robinson | 2020-04-14 | 1 | -2/+3 |
| | |||||
* | Avoid inlining some potentially costly calls | Chris Robinson | 2020-04-14 | 5 | -8/+15 |
| | |||||
* | Avoid a function call to get the frame step | Chris Robinson | 2020-04-13 | 1 | -1/+1 |
| | |||||
* | Use standard attribute declarations | Chris Robinson | 2020-04-13 | 13 | -16/+17 |
| | |||||
* | Throw exceptions for errors in the effect getters/setters | Chris Robinson | 2020-04-10 | 15 | -1161/+1203 |
| | |||||
* | Add an effect_exception for handling effect properties | Chris Robinson | 2020-04-10 | 2 | -39/+71 |
| | |||||
* | Use a common base for a couple exceptions | Chris Robinson | 2020-04-10 | 4 | -39/+36 |
| | |||||
* | Ignore "attribute '...' is not recognized" MSVC warning | Chris Robinson | 2020-04-10 | 1 | -1/+1 |
| | |||||
* | Merge pull request #414 from ArthurSonzogni/master | kcat | 2020-04-10 | 2 | -2/+4 |
|\ | | | | | Add missing <cstdarg> | ||||
| * | Add missing <cstdarg> | ArthurSonzogni | 2020-04-10 | 2 | -2/+4 |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | OpenAL-Soft fails to compile on some GCC version: https://travis-ci.com/github/ArthurSonzogni/smk/jobs/318304162 It has regressed likely after: https://github.com/kcat/openal-soft/commit/c83609277bed4be4ef40ed306bf2c57fefa19519 va_start is defined in: - <stdarg.h> - <cstdarg> The repository is using it from: - al/error.cpp - al/filter.cpp - alc/alu.cpp - alc/helpers.cpp - common/alexcpt.cpp - utils/makemhr/loaddef.cpp - utils/openal-info.c This patch is adding its definition in the files missing it: - common/alexcpt.cpp - utils/makemhr/loaddef.cpp - utils/openal-info.c Bug: https://travis-ci.com/github/ArthurSonzogni/smk/jobs/318304162 | ||||
* | Apply some alloc and alignment attributes | Chris Robinson | 2020-04-10 | 1 | -16/+4 |
| | |||||
* | Report invalid filter values | Chris Robinson | 2020-04-10 | 1 | -5/+5 |
| | |||||
* | Add missing include | Chris Robinson | 2020-04-10 | 1 | -1/+2 |
| | |||||
* | Remove an unused cmake variable | Chris Robinson | 2020-04-10 | 1 | -9/+0 |
| | |||||
* | Apply static-link flags directly to the target | Chris Robinson | 2020-04-10 | 1 | -11/+12 |
| | |||||
* | Simplify generating chorus delays a bit | Chris Robinson | 2020-04-09 | 1 | -55/+67 |
| | |||||
* | Use exceptions for filter errors | Chris Robinson | 2020-04-09 | 2 | -128/+188 |
| | |||||
* | Make a default/empty constructor noexcept | Chris Robinson | 2020-04-09 | 1 | -1/+1 |
| |