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.c | |
| parent | 9d3ad52160a0e32271a8e3d76d9ea95e9bd0684a (diff) | |
| download | raylib-6d1b712a9678a7e1d57d994ab51afafbe06ec5fb.tar.gz raylib-6d1b712a9678a7e1d57d994ab51afafbe06ec5fb.zip | |
Reviewed modules comments
Diffstat (limited to 'src/audio.c')
| -rw-r--r-- | src/audio.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/audio.c b/src/audio.c index 3684e10a..3ddbf0ce 100644 --- a/src/audio.c +++ b/src/audio.c @@ -2,18 +2,22 @@ * * 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 +* +* Module Configuration Flags: +* AUDIO_STANDALONE - Use this module as standalone library (independently of raylib) * * Many thanks to Joshua Reisenauer (github: @kd7tck) for the following additions: * XM audio module support (jar_xm) @@ -21,6 +25,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 |
