Update external libraries.

This commit is contained in:
David Reid
2018-08-02 19:51:33 +10:00
parent ab6c1b353c
commit 88a694afe5
2 changed files with 14 additions and 22 deletions
+5 -2
View File
@@ -1,5 +1,5 @@
// MP3 audio decoder. Public domain. See "unlicense" statement at the end of this file.
// dr_mp3 - v0.2.7 - 2018-07-13
// dr_mp3 - v0.2.8 - 2018-08-02
//
// David Reid - mackron@gmail.com
//
@@ -354,7 +354,7 @@ void drmp3_free(void* p);
#if defined(_MSC_VER)
#include <intrin.h>
#endif
#include <immintrin.h>
#include <emmintrin.h>
#define DRMP3_HAVE_SSE 1
#define DRMP3_HAVE_SIMD 1
#define DRMP3_VSTORE _mm_storeu_ps
@@ -2746,6 +2746,9 @@ void drmp3_free(void* p)
// REVISION HISTORY
// ===============
//
// v0.2.8 - 2018-08-02
// - Fix compilation errors with older versions of GCC.
//
// v0.2.7 - 2018-07-13
// - Bring up to date with minimp3.
//