diff options
| author | raysan5 <[email protected]> | 2016-11-16 18:46:13 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2016-11-16 18:46:13 +0100 |
| commit | 6d1b712a9678a7e1d57d994ab51afafbe06ec5fb (patch) | |
| tree | a42886c764a5b081d58b9a87ddbfc760febb7b61 /src/audio.h | |
| parent | 9d3ad52160a0e32271a8e3d76d9ea95e9bd0684a (diff) | |
| download | raylib-6d1b712a9678a7e1d57d994ab51afafbe06ec5fb.tar.gz raylib-6d1b712a9678a7e1d57d994ab51afafbe06ec5fb.zip | |
Reviewed modules comments
Diffstat (limited to 'src/audio.h')
| -rw-r--r-- | src/audio.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/audio.h b/src/audio.h index 923492ca..5de8f613 100644 --- a/src/audio.h +++ b/src/audio.h @@ -2,18 +2,19 @@ * * raylib.audio * -* Basic functions to manage Audio: +* This module provides basic functionality to work with audio: * Manage audio device (init/close) -* Load and Unload audio files +* Load and Unload audio files (WAV, OGG, FLAC, XM, MOD) * Play/Stop/Pause/Resume loaded audio * Manage mixing channels * Manage raw audio context * -* Uses external lib: -* OpenAL Soft - Audio device management lib (http://kcat.strangesoft.net/openal.html) -* stb_vorbis - Ogg audio files loading (http://www.nothings.org/stb_vorbis/) -* jar_xm - XM module file loading -* jar_mod - MOD audio file loading +* External libs: +* OpenAL Soft - Audio device management (http://kcat.strangesoft.net/openal.html) +* stb_vorbis - OGG audio files loading (http://www.nothings.org/stb_vorbis/) +* jar_xm - XM module file loading +* jar_mod - MOD audio file loading +* dr_flac - FLAC audio file loading * * Many thanks to Joshua Reisenauer (github: @kd7tck) for the following additions: * XM audio module support (jar_xm) @@ -21,6 +22,7 @@ * Mixing channels support * Raw audio context support * +* * Copyright (c) 2014-2016 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event |
