mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Update dr_mp3.
This commit is contained in:
+9
-1
@@ -1,5 +1,5 @@
|
||||
// MP3 audio decoder. Public domain. See "unlicense" statement at the end of this file.
|
||||
// dr_mp3 - v0.2.2 - 2018-04-28
|
||||
// dr_mp3 - v0.2.3 - 2018-04-29
|
||||
//
|
||||
// David Reid - mackron@gmail.com
|
||||
//
|
||||
@@ -309,6 +309,11 @@ void drmp3_free(void* p);
|
||||
#include <stdint.h>
|
||||
#include <limits.h> // For INT_MAX
|
||||
|
||||
// Disable SIMD when compiling with TCC for now.
|
||||
#if defined(__TINYC__)
|
||||
#define DR_MP3_NO_SIMD
|
||||
#endif
|
||||
|
||||
#define DRMP3_MAX_FREE_FORMAT_FRAME_SIZE 2304 /* more than ISO spec's */
|
||||
#define DRMP3_MAX_FRAME_SYNC_MATCHES 10
|
||||
|
||||
@@ -2771,6 +2776,9 @@ void drmp3_free(void* p)
|
||||
// REVISION HISTORY
|
||||
// ===============
|
||||
//
|
||||
// v0.2.3 - 2018-04-29
|
||||
// - Fix TCC build.
|
||||
//
|
||||
// v0.2.2 - 2018-04-28
|
||||
// - Fix bug when opening a decoder from memory.
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user