Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Be more careful about checking compiler flags | Chris Robinson | 2022-03-23 | 1 | -15/+15 |
| | | | | | Certain combinations of MSVC and CMake seem to allow all compiler flag checks to pass, which was causing certain GCC attributes to be used on MSVC. | ||||
* | Use function overloading to handle pthread_setname_np differences | Chris Robinson | 2022-02-23 | 1 | -40/+0 |
| | |||||
* | Add a OpenAL::OpenAL cmake target alias | Chris Robinson | 2022-02-22 | 1 | -0/+3 |
| | | | | For when built as a sub-project, to clarify it's a target instead of a library. | ||||
* | Clean up some cmake output formatting | Chris Robinson | 2022-02-22 | 1 | -13/+13 |
| | |||||
* | Rename deprecated -> legacy | Chris Robinson | 2022-02-14 | 1 | -7/+2 |
| | |||||
* | Don't use a generator expression in a CMake option | Chris Robinson | 2022-02-14 | 1 | -1/+1 |
| | |||||
* | Don't search for __android_log_print on non-Android targets | Chris Robinson | 2022-02-03 | 1 | -5/+7 |
| | | | | | | For some reason this check is passing on iOS, causing the build to later fail because it can't find -llog. Need to investigate why it finds something that doesn't exist, but this should fix the build error in the mean time. | ||||
* | Output a message when EAX is enabled in CMake | Chris Robinson | 2022-02-01 | 1 | -0/+5 |
| | |||||
* | Output a message when EAX is enabled in CMake | Chris Robinson | 2022-01-30 | 1 | -0/+5 |
| | |||||
* | Move ALSOFT_EAX definition to config.h | Chris Robinson | 2022-01-30 | 1 | -3/+1 |
| | | | | And disable it by default for non-Windows targets | ||||
* | Add EAX extensions (EAX 2.0-5.0, X-RAM) (#632) | Boris I. Bendovsky | 2022-01-30 | 1 | -0/+30 |
| | | | | | | | | | | | | | | | * Add EAX extensions (EAX 2.0-5.0, X-RAM) * Comment out C++17 leftovers * Remove everything related to patching * Update alsoftrc.sample * Rewrite integration * Fix GCC compilation under Linux * Always reset EAX effect properties when loading it into FX slot | ||||
* | Remove math_defs.h | Chris Robinson | 2022-01-27 | 1 | -1/+0 |
| | |||||
* | Start and use a standard-like numbers header | Chris Robinson | 2022-01-27 | 1 | -0/+1 |
| | |||||
* | Fix non-runtime linking with pipewire | Chris Robinson | 2021-12-25 | 1 | -1/+2 |
| | |||||
* | Move the effects base and effectslot to core | Chris Robinson | 2021-12-17 | 1 | -2/+3 |
| | |||||
* | Disable MSVC warning 4127 | Chris Robinson | 2021-11-08 | 1 | -1/+1 |
| | | | | | | | "conditional expression is constant", which C++14 can't do anything about since 'if constexpr' was added in C++17. The checks are necessary since it's dealing with a templatized type, or a compile-time non-macro constant for the target system's endian order. | ||||
* | Always define NOMINMAX on Windows | Chris Robinson | 2021-08-23 | 1 | -2/+2 |
| | | | | Clang needs it too, not just MSVC, and it doesn't seem to hurt MinGW. | ||||
* | Start a PipeWire backend | Chris Robinson | 2021-08-02 | 1 | -0/+21 |
| | | | | It's just a copy of the Null backend to start with | ||||
* | Still print a warning when DBus or Qt5 aren't found | Chris Robinson | 2021-07-17 | 1 | -0/+13 |
| | | | | | | | | This way merely avoids the several lines of spam when the config module isn't found, which there's otherwise no reasonable way to test for since they're provided by the package, which you need to use find_package to search for, which causes the spam. It's still useful to report the packages weren't found in case they were expected. | ||||
* | Silence searching for Qt5 | Chris Robinson | 2021-07-17 | 1 | -1/+1 |
| | |||||
* | CMakeLists: add QUIET to Dbus1 find_package() | Nick (nift4) | 2021-07-17 | 1 | -1/+1 |
| | | | * Android doesn't have dbus, logspam is annoying | ||||
* | Add a utility to encode audio files to UHJ | Chris Robinson | 2021-07-09 | 1 | -0/+8 |
| | |||||
* | Make OpenALConfig.cmake compatible with CMake's FindOpenAL.cmake (#581) | Anonymous Maarten | 2021-07-06 | 1 | -4/+12 |
| | | | | | | | * Make OpenALConfig.cmake compatible with CMake's FindOpenAL.cmake * Create and install OpenALConfigVersion.cmake * cmake: drop creating of OpenALConfigVersion.cmake | ||||
* | Merge pull request #564 from halx99/patch-1 | kcat | 2021-05-13 | 1 | -1/+3 |
|\ | | | | | Improve cmake to handle tvOS | ||||
| * | Update CMakeLists.txt | HALX99 | 2021-05-13 | 1 | -1/+3 |
| | | |||||
* | | Merge pull request #559 from tatokis/split-sse-sse2 | kcat | 2021-05-13 | 1 | -8/+17 |
|\ \ | |/ |/| | Allow enabling SSE without SSE2 | ||||
| * | Allow enabling SSE without SSE2 | Tasos Sahanidis | 2021-04-30 | 1 | -8/+17 |
| | | |||||
* | | Update some comments in CMake | Chris Robinson | 2021-05-13 | 1 | -6/+7 |
| | | |||||
* | | Fix check_include_file return unexpected result (#563) | HALX99 | 2021-05-13 | 1 | -8/+8 |
| | | | | | | Don't overwrite existing CMAKE_TRY_COMPILE_PLATFORM_VARIABLES values. | ||||
* | | Rename alcontext.h and move some functions to context.cpp | Chris Robinson | 2021-04-27 | 1 | -1/+2 |
| | | |||||
* | | Rename alcmain.h to device.h | Chris Robinson | 2021-04-27 | 1 | -1/+2 |
| | | |||||
* | | Update include headers | Chris Robinson | 2021-04-27 | 1 | -1/+0 |
| | | | | | | | | Don't add alc/ to the include paths. | ||||
* | | Move BufferStorage and Voice to core | Chris Robinson | 2021-04-27 | 1 | -5/+5 |
| | | |||||
* | | Move ContextBase and VoiceChange to core | Chris Robinson | 2021-04-27 | 1 | -3/+5 |
| | | |||||
* | | Move bformatdec to core | Chris Robinson | 2021-04-25 | 1 | -3/+3 |
| | | |||||
* | | Move async_event.h to core | Chris Robinson | 2021-04-25 | 1 | -1/+1 |
| | | |||||
* | | Move some functions to core | Chris Robinson | 2021-04-25 | 1 | -0/+2 |
| | | | | | | | | And clean up more includes | ||||
* | | Move GetHFOrderScales to a more appropriate place | Chris Robinson | 2021-04-24 | 1 | -0/+1 |
| | | |||||
* | | Move the DeviceBase declaraction to core | Chris Robinson | 2021-04-24 | 1 | -0/+2 |
| | | |||||
* | | Move some more sources to core | Chris Robinson | 2021-04-24 | 1 | -4/+4 |
| | | |||||
* | | Move hrtf.cpp/h to core | Chris Robinson | 2021-04-22 | 1 | -2/+2 |
| | | |||||
* | | Move helpers.cpp to core | Chris Robinson | 2021-04-22 | 1 | -2/+2 |
| | | |||||
* | | Optionally use RTKit/D-Bus to set elevated priority | Chris Robinson | 2021-04-18 | 1 | -1/+24 |
| | | | | | | | | If pthread_setschedparam fails or is unavailable. | ||||
* | | Decode UHJ buffers to B-Format for mixing | Chris Robinson | 2021-03-31 | 1 | -0/+1 |
| | | | | | | | | | | This should also have an adjustment for the shelf filter. Although it's not clear what the appropriate adjustments should be. | ||||
* | | Move the UHJ phase shifter to a common header | Chris Robinson | 2021-03-28 | 1 | -0/+1 |
| | | |||||
* | | Add the export definitions to the library projects | Chris Robinson | 2021-03-28 | 1 | -2/+4 |
| | | | | | | | | Instead of the config.h header. | ||||
* | | Add a utility to decode UHJ sound files to AMB | Chris Robinson | 2021-03-21 | 1 | -4/+16 |
| | | | | | | | | | | | | Currently only supports 2-channel UHJ, and the produced .amb files shouldn't be played as normal B-Format (decoded 2-channel UHJ needs to use different shelf filters). | ||||
* | | Move the ComPtr wrapper to a common header | Chris Robinson | 2021-03-08 | 1 | -0/+1 |
|/ | |||||
* | Release 1.21.1 | Chris Robinson | 2021-02-04 | 1 | -1/+1 |
| | |||||
* | Move al::deque to a common header | Chris Robinson | 2021-01-25 | 1 | -0/+1 |
| |