summaryrefslogtreecommitdiffstats
path: root/drivers/pulseaudio
Commit message (Collapse)AuthorAgeFilesLines
* Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-2/+2
| | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* [Drivers,Platform] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-121-3/+3
|
* Add a `--audio-output-latency` command-line argumentHugo Locurcio2023-08-171-1/+1
| | | | | This allows optimizing the audio output latency on higher-end CPUs, especially in projects that do not expose a way to override this setting.
* PulseAudio: Remove get_latency() cachingLuke Hubmayer-Werner2023-08-041-14/+11
|
* Enable shadow warnings and fix raised errorsNinni Pipping2023-05-111-2/+2
|
* Fix wait for thread not startedSamuele Panzeri2023-04-271-1/+3
|
* Merge pull request #69833 from Eoin-ONeill-Yokai/audio_invalid_mixrateRémi Verschelde2023-04-261-1/+1
|\ | | | | | | Fix crash caused by invalid mix_rate assignment due to bogus project settings.
| * Fix crash caused by invalid mix_rate assignment due to bogusEoin O'Neill2023-04-251-1/+1
| | | | | | | | | | | | | | | | | | project settings. We'll default to a sensible value in the case that a user has somehow managed to modify the configuration file incorrectly. Closes 69819
* | [Linux/BSD] Add dynamically loaded library version checks.bruvzg2023-03-201-0/+12
|/
* [Linux] Make SO wrapper usage optional.bruvzg2023-02-163-2/+12
|
* Further refactoring to AudioDriver implementations after #69120.Emmanouil Papadeas2023-02-092-26/+25
| | | | | | | | | | | | - Rename all instances of `capture_start()` and `capture_end()` to their new names. Fixes #72892. - More internal renames to match what was started in #69120. - Use `override` consistently so that such refactoring bugs can be caught. - Harmonize the order of definition of the overridden virtual methods in each audio driver. - Harmonize prototype for `set_output_device` and `set_input_device`. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Audio rename (device, capture_device) -> (output_device, input_device)souplamp2023-01-312-87/+87
| | | | | | | | | | | | | | | | | | | | | | Change instances of audio properties 'device' to 'output_device', and instances of audio properties 'capture_device' to 'input_device', as well as their subsequent getter & setter functions. Update the docs to reflect these changes, as well as the 3-to-4 converter for GDScript and CSharp to make proper conversions (only exception is 'device' since that name is too vague and might replace non-AudioServer related instances, such as user comments and variables). This does not change internal references to references like 'Render Client' and 'Capture Client' in WASAPI; such is outside the scope of this commit. This also does not change ALSA's references, considering that it uses 'device' to mean input and output interchangeably. Other references are changed, however where applicable, to be consistent with the new AudioServer methods and property names.
* [X11] Add support for dead keys without active IME. Fix IME focus and cleanup.bruvzg2023-01-302-4/+4
|
* [Linux/BSD] Include headers for dynamically loaded libraries to simplify ↵bruvzg2023-01-232-176/+86
| | | | build dependencies.
* Convert en_GB spelling to en_US with codespellRémi Verschelde2023-01-231-1/+1
|
* One Copyright Update to rule them allRémi Verschelde2023-01-052-58/+58
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Remove usage of unitialized variablesRafał Mikrut2022-10-011-2/+2
|
* Merge pull request #64607 from RandomShaper/safe_audio_threadingRémi Verschelde2022-08-252-18/+15
|\
| * Make audio thread control flags safePedro J. Estébanez2022-08-192-18/+15
| |
* | Replace Array return types with TypedArraykobewi2022-08-222-8/+8
|/
* Fix more issues found by cppcheck.bruvzg2022-04-201-1/+1
|
* Fix some issues found by cppcheck.bruvzg2022-04-061-6/+6
|
* Update copyright statements to 2022Rémi Verschelde2022-01-032-4/+4
| | | | Happy new year to the wonderful Godot community!
* Print the number of PulseAudio input channels when in verbose modeHugo Locurcio2021-11-091-4/+6
| | | | | | This is useful information to have for troubleshooting, and it's said to sidestep a possible race condition issue that breaks microphone recording on Linux.
* Use application name for pulseaudio deviceNathan Franke2021-11-061-1/+12
|
* AudioDriverPulseAudio: move Vector Cow access outside tight loop.Ibrahn Sahir2021-10-291-6/+6
| | | | | Replaced some in-loop uses of Vector.write with an out of loop ptrw, to avoid a lot of superfluous reads on the CowData ref count.
* Save all 64 bits of get_ticks_msec() in more casesMax Hilbrunner2021-10-261-2/+2
|
* Fix crash when using ALSA MIDI with PulseAudioPedro J. Estébanez2021-06-031-0/+8
|
* Handle having no sinks in the PulseAudio driver.R. Alex Hofer2021-05-132-9/+41
| | | | Also make PulseAudio errors more verbose.
* An update to the dylibloader for older inttypesHein-Pieter van Braam-Stewart2021-02-203-1077/+1802
| | | | | | | | This #define's older inttypes to their newer versions and #includes <stdint.h> in the generated files. This will help with older glibc/compiler versions using headers generated on newer systems. This closes #46223
* Reorganize Project Settingsreduz2021-02-181-2/+2
| | | | | | | -Advanced Settings toggle also hides advanced properties when disabled -Simplified Advanced Bar (errors were just plain redundant) -Reorganized rendering quality settings. -Reorganized miscelaneous settings for clean up.
* Don't clobber original library symbolsHein-Pieter van Braam-Stewart2021-02-182-1792/+2151
| | | | | | | | | | | It appears that we can get a fun circle dependency on a shared object on some system configurations causing issues with our 'fake' function pointer names. This can lead to a crash. The new wrapper generator renames all the symbols so this can't happen anymore. See https://github.com/hpvb/dynload-wrapper/commit/704135e This closes #46140
* Dynamically load libpulse.so.0 and libasound.so.1 on LinuxHein-Pieter van Braam-Stewart2021-02-165-1/+4325
| | | | | | | | | | | | By generating stubs using https://github.com/hpvb/dynload-wrapper we can dynamically load libpulse and libasound on systems where it is available. Both are still a build-time requirement but no longer a run-time dependency. For maintenance purposes the wrappers should not need to be re-generated unless we want to bump pulse or asound to an incompatible version. It is unlikely we will want to do this any time soon. This closes #20978
* Modernize ThreadPedro J. Estébanez2021-01-292-14/+4
| | | | | | | | | - Based on C++11's `thread` and `thread_local` - No more need to allocate-deallocate or check for null - No pointer anymore, just a member variable - Platform-specific implementations no longer needed (except for the few cases of non-portable functions) - Simpler for `NO_THREADS` - Thread ids are now the same across platforms (main is 1; others follow)
* Update copyright statements to 2021Rémi Verschelde2021-01-012-4/+4
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Ensure header guards enclose entire header.Marcel Admiraal2020-09-031-4/+4
|
* Move mix_rate, ouput_latency to AudioDriverManagerFabio Alessandrelli2020-05-181-2/+2
| | | | | | | Each driver used to define the (same) project settings values `audio/mix_rate` and `audio/output_latency`, but the setting names are not driver specific. Overriding is still possible via platform tags.
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-3/+6
| | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-142-25/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Port member initialization from constructor to declaration (C++11)Rémi Verschelde2020-05-142-41/+20
| | | | | | | | | | Using `clang-tidy`'s `modernize-use-default-member-init` check and manual review of the changes, and some extra manual changes that `clang-tidy` failed to do. Also went manually through all of `core` to find occurrences that `clang-tidy` couldn't handle, especially all initializations done in a constructor without using initializer lists.
* Replace NULL with nullptrlupoDharkael2020-04-021-33/+33
|
* SCons: Format buildsystem files with psf/blackRémi Verschelde2020-03-301-1/+1
| | | | | | | | | | | | | | | | | | | | | Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
* Reimplement Mutex with C++'s <mutex>Pedro J. Estébanez2020-02-262-11/+5
| | | | | | | | | | | | | | | | Main: - It's now implemented thanks to `<mutex>`. No more platform-specific implementations. - `BinaryMutex` (non-recursive) is added, as an alternative for special cases. - Doesn't need allocation/deallocation anymore. It can live in the stack and be part of other classes. - Because of that, it's methods are now `const` and the inner mutex is `mutable` so it can be easily used in `const` contexts. - A no-op implementation is provided if `NO_THREADS` is defined. No more need to add `#ifdef NO_THREADS` just for this. - `MutexLock` now takes a reference. At this point the cases of null `Mutex`es are rare. If you ever need that, just don't use `MutexLock`. - Thread-safe utilities are therefore simpler now. Misc.: - `ScopedMutexLock` is dropped and replaced by `MutexLock`, because they were pretty much the same. - Every case of lock, do-something, unlock is replaced by `MutexLock` (complex cases where it's not straightfoward are kept as as explicit lock and unlock). - `ShaderRD` contained an `std::mutex`, which has been replaced by `Mutex`.
* Remove duplicate WARN_PRINT macro.Marcel Admiraal2020-02-051-2/+2
|
* Remove duplicate ERR_PRINT macro.Marcel Admiraal2020-02-051-5/+5
|
* Revert "Exposes capture methods to AudioServer + documentation" #30468Rémi Verschelde2020-01-201-10/+10
| | | | | | | | | | | | | | | | | Reverts the following commits: - c81ec6f26d40b70283958a4ef3e216fb32cbaf14: "Exposes capture methods to AudioServer, variable renames for consistency, added documentation." - 47c558b98abf842910c780294314326662410cdf: "Expose audio callbacks as signals." - dabaa11b3c451e9b8f2cca7e563bd9ec51edb169: "Fix to make sure the capture buffers are deallocated at shutdown. Silences warnings." Some documentation improvements were kept for pre-existing methods. See rationale for reverting these changes in #30468.
* Update copyright statements to 2020Rémi Verschelde2020-01-012-4/+4
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Check for null pointer in PulseAudio server info callback.Marcel Admiraal2019-12-281-0/+2
|
* Merge pull request #31077 from qarmin/coverity_bugsRémi Verschelde2019-08-071-1/+4
|\ | | | | Change some code proposed by Coverity and Cppcheck