Commit 37c14f3e authored by David Reid's avatar David Reid

Update dr_mp3.

parent dbe3166c
// 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.
//
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment