diff options
| author | raysan5 <raysan5@gmail.com> | 2019-01-19 16:51:41 +0100 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2019-01-19 16:51:41 +0100 |
| commit | 0d2cfce18edf8016b7ff865aafab25ee7a352507 (patch) | |
| tree | 11f322e6398e3495d95c63b2f8a0c79ee8dbb717 /src | |
| parent | 557456cace87d165a851eda2356df14d8afab99d (diff) | |
| download | raylib-0d2cfce18edf8016b7ff865aafab25ee7a352507.tar.gz raylib-0d2cfce18edf8016b7ff865aafab25ee7a352507.zip | |
Review raudio comments
Diffstat (limited to 'src')
| -rw-r--r-- | src/raudio.c | 11 | ||||
| -rw-r--r-- | src/raudio.h | 11 |
2 files changed, 6 insertions, 16 deletions
diff --git a/src/raudio.c b/src/raudio.c index 3510acd5..2d28ec56 100644 --- a/src/raudio.c +++ b/src/raudio.c @@ -1,6 +1,6 @@ /********************************************************************************************** * -* raylib.audio - Basic funtionality to work with audio +* raudio - A simple and easy-to-use audio library based on mini_al * * FEATURES: * - Manage audio device (init/close) @@ -25,18 +25,13 @@ * Selected desired fileformats to be supported for loading. Some of those formats are * supported by default, to remove support, just comment unrequired #define in this module * -* LIMITATIONS (only OpenAL Soft): -* Only up to two channels supported: MONO and STEREO (for additional channels, use AL_EXT_MCFORMATS) -* Only the following sample sizes supported: 8bit PCM, 16bit PCM, 32-bit float PCM (using AL_EXT_FLOAT32) -* * DEPENDENCIES: * mini_al - Audio device/context management (https://github.com/dr-soft/mini_al) * 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 -* -* *OpenAL Soft - Audio device management, still used on HTML5 and OSX platforms +* dr_mp3 - MP3 audio file loading * * CONTRIBUTORS: * David Reid (github: @mackron) (Nov. 2017): @@ -51,7 +46,7 @@ * * LICENSE: zlib/libpng * -* Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) +* Copyright (c) 2014-2019 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. diff --git a/src/raudio.h b/src/raudio.h index 01c93741..24669d76 100644 --- a/src/raudio.h +++ b/src/raudio.h @@ -1,6 +1,6 @@ /********************************************************************************************** * -* raylib.audio - Basic funtionality to work with audio +* raudio - A simple and easy-to-use audio library based on mini_al * * FEATURES: * - Manage audio device (init/close) @@ -10,18 +10,13 @@ * - Manage mixing channels * - Manage raw audio context * -* LIMITATIONS (only OpenAL Soft): -* Only up to two channels supported: MONO and STEREO (for additional channels, use AL_EXT_MCFORMATS) -* Only the following sample sizes supported: 8bit PCM, 16bit PCM, 32-bit float PCM (using AL_EXT_FLOAT32) -* * DEPENDENCIES: * mini_al - Audio device/context management (https://github.com/dr-soft/mini_al) * 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 -* -* *OpenAL Soft - Audio device management, still used on HTML5 and OSX platforms +* dr_mp3 - MP3 audio file loading * * CONTRIBUTORS: * David Reid (github: @mackron) (Nov. 2017): @@ -36,7 +31,7 @@ * * LICENSE: zlib/libpng * -* Copyright (c) 2014-2018 Ramon Santamaria (@raysan5) +* Copyright (c) 2014-2019 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. |
