Ray
64641c6a01
Update raudio.c
2025-09-04 10:33:26 +02:00
Ray
8f32c502a7
REVIEWED: Code sections definition
2025-09-02 12:10:40 +02:00
Andreas Rossberg
2deae294c6
[raudio] Properly close FLAC in UnloadMusicStream
...
Fix raysan5/raylib#5131 .
2025-08-21 13:02:19 +02:00
Jeffery Myers
572230c8ad
Initialize sound alias properties as if it was a new sound
2025-08-19 08:16:20 -07:00
Ray
570082deba
WARNING
: **NEW** raylib code CONVENTION: Comments do not end with '.'
2025-08-07 18:23:20 +02:00
Ray
e09c9ce281
Minor tweaks
2025-08-04 23:36:07 +02:00
Ray
b40e53f11c
Remove double line spacing
2025-07-30 16:07:08 +02:00
Ray
eb7f8912f8
Minor format tweaks
2025-07-26 12:50:29 +02:00
Ray
71b302846a
Review formatting, avoid variable
2025-07-17 18:49:54 +02:00
veins1
0405de794a
Fix for music stopping too early
2025-07-16 14:22:57 +00:00
veins1
d03ac97eff
GetMusicTimePlayed fix for music shorter than buffer size
2025-07-16 14:18:38 +00:00
Maicon Santana
3320a2c837
Fix to prevent UpdateMusicStream to run without music playing
2025-07-15 19:07:15 +01:00
wwderw
8ef51850bf
Update raudio.c
...
Allow for the use of raudio stand alone
2025-07-08 08:51:33 -05:00
Amy Wilder
205b6a0926
Merge branch 'raysan5:master' into safety-comments
2025-07-07 21:52:54 -04:00
Amy Wilder
d4f09984ac
Add safety notes to 'Update_' functions
2025-07-07 21:51:27 -04:00
Ray
59bcf680aa
Code gardening...
2025-06-07 20:14:24 +02:00
Ivan Ugryumov
ec5ce8c7fe
Update raudio.c
2025-04-28 14:29:51 +03:00
Jeffery Myers
0f6b9ee738
format math the way ray likes it
2025-04-18 07:27:20 -07:00
Jeffery Myers
5185d4c427
use the device channels and sample size when computing the default buffer size.
2025-04-16 18:13:41 -07:00
Ralph Caraveo
4522ecae1a
[raudio] Fixed memory leak on early-return of WaveFormat func ( #4779 )
...
In the case of a failure within miniaudio on the function: ma_convert_frames, the dynamic memory allocated for the `data` variable will leak on the early return.
2025-02-21 15:29:12 +01:00
Ray
fa0eada61a
Update year to 2025
2025-01-01 00:02:52 +01:00
Ray
1f45e7af76
REVIEWED: Coding conventions
2024-12-03 19:14:14 +01:00
Ray
962f1c26ff
Review formatting to follow raylib conventions
2024-12-01 23:10:59 +01:00
Caleb Heydon
58fe34d9cc
[raudio] Fixed buffer overflow when loading WAV files ( #4539 )
2024-11-28 22:58:35 +01:00
veins1
11429b48eb
Fix for #4521 ( #4523 )
2024-11-20 21:28:46 +01:00
Ray
8cbf34ddc4
WARNING: BREAKING: Renamed several functions for data validation #3930
2024-10-16 19:26:12 +02:00
konstruktor227
b0c3013b51
[raudio] Support 24-bit FLACs in LoadMusicStreamFromMemory
( #4279 )
...
Force conversion to 16-bit, same as how it is done in `LoadMusicStream`.
This fixes the problem where 24-bit FLACs play silence or broken sound.
2024-08-23 22:51:29 +02:00
Ray
3abe728712
Minor tweaks
2024-07-08 22:54:19 +02:00
Ray
17cbc75aa7
REVIEWED: Formatting, follow raylib coding conventions
2024-06-30 11:07:38 +02:00
listeria
df849d2fb0
[raudio] fix mapping of wave data in LoadWaveSamples() ( #4062 )
...
Co-authored-by: Listeria monocytogenes <listeria@disroot.org >
2024-06-13 16:05:22 +02:00
Alexey Kutepov
33c598123c
[raudio] Add 24 bits samples support for FLAC format ( #4058 )
...
Similarly to how it's done for WAV format, by forcing the conversion
to s16 on UpdateMusicStream().
2024-06-12 11:42:41 +02:00
listeria
b429dbdc4b
fix WaveCrop(): update wave->frameCount ( #4003 )
...
also allow `finalFrame = wave->frameCount' as the range of frames does
not include it.
Co-authored-by: Listeria monocytogenes <listeria@disroot.org >
2024-05-24 18:24:40 +02:00
listeria
bb9bd73f43
fix WaveCrop() and use frames instead of samples ( #3994 )
...
Co-authored-by: Listeria monocytogenes <listeria@disroot.org >
2024-05-21 08:13:46 +02:00
FishingHacks
3d70d6179c
[raudio] Removed drwav_uninit in LoadMusicStream to fix a crash ( #3986 )
2024-05-16 19:47:39 +02:00
veins1
1aa3559155
Fixes for loading Music ( #3966 )
...
* Fixes for loading Music
Fix for #3889
Fixes for QOA crashes.
Memory leak FIX on unsuccessful .wav loading.
* Added comments
2024-05-07 20:44:41 +02:00
Ray
3caa424ad4
Review formatting
2024-04-21 12:29:09 +02:00
Ray
c1943f0f7c
REVIEWED: Move some functions, made them static
2024-04-20 20:30:35 +02:00
Christian Haas
d80a622972
[raudio] Fix 3664: crash in raudio from multithreading issues ( #3907 )
...
* Flip release of buffer;
First it needs to be taken out of the processing chain, then it can be released. The inverse of the initialization.
* Add mutex locks to audio buffer functions; Separate those used from both threads
* Flip release of buffer;
First it needs to be taken out of the processing chain, then it can be released. The inverse of the initialization.
* Remove TODO marker; The buffer is in stopped state and its data won't be accessed
* Add mutex locks to music/stream functions directly operating on buffer
* Secure UpdateMusicStream/PlayMusicStream/UpdateAudioStream;
This change is twofold:
* Add locks to UpdateMusicStream/UpdateAudioStream (second one needed separation)
* Remove unnecessary hack to restart music - inlining the statements resulted in a no-op
Especially the second part made it easier to ensure thread-safety overall
* Remove redundant check; Already checked at beginning of function
2024-04-20 20:15:09 +02:00
Ray
29ce13b777
Code gardening
...
- Review formatting
- Improve readability for some functions result return
- Minimize early returns
- Align LoadFileData() to UnloadFileData()
2024-04-20 13:53:13 +02:00
veins1
289e7d3a6c
Reset music.ctxType if loading wasn't succesful ( #3917 )
...
Fixes some crashes, e.g. calling StopMusicStream after trying to load Music from a non-existant .mp3 file
2024-04-14 00:15:50 +02:00
Ray
646d70e93a
Remove trailing spaces
2024-04-02 09:38:06 +02:00
IoIxD
7ec43022c1
Fix segfault in ExportWaveAsCode ( #3769 )
...
`char *txtData = (char *)RL_CALLOC(waveDataSize * 6 + 2000, sizeof(char));`
assumes every chunk being added to txtData is 6 bytes. This is not always true, sometimes a newline is involved and the data becomes 12 bytes instead, and this can cause a random segfault.
This commit changes `6` to `12`, and explains why in the comment.
2024-02-01 21:16:57 +01:00
Alessandro Nikolaev
cf10cdd6b3
Added missing "standalone" functions to raudio.c & fixed return bug ( #3760 )
...
* Added GetFileNameWithoutExt, GetFileName & strprbrk to raudio.c
* Gave return values to SaveFileData & SaveFileText in raudio.c
2024-01-28 13:46:27 +01:00
Idir Carlos Aliane
6f1c31b25d
Change some minor comments to align with comments style ( #3755 )
2024-01-22 21:26:18 +01:00
Ray
c95b71d40d
Update raudio.c
2024-01-05 22:33:02 +01:00
Ray
3f1e59a7cf
Update copyright to 2024
2024-01-02 20:58:12 +01:00
Alexandre Almeida
f6de0358e1
Disable unused miniaudio features ( #3544 )
...
* Disable unused miniaudio features
* Fix mistakes
2023-11-18 20:06:19 +01:00
Ray
f88604e6d5
Reviewed QOA seek PR
2023-10-31 15:54:38 +01:00
veins1
6842012748
Fix QOA seeking ( #3494 )
2023-10-31 15:48:24 +01:00
Lukas
daf227a185
Fixes a memory leak as a result of creating an AudioBuffer* with the old source.frameCount. This internally allocates memory to the structs data pointer which is then later overridden by the correct sound data of the source sound. ( #3458 )
...
Additionally added a volume assignment from old to new as currently there is no way to get the volume of a sound and the AudioBuffer struct is not reachable from user code due to opaque definition.
2023-10-23 18:16:28 +02:00