summaryrefslogtreecommitdiffhomepage
path: root/src/stb_vorbis.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2016-04-06 17:45:25 +0200
committerraysan5 <[email protected]>2016-04-06 17:45:25 +0200
commit3b67a4cfba7d3b5dca805b1d1718fd2c9db64e99 (patch)
tree688d037c7aa44c8b074b1832333a21899d9153b2 /src/stb_vorbis.h
parent1a2a44200aea871739f0609abb353f40da08dab3 (diff)
downloadraylib-3b67a4cfba7d3b5dca805b1d1718fd2c9db64e99.tar.gz
raylib-3b67a4cfba7d3b5dca805b1d1718fd2c9db64e99.zip
Update stb libs to latest version
Diffstat (limited to 'src/stb_vorbis.h')
-rw-r--r--src/stb_vorbis.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/src/stb_vorbis.h b/src/stb_vorbis.h
index bd318972..624ce4bc 100644
--- a/src/stb_vorbis.h
+++ b/src/stb_vorbis.h
@@ -1,4 +1,4 @@
-// Ogg Vorbis audio decoder - v1.07 - public domain
+// Ogg Vorbis audio decoder - v1.09 - public domain
// http://nothings.org/stb_vorbis/
//
// Original version written by Sean Barrett in 2007.
@@ -9,9 +9,9 @@
//
// LICENSE
//
-// This software is in the public domain. Where that dedication is not
-// recognized, you are granted a perpetual, irrevocable license to copy,
-// distribute, and modify this file as you see fit.
+// This software is dual-licensed to the public domain and under the following
+// license: you are granted a perpetual, irrevocable license to copy, modify,
+// publish, and distribute this file as you see fit.
//
// No warranty for any purpose is expressed or implied by the author (nor
// by RAD Game Tools). Report bugs and send enhancements to the author.
@@ -31,11 +31,14 @@
// Terje Mathisen Niklas Frykholm Andy Hill
// Casey Muratori John Bolton Gargaj
// Laurent Gomila Marc LeBlanc Ronny Chevalier
-// Bernhard Wodo Evan Balster "alxprd"@github
+// Bernhard Wodo Evan Balster alxprd@github
// Tom Beaumont Ingo Leitgeb Nicolas Guillemot
-// Phillip Bennefall Rohit
+// Phillip Bennefall Rohit Thiago Goulart
+// manxorist@github saga musix
//
// Partial history:
+// 1.09 - 2016/04/04 - back out 'truncation of last frame' fix from previous version
+// 1.08 - 2016/04/02 - warnings; setup memory leaks; truncation of last frame
// 1.07 - 2015/01/16 - fixes for crashes on invalid files; warning fixes; const
// 1.06 - 2015/08/31 - full, correct support for seeking API (Dougall Johnson)
// some crash fixes when out of memory or with corrupt files
@@ -72,11 +75,6 @@
#include "utils.h" // Android fopen function map
#endif
-// RaySan: Added for Linux
-#ifdef __linux
- #include <alloca.h>
-#endif
-
#ifdef __cplusplus
extern "C" {
#endif