summaryrefslogtreecommitdiffhomepage
path: root/examples/audio
AgeCommit message (Collapse)Author
2024-06-24[Build] Fix warnings when building in VS 2022 (#4095)Jeffery Myers
* Update raylib_api.* by CI * Fix warnings when building examples in MSVC 2022 * fix auto-format that sneaked in there. --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-04-17Update corrupted-header sounds #3554Ray
2024-01-02Update copyright to 2024Ray
2023-12-13Update audio_stream_effects.c (#3618)lipx
* Update audio_stream_effects.c This may slightly improve performance and be more welcoming for new users despite being an more advanced feature. void * usually throws an error in most compilers and it would be better to just avoid it. Also added <stdbool.h> because booleans are, sometimes, not defined by <stddef.h>. * Update audio_stream_effects.c
2023-12-11Update audio_raw_stream.c (#3624)riadbettole
AudioInputCallBack has this audioFrequency += 1.0f; audioFrequency -= 1.0f; cancels out each others
2023-08-30Remove a duplicated screenshot and add missing one (#3275)Asdqwe
2023-08-29Fix example/audio/audio_module_player.c help instructions and small bug (#3272)Asdqwe
* Fix example/audio/audio_module_player.c help instructions and small bug * Update example/audio/audio_module_player.png screenshot
2023-08-04[AUDIO] Add an example of how to use LoadSoundAlias (#3223)Jeffery Myers
* Add a function to clone a sound and share data with another sound. * rename items based on feedback * PR Feedback, use custom unload for sound alias, not variant of normal sound unloading * sound_multi example
2023-03-07WARNING: REMOVED: Multichannel audio support APIRay
It was quite restrictive and hacky implementation, just load multiple types same sound to play multiple instances.
2023-03-05Support QOA audio file format by defaultRay
2023-02-20Added mixed audio processor (#2929)hkc
* Use RL_QUADS/RL_TRIANGLES for single-pixel drawing Addresses problem mentioned in https://github.com/raysan5/raylib/issues/2744#issuecomment-1273568263 (in short: when drawing pixels using DrawPixel{,V} in camera mode, upscaled pixel becomes a line instead of bigger pixel) * [rtextures] Fixed scaling down in ImageTextEx Closes #2755 * Added global audio processor * Renamed struct member to follow naming conventions * Added example for AttachAudioMixedProcessor
2023-01-27Fix warnings and bad project settings for 4.5 release (#2894)Jeffery Myers
2023-01-01Update year to 2023Ray
2022-11-08removing typo (#2790)Dor Shapira
2022-08-11Fix typos and reworded a question in the FAQ (#2628)SomeUnusualGames
2022-08-03Fix rendering issue in audio_raw_stream.c example (#2608)TheManTheMythTheGameDev
2022-08-02Update audio_music_stream.cRay
2022-08-02Update audio_raw_stream.cRay
2022-07-29Create audio_stream_effects.pngRay
2022-07-29Create audio_stream_effects.cRay
2022-07-29Update audio_music_stream.cRay
2022-07-29Update audio_music_stream.cRay
2022-07-20REVIEWED: examples descriptionsRay
2022-06-21Added new comment to examplesRay
2022-05-12Fix crash with delay demo. (#2472)ptarabbia
2022-03-30Update audio_music_stream.cRay
2022-03-30ADDED: Audio stream processors support -WIP- #2212Ray
This feature is still under consideration/testing and it doesn't work properly, at least the Delay Effect processor.
2022-03-25Rename audio callbackRay
2022-03-24ADDED: Audio stream input callback #2212 -WIP-Ray
WARNING: This addition is based on a PR and it's still under review, not sure if it will be maintained in the future. In general, raylib tries to avoid callbacks usage mechanisms.
2022-01-16Add panning to raudio and update audio_raw_stream example. (#2205)ptarabbia
* Add panning to raudio and update audio_raw_stream example. * remove pan smoothing, code formatting changes following pull request comments Co-authored-by: Ray <[email protected]>
2021-07-16Improve assets license informationraysan5
2021-07-05Update audio_raw_stream.craysan5
2021-07-05REVIEWED: Need to set default buffer size for raw data #1770raysan5
This design should probably be changed...
2021-06-03WARNING: BREAKING: Consistency renamingsRay
RENAMED: InitAudioStream() -> LoadAudioStream() RENAMED: CloseAudioStream() -> UnloadAudioStream()
2021-05-08Added support for additional mouse buttons (#1753)Lambert Wang
* Added support for additional mouse buttons * Renamed mouse button enum Co-authored-by: Lambert Wang <[email protected]>
2021-04-22Remove trail spacesRay
2021-02-20[Examples] Fix typecast warnings in examples. (#1601)Jeffery Myers
* Fixing typecast warnings generated by visual studio 2019 in examples. * Changes to fixes based on feedback Co-authored-by: Jeffery Myers <[email protected]>
2020-12-12Reviewed SetAudioBufferPitch() #1450Ray
2020-12-03Update user nameRay
2020-08-16RENAMED: FormatText() -> TextFormat()raysan5
This function was renamed for consistency in raylib 3.0, just unified all examples to use TextFormat() instead of FormatText()
2020-07-14Update resources LICENSEraysan5
2020-07-14Update audio resources LICENSEraysan5
2020-06-03[examples] Review/change audio resourcesraysan5
2020-05-14WARNING: BREAKING CHANGE: Review audio looping systemraysan5
Current looping system was broken, `loopCount` has been converted to `bool looping` and user can enable/disable with `music.looping = false`. `SetMusicLoopCount()` has been removed.
2020-01-09Review example and screenshotsRay
2019-09-03Remove sampleLeft from Music struct... -WIP-Ray
...moved to internal AudioBuffer structure as totalFramesProcessed, now time measure works again... but there is some problem with looping... Also note some inconsistencies between frames and samples, it seems those concepts are not considered correctly in the code.
2019-08-13RENAMED: IsAudioBufferProcessed() -> IsAudioStreamProcessed()raysan5
Renamed for consistency with similar functions
2019-06-29Remove old OpenAL commentsRay
2019-06-29Review multichannel PR additionRay
- Capital letters at beginning - for loop spacing and brackets - Functions naming for consistency - Example following examples template - Other tweaks
2019-06-29add multi channel audio to raudio (#895)chriscamacho
* added multi channel sound replay to raudio added -fPIC to Makefile for Linux added simple lighting and audio multi channel to examples Makefile * not properly reporting audio buffer pool size...