summaryrefslogtreecommitdiffstats
path: root/servers/audio
Commit message (Collapse)AuthorAgeFilesLines
* Style: Apply `clang-tidy` fixes (superficial)Thaddeus Crews2024-11-041-1/+1
| | | | • `modernize-use-bool-literals`, `modernize-use-nullptr`, and `readability-braces-around-statements`
* Merge pull request #88628 from bruvzg/i_have_no_idea_what_im_doingThaddeus Crews2024-10-291-2/+2
|\ | | | | | | [macOS/iOS] Use hardware sampling rates for audio I/O.
| * [macOS/iOS] Use hardware sampling rates for audio I/O.bruvzg2024-10-251-2/+2
| |
* | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-251-1/+1
|/ | | | - Set clang-format `Standard` rule to `c++20`
* Merge pull request #86539 from stechyo/gdext/expose-audio-playback-methodsThaddeus Crews2024-10-242-0/+49
|\ | | | | | | Expose some AudioStreamPlayback methods (namely `mix_audio()`).
| * Post-code review changes.stechyo2024-08-262-11/+25
| |
| * Expose some AudioStreamPlayback methods.stechyo2024-08-152-0/+35
| | | | | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* | Merge pull request #93311 from dsnopek/gdextension-required-virtualsRémi Verschelde2024-09-274-10/+10
|\ \ | | | | | | | | | GDExtension: Mark virtual function as `is_required` in `extension_api.json`
| * | GDExtension: Mark virtual function as `is_required` in `extension_api.json`David Snopek2024-09-114-10/+10
| | | | | | | | | | | | Co-authored-by: Jovan Gerodetti <jovan.gerodetti@titannano.de>
* | | Merge pull request #97483 from akien-mga/clang-format-19.1.0Rémi Verschelde2024-09-261-1/+1
|\ \ \ | | | | | | | | | | | | CI: Update `clang-format` pre-commit hook to 19.1.0
| * | | CI: Update `clang-format` pre-commit hook to 19.1.0Rémi Verschelde2024-09-261-1/+1
| | | |
* | | | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-252-0/+2
|/ / /
* / / AudioEffectPitchShift: Fix distortion when pitch is 1.0Fabian S.2024-09-171-0/+5
|/ /
* | Merge pull request #96572 from adamscott/fix-samples-leakRémi Verschelde2024-09-091-0/+1
|\ \ | | | | | | | | | Fix leak when using audio samples instead of streams
| * | Fix leak when using audio samples instead of streamsAdam Scott2024-09-041-0/+1
| | |
* | | Merge pull request #83536 from wareya/new_cubicRémi Verschelde2024-09-081-5/+5
|\ \ \ | |/ / |/| | | | | Optimize cubic hermite algorithm in AudioStreamPlaybackResampled
| * | Optimize cubic hermite algorithm in AudioStreamPlaybackResampledwareya2024-08-221-5/+5
| | |
* | | Cleanup of raw `nullptr` checks with `Ref`A Thousand Ships2024-08-311-5/+5
| | | | | | | | | | | | Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
* | | WAV stream/importer: Improve compression/loop names and descriptionsDeeJayLSP2024-08-301-1/+1
| | |
* | | Honor `pitch_scale` value before playing audio sampleAdam Scott2024-08-201-0/+1
|/ /
* / Remove empty bind_methods()kobewi2024-08-152-11/+0
|/
* Fix audio samples not being able to be "finished"Adam Scott2024-07-171-1/+0
|
* Fix a bunch of orphan StringName errors at ProjectSettings/Editor exitYuri Rubinsky2024-07-091-0/+1
|
* Fix Web samples finished missing signalAdam Scott2024-07-071-0/+1
|
* Add samples playback supportAdam Scott2024-06-182-0/+75
|
* Automatically use property count in PropertyListHelperkobewi2024-05-251-1/+1
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-5/+5
|
* Fix PropertyListHelper::_get_property returning a valid value even if an ↵Gilles Roudière2024-05-101-0/+1
| | | | | | index is outside the array valid indices Co-authored-by: Tomasz Chabora <kobewi4e@gmail.com>
* Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-1/+1
| | | | | | | * 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
* Add PropertyListHelper in all simple caseskobewi2024-04-112-62/+19
|
* Add AudioEffectHardLimiter as a rework of audio limiter effectlandervr2024-03-252-0/+250
|
* AudioEffectPitchShift: Actually fix -Wstringop-overflow warningRémi Verschelde2024-02-222-46/+21
| | | | Previous commit didn't help, so its changes are reverted.
* AudioEffectPitchShift: Prevent negative size memset (GCC warning)Rémi Verschelde2024-02-191-3/+5
|
* Fix member names of `AudioFrame` to match extensionA Thousand Ships2024-02-1313-46/+46
|
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-1/+1
|
* Implement audio stream playback parameters.Juan Linietsky2024-01-162-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements a way for audio stream playback to be configured via parameters directly in the edited AudioStreamPlayer[2D/3D]. Currently, configuring the playback stream is not possible (or is sometimes hacky as the user has to obtain the currently played stream, which is not always immediately available). This PR only implements this new feature to control looping in stream playback instances (a commonly requested feature, which was lost in the transition from Godot 2 to Godot 3). But the idea is that it can do a lot more: * If effects are bundled to the stream, control per playback instance parameters such as cutoff or resoance, or any other exposed effect parameter per playback instance. * For the upcoming interactive music PR (#64488), this exposes an easy way to change the active clip, which was not possible before. * For the upcoming parametrizable audio support (https://github.com/godotengine/godot-proposals/issues/3394) this allows editing and animating audio graph parameters. In any case, this PR is required to complete #64488. Update modules/vorbis/audio_stream_ogg_vorbis.h Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update modules/minimp3/audio_stream_mp3.h Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update modules/minimp3/audio_stream_mp3.h Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update modules/vorbis/audio_stream_ogg_vorbis.h Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update doc/classes/AudioStream.xml Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* Fix AudioStreamRandomizer.random_volume_offset_db not workingjsjtxietian2023-10-141-1/+5
|
* Tweak property order in the inspector for AudioStreamRandomizerHugo Locurcio2023-09-271-2/+2
| | | | | This puts non-foldable properties above foldable properties, which matches the usual expectation in the editor inspector.
* bugfix for audio stream generators getting killed accidentally by audio serverFabian Keller2023-09-101-4/+7
|
* Extract ScriptInstance to simplify includesYuri Sizov2023-09-062-2/+0
| | | | | | | | | This allows to include script_instance.h directly in the generated gdvirtual.gen.inc, and remove excessive includes from the codebase. This should also allow Resource to use GDVIRTUAL macros, which wasn't possible previously due to a circular dependency.
* Simpler default values for AudioStreamRandomizerRedMser2023-08-021-2/+2
|
* Fix AudioEffectRecord circular referenceWilson E. Alvarez2023-06-192-26/+20
|
* Fix wait for thread not startedSamuele Panzeri2023-04-272-2/+6
|
* 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
* Make solving project setting errors easierRedMser2023-03-271-1/+1
| | | | | Show full project setting path in error messages. Force filtering for advanced settings if filter is not empty.
* Merge pull request #70515 from stmSi/fix-hanging-audio-pitch-scaleRémi Verschelde2023-02-171-1/+1
|\ | | | | | | Fix hanging if audiostream's pitch_scale is NaN
| * Fix Editor hanging if audiostream's pitch_scale is NaNstmSi2022-12-241-1/+1
| |
* | Further refactoring to AudioDriver implementations after #69120.Emmanouil Papadeas2023-02-093-20/+21
| | | | | | | | | | | | | | | | | | | | | | | | - 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>
* | One Copyright Update to rule them allRémi Verschelde2023-01-0548-1392/+1392
|/ | | | | | | | | | | | | | | | | | | | 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".
* Add optional arguments to AudioStreamRandomizerMrBlockers2022-12-202-4/+4
| | | | | Adds stream and weight parameters to add_stream. By default, weight is 1.0f.