summaryrefslogtreecommitdiffstats
path: root/servers/audio_server.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Fix leak when using audio samples instead of streamsAdam Scott2024-09-171-12/+36
| | | | (cherry picked from commit d3ddce6b8836bd6c39dc6ebc2a30102041953599)
* AudioServer: Fix code style issuesPedro J. Estébanez2024-09-171-6/+12
| | | | | | | - Drop STL copy in favor of old-school for loops. - Be explicit about loads and stores to atomic value. (This also fixes an error in certain compiler toolchains.) (cherry picked from commit 1cc485ba1ffe93e64f30aff27dc61606b7b40491)
* Fix AudioStreamPlayer get_playback_position() for web buildYahkub-R2024-09-161-0/+11
| | | | (cherry picked from commit bcd776e44174677f1995a49b697f9651f1f692ec)
* Fix audio samples not being able to be "finished"Adam Scott2024-07-171-0/+12
|
* Add samples playback supportAdam Scott2024-06-181-3/+146
|
* Add shorthand for using singleton string nameskobewi2024-05-111-3/+3
|
* Merge pull request #86777 from Mickeon/autocomplete-classdbRémi Verschelde2024-03-011-0/+13
|\ | | | | | | Add autocompletion for ClassDB & AudioServer
| * Add autocompletion for ClassDB & AudioServerMicky2024-02-291-0/+13
| |
* | Fix member names of `AudioFrame` to match extensionA Thousand Ships2024-02-131-15/+15
| |
* | Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-1/+1
| |
* | Fix data race regarding `prof_time` in `AudioDriver` and `AudioServer`jsjtxietian2024-02-061-3/+3
| |
* | Merge pull request #86581 from MJacred/optimize/audio_serverRémi Verschelde2024-01-261-4/+18
|\ \ | | | | | | | | | Optimize `AudioServer::_driver_process()`
| * | Optimize AudioServer::_driver_process()MJacred2024-01-261-4/+18
| | | | | | | | | | | | | | | | | | Move expensive calculations outside inner hot loops. Forward-ported from 3.6
* | | Add const lvalue ref to container parametersMuller-Castro2024-01-051-4/+4
| |/ |/|
* | Merge pull request #84800 from gshadows/fix_options_rangeRémi Verschelde2024-01-031-2/+4
|\ \ | | | | | | | | | Fix unlimited project option ranges that could cause crashes.
| * | Fix unlimited project option ranges that could cause crashes.G-Shadow2023-12-221-2/+4
| |/
* / Fix AudioServer::start_playback_stream does not iterate through given ↵MJacred2023-12-281-0/+1
|/ | | | p_bus_volumes
* [Servers] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-251-3/+3
|
* Add a bus_renamed AudioServer signalMewPurPur2023-09-151-4/+7
|
* Add a `--audio-output-latency` command-line argumentHugo Locurcio2023-08-171-2/+0
| | | | | This allows optimizing the audio output latency on higher-end CPUs, especially in projects that do not expose a way to override this setting.
* Use StringName consistently to refer to the Master audio bus nameHugo Locurcio2023-08-071-3/+4
|
* Fix crash caused by invalid mix_rate assignment due to bogusEoin O'Neill2023-04-251-0/+14
| | | | | | | | | 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
* Further refactoring to AudioDriver implementations after #69120.Emmanouil Papadeas2023-02-091-3/+4
| | | | | | | | | | | | - 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-311-25/+25
| | | | | | | | | | | | | | | | | | | | | | 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.
* Merge pull request #68429 from KoBeWi/PropertySettingsRémi Verschelde2023-01-061-2/+1
|\ | | | | Add PropertyInfo overload for GLOBAL_DEF
| * Add PropertyInfo overload for GLOBAL_DEFkobewi2022-12-111-2/+1
| |
* | One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 redundant nullptr check before deleteQuentin Guidée2022-12-171-6/+2
|/
* Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-1/+1
|
* Rename `str2var` to `str_to_var` and similarMicky2022-08-261-3/+3
| | | | | | | | | | | | | | | | | | Affects the Math class, a good chunk of the audio code, and a lot of other miscellaneous classes, too. - `var2str` -> `var_to_str` - `str2var` -> `str_to_var` - `bytes2var` -> `bytes_to_var` - `bytes2var_with_objects` -> `bytes_to_var_with_objects` - `var2bytes` -> `var_to_bytes` - `var2bytes_with_objects` -> `var_to_bytes_with_objects` - `linear2db` -> `linear_to_db` - `db2linear` -> `db_to_linear` - `deg2rad` -> `deg_to_rad` - `rad2deg` -> `rad_to_deg` - `dict2inst` -> `dict_to_inst` - `inst2dict` -> `inst_to_dict`
* Replace Array return types with TypedArraykobewi2022-08-221-6/+6
|
* Rename AudioStreamSample to a more discoverable nameDeeJayLSP2022-07-281-1/+1
|
* Implement BPM supportreduz2022-07-231-0/+14
| | | | | | | | | | | Based on #62896, only implements the BPM support part. * Implements BPM support in the AudioStreamOGG/MP3 importers. * Can select BPM/Bar Size and total beats in a song file, as well as edit looping points. * Looping is now BPM aware * Added a special importer UI for configuring this. * Added a special preview showing the audio waveform as well as the playback position in the resource picker. * Renamed `AudioStream::instance` to `instantiate` for correctness.
* Replace most uses of Map by HashMapreduz2022-05-161-5/+5
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Style: Partially apply clang-tidy's `cppcoreguidelines-pro-type-member-init`Rémi Verschelde2022-05-021-20/+0
| | | | | | | | | | | Didn't commit all the changes where it wants to initialize a struct with `{}`. Should be reviewed in a separate PR. Option `IgnoreArrays` enabled for now to be conservative, can be disabled to see if it proposes more useful changes. Also fixed manually a handful of other missing initializations / moved some from constructors.
* Fix crash in AudioServer when switching audio devices with different audio ↵Bartłomiej T. Listwon2022-04-011-0/+1
| | | | channels count (connecting PS5 controller, bluetooth 5.1 headphones etc.)
* Expose `AudioServer.capture_device` as a propertyHugo Locurcio2022-02-171-0/+4
| | | | | This is more consistent with `AudioServer.device` (for output), which is already exposed as a property.
* simplify formatting scripts, add a clang-tidy script, and run clang-tidyNathan Franke2022-01-291-2/+4
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add a shader warning when the uniform buffer limit is exceededYuri Roubinsky2022-01-031-1/+1
|
* Rename `remove()` to `remove_at()` when removing by indexLightning_A2021-11-231-3/+3
|
* Rename `PROPERTY_USAGE_NOEDITOR` to `PROPERTY_USAGE_NO_EDITOR`Hugo Locurcio2021-11-031-8/+8
| | | | | This is consistent with other constants that include `NO`, such as `PROPERTY_HINT_COLOR_NO_ALPHA`.
* fix potential memory leak of AudioStreamPlaybackBusDetails in ↵Mark Riedesel2021-10-181-2/+4
| | | | AudioServer::start_playback_stream()
* Allow AudioStreamPlayer(2D) to provide `pitch_scale` on playbackDouglas Leão2021-10-101-3/+3
|
* [HTML5] Use browser mix rate by default on the Web.Fabio Alessandrelli2021-09-151-0/+1
| | | | | | Browsers doesn't really like forcing the mix rate, e.g. Firefox does not allow input (microphone) if the mix rate is not the default one, Chrom* will exhibit worse performances, etc.
* Add polyphony to Audio Stream Player nodesEllen Poe2021-09-071-44/+44
|
* Do all audio mixing in the AudioServerEllen Poe2021-08-271-34/+458
|
* Invert how `global_rate_scale` value works, and rename it to ↵Michael Alexsander2021-08-071-8/+8
| | | | `playback_speed_scale`