summaryrefslogtreecommitdiffstats
path: root/modules/vorbis
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-122-2/+2
|\
| * Allow passing UID to importerJuan2024-11-112-2/+2
| | | | | | | | | | | | | | This helps, for importers spitting out new resources to the res:// filesystem to actually hash them to generate deterministic UIDs. This PR also fixes the determinism for translations.
* | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-112-3/+5
|\|
| * Fix interactive music docs saying it's "not implemented"Micky2024-11-101-3/+3
| |
| * Fix freeze on non-thread-safe custom importersHunter Loftis2024-10-151-0/+2
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-276-12/+12
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-116-0/+12
|/ | | | | | | | | | | | | | | | | | | | | | 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>
* Vorbis: Remove redundant bounds checkLalit Shankar Chowdhury2024-09-271-1/+0
|
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Fix leak when using audio samples instead of streamsAdam Scott2024-09-041-0/+3
|
* Add samples playback supportAdam Scott2024-06-182-0/+41
|
* [Doc] Fix some incorrect uses of `a/an`A Thousand Ships2024-03-131-1/+1
|
* Merge pull request #87246 from bs-mwoerner/ogg_crashRémi Verschelde2024-02-141-6/+8
|\ | | | | | | Fix a possible crash when importing an OGG file with zero-length packets
| * Fixed an issue that could cause a crash when encountering a zero-length ↵Michael Wörner2024-01-161-6/+8
| | | | | | | | | | | | | | packet in an OGG stream. A zero-length memcpy into a null pointer itself does not fail, but for gcc with optimizations, this can cause incorrect code to be generated further down the line since the pointer is then assumed to be non-null. Now stripping zero-length packets and pages without packets from the OggPacketSequence during import. This prevents various warning and error messages for files that end on a zero-length packet.
* | Fix member names of `AudioFrame` to match extensionA Thousand Ships2024-02-131-4/+4
|/
* Implement audio stream playback parameters.Juan Linietsky2024-01-162-4/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* Correctly register editor-only module classes with the APIYuri Sizov2023-12-151-0/+5
|
* Rename ImportSettings dialogs to have "Dialog" in the nameAaron Franke2023-11-261-1/+1
|
* Link to runtime loading/saving tutorial and improve Image documentationHugo Locurcio2023-11-141-0/+1
|
* Fix OGG Vorbis infinite error spam with corrupt file.lawnjelly2023-11-101-3/+3
| | | | | When OGG Vorbis encountered unreadable file, it emitted infinite error spam. This PR returns the full number of frames in the case of error, to prevent infinite loop.
* Fix OGG audio loop offset pop.strellydev2023-10-133-101/+83
| | | | | | Co-authored-by: MJacred <loesch.benny92@gmx.de> Co-authored-by: Ellen Poe <ellen.h.poe@gmail.com> Co-authored-by: Michael Wörner <mwoerner@semw-software.com>
* Only warn once about OGG seeking issuesEllen Poe2023-09-151-2/+2
|
* Add missing tutorials to documentation classesHugo Locurcio2023-08-191-1/+1
|
* Merge pull request #79405 from Calinou/doc-import-optionsYuri Sizov2023-07-271-1/+16
|\ | | | | Fill in descriptions for import options in the class reference
| * Fill in descriptions for import options in the class referenceHugo Locurcio2023-07-271-1/+16
| |
* | Load OGGs from file systemOğuzhan Eroğlu2023-07-147-51/+103
|/
* Fix documentation validation after 8352122e70ec2a582af9a713791eabbbcb935c10Yuri Sizov2023-07-121-1/+1
|
* Merge pull request #49524 from Calinou/document-editor-import-optionsYuri Sizov2023-07-124-1/+28
|\ | | | | | | Document editor import options in the class reference
| * Document editor import options in the class referenceHugo Locurcio2023-06-154-1/+28
| | | | | | | | | | | | | | Tooltips are displayed when hovering import options, both in the Import dock and in the import defaults editor (which is in the Project Settings). Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* | Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-062-2/+2
| | | | | | | | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* | Bump version to 4.2-devRémi Verschelde2023-07-052-2/+2
| | | | | | | | Keep on waitin'
* | Style: Harmonize header includes in modulesRémi Verschelde2023-06-152-3/+4
|/ | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Bump version to 4.1-devRémi Verschelde2023-03-012-2/+2
| | | | Can't stop, won't stop, they said, huh?
* Fix includes of thirdparty libs which can be unbundled on LinuxRémi Verschelde2023-02-163-4/+7
| | | | | Changes `builtin_icu` and `builtin_recast` to match the folder names in `thirdparty`.
* Disable OGG and MP3 looping by default on importJuan Linietsky2023-01-221-1/+1
| | | | | | * From Godot 4.0 onwards, proper music looping is supported which requires setting the BPM and then the loop point in beats. * As such, importing with loop by default does not serve much of a purpose. Its annoying to disable for SFX or clips that do not loop and it also requires manual intervention to loop music. * This way, it should work out of the box for any sound effect or non looping audio clip, and manual work is required anyway for looping music.
* One Copyright Update to rule them allRémi Verschelde2023-01-056-174/+174
| | | | | | | | | | | | | | | | | | | | 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".
* Code simplifications found by cppcheckMarkus Sauermann2022-11-211-2/+0
| | | | | | | They are based on: - Boolean arithmetic simplifications - setting variables that are not accessed - constant variables
* Fix typos with codespellRémi Verschelde2022-09-301-1/+1
| | | | | | | Using codespell 2.3-dev from current git. And fix typo in `methods.py` for `vsproj=yes` option (still won't work though).
* Fix MSVC warning C4706: assignment within conditional expressionRémi Verschelde2022-09-282-14/+31
| | | | Part of #66537.
* Change time parameters and variables to double typeDave Palais2022-09-262-13/+13
| | | | Addresses #65313
* [Scons] Implement module dependency sorting.Fabio Alessandrelli2022-08-041-1/+2
| | | | | | | | | | | Modules can now call: env.module_add_dependencies(name: str, deps: list, optional: bool) To add required or optional dependencies during the "can_build" step. Required dependencies will be checked and the module will be not be enabled when they are missing, printing a warning to notify the user.
* Swap arguments of ResourceSaver.save()kobewi2022-07-291-1/+1
|
* Rename every instance of "OGG" to "Ogg"DeeJayLSP2022-07-288-107/+107
|
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-3/+3
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Implement BPM supportreduz2022-07-235-30/+213
| | | | | | | | | | | 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.
* Merge pull request #55846 from ellenhp/fix_ogg_edge_casesRémi Verschelde2022-06-221-10/+7
|\ | | | | Fix ogg edge cases
| * Fix ogg edge casesEllen Poe2022-04-171-10/+7
| |
* | Replace most uses of Map by HashMapreduz2022-05-162-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | * 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!
* | Fix warnings found by Emscripten 3.1.10Rémi Verschelde2022-05-101-3/+0
| | | | | | | | | | Fix `-Wunused-but-set-variable`, `-Wunqualified-std-cast-call`, and `-Wliteral-range` warnings.
* | Refactor module initializationreduz2022-05-042-4/+14
|/ | | | | | | * Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).