aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix the source ID for a source voice stopped from deletionChris Robinson2020-04-211-1/+1
|
* Set the device name in the Oboe backendChris Robinson2020-04-201-0/+2
|
* Get rid of an unnecessary variableChris Robinson2020-04-201-20/+14
|
* Trace the opened Oboe stream propertiesChris Robinson2020-04-191-6/+6
|
* More gracefully relax the Oboe format requestChris Robinson2020-04-191-21/+23
|
* Simplify some install statementsChris Robinson2020-04-191-32/+19
|
* Use an import target for libsndfileChris Robinson2020-04-192-39/+31
|
* Fix some message formattingChris Robinson2020-04-191-1/+1
|
* Make sure HAVE_OBOE is cleared before checkingChris Robinson2020-04-191-26/+27
|
* Correctly test for SSE switchesChris Robinson2020-04-191-25/+33
|
* Rename install options for consistencyChris Robinson2020-04-191-14/+23
|
* Don't explicitly link libpthreadChris Robinson2020-04-191-5/+0
| | | | Compiling and linking with -pthread is apparently enough.
* Build Oboe with hidden visibilityChris Robinson2020-04-181-0/+10
|
* Try to be more robust with the Oboe formatChris Robinson2020-04-181-8/+45
|
* Add missing backslashChris Robinson2020-04-181-1/+1
|
* Initial implementation for Oboe-based playbackChris Robinson2020-04-181-4/+185
|
* Attempt to build with Oboe on Android with TravisChris Robinson2020-04-181-0/+4
|
* Add an Oboe backend stubChris Robinson2020-04-186-0/+116
|
* Use cmake --build with Travis to buildChris Robinson2020-04-171-1/+1
| | | | Instead of assuming makefiles
* Update Travis to use Android NDK r21, API 16Chris Robinson2020-04-171-12/+12
|
* Precalculate some valuesChris Robinson2020-04-161-11/+17
| | | | | MSVC isn't as willing to precompute sqrt and log10 results from known input values.
* Simplify some reverb update codeChris Robinson2020-04-161-49/+36
|
* Remove another unnecessary return valueChris Robinson2020-04-1616-82/+41
|
* Remove an always-true return valueChris Robinson2020-04-161-8/+5
|
* Move a type to where it's usedChris Robinson2020-04-162-3/+4
|
* Get rid of the specialized MixRow_ methodsChris Robinson2020-04-167-125/+41
|
* Combine multiple target installsChris Robinson2020-04-151-27/+19
|
* Fix installing alsoft-configChris Robinson2020-04-152-5/+13
|
* Combine utility target installsChris Robinson2020-04-142-13/+6
|
* Always define install targets for the main libraryChris Robinson2020-04-141-67/+53
| | | | Examples and utilities now have separate install options.
* Simplify some indentationChris Robinson2020-04-141-25/+22
|
* Remove some unnecessary cmake checksChris Robinson2020-04-143-38/+15
|
* Silence a type conversion warning with GCCChris Robinson2020-04-141-2/+3
|
* Avoid inlining some potentially costly callsChris Robinson2020-04-145-8/+15
|
* Avoid a function call to get the frame stepChris Robinson2020-04-131-1/+1
|
* Use standard attribute declarationsChris Robinson2020-04-1313-16/+17
|
* Throw exceptions for errors in the effect getters/settersChris Robinson2020-04-1015-1161/+1203
|
* Add an effect_exception for handling effect propertiesChris Robinson2020-04-102-39/+71
|
* Use a common base for a couple exceptionsChris Robinson2020-04-104-39/+36
|
* Ignore "attribute '...' is not recognized" MSVC warningChris Robinson2020-04-101-1/+1
|
* Merge pull request #414 from ArthurSonzogni/masterkcat2020-04-102-2/+4
|\ | | | | Add missing <cstdarg>
| * Add missing <cstdarg>ArthurSonzogni2020-04-102-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 attributesChris Robinson2020-04-101-16/+4
|
* Report invalid filter valuesChris Robinson2020-04-101-5/+5
|
* Add missing includeChris Robinson2020-04-101-1/+2
|
* Remove an unused cmake variableChris Robinson2020-04-101-9/+0
|
* Apply static-link flags directly to the targetChris Robinson2020-04-101-11/+12
|
* Simplify generating chorus delays a bitChris Robinson2020-04-091-55/+67
|
* Use exceptions for filter errorsChris Robinson2020-04-092-128/+188
|
* Make a default/empty constructor noexceptChris Robinson2020-04-091-1/+1
|