summaryrefslogtreecommitdiffhomepage
path: root/src/audio.h
diff options
context:
space:
mode:
authorvictorfisac <[email protected]>2017-03-24 15:37:58 +0100
committervictorfisac <[email protected]>2017-03-24 15:37:58 +0100
commitb2f0c7ca8b8e9484560a45c4547794fa62cf484f (patch)
tree3ab4d3ef3a49e0f75dac253098611d1f3e6a70b9 /src/audio.h
parentc964559bc966292a7d70f00559ea80c224aab96d (diff)
parent3f0c29642225f4da40e29e83117a4589f95be538 (diff)
downloadraylib-b2f0c7ca8b8e9484560a45c4547794fa62cf484f.tar.gz
raylib-b2f0c7ca8b8e9484560a45c4547794fa62cf484f.zip
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'src/audio.h')
-rw-r--r--src/audio.h30
1 files changed, 17 insertions, 13 deletions
diff --git a/src/audio.h b/src/audio.h
index 01ed9f72..8047d9bb 100644
--- a/src/audio.h
+++ b/src/audio.h
@@ -1,13 +1,16 @@
/**********************************************************************************************
*
-* raylib.audio
+* raylib.audio - Basic funtionality to work with audio
*
-* This module provides basic functionality to work with audio:
-* Manage audio device (init/close)
-* Load and Unload audio files (WAV, OGG, FLAC, XM, MOD)
-* Play/Stop/Pause/Resume loaded audio
-* Manage mixing channels
-* Manage raw audio context
+* DESCRIPTION:
+*
+* This module provides basic functionality to:
+* - Manage audio device (init/close)
+* - Load and unload audio files
+* - Format wave data (sample rate, size, channels)
+* - Play/Stop/Pause/Resume loaded audio
+* - Manage mixing channels
+* - Manage raw audio context
*
* DEPENDENCIES:
* OpenAL Soft - Audio device management (http://kcat.strangesoft.net/openal.html)
@@ -16,16 +19,17 @@
* 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)
-* MOD audio module support (jar_mod)
-* Mixing channels support
-* Raw audio context support
+* CONTRIBUTORS:
+* Joshua Reisenauer (github: @kd7tck):
+* - XM audio module support (jar_xm)
+* - MOD audio module support (jar_mod)
+* - Mixing channels support
+* - Raw audio context support
*
*
* LICENSE: zlib/libpng
*
-* Copyright (c) 2014-2016 Ramon Santamaria (@raysan5)
+* Copyright (c) 2014-2017 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.