mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Update dr_flac.
This commit is contained in:
+6
-3
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
|
FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
|
||||||
dr_flac - v0.12.21 - 2020-11-01
|
dr_flac - v0.12.22 - 2020-11-01
|
||||||
|
|
||||||
David Reid - mackron@gmail.com
|
David Reid - mackron@gmail.com
|
||||||
|
|
||||||
@@ -232,7 +232,7 @@ extern "C" {
|
|||||||
|
|
||||||
#define DRFLAC_VERSION_MAJOR 0
|
#define DRFLAC_VERSION_MAJOR 0
|
||||||
#define DRFLAC_VERSION_MINOR 12
|
#define DRFLAC_VERSION_MINOR 12
|
||||||
#define DRFLAC_VERSION_REVISION 21
|
#define DRFLAC_VERSION_REVISION 22
|
||||||
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
||||||
|
|
||||||
#include <stddef.h> /* For size_t. */
|
#include <stddef.h> /* For size_t. */
|
||||||
@@ -1386,7 +1386,7 @@ Unfortuantely dr_flac depends on this for a few things so we're just going to di
|
|||||||
#if _MSC_VER >= 1600 && !defined(DRFLAC_NO_SSE41) /* 2010 */
|
#if _MSC_VER >= 1600 && !defined(DRFLAC_NO_SSE41) /* 2010 */
|
||||||
#define DRFLAC_SUPPORT_SSE41
|
#define DRFLAC_SUPPORT_SSE41
|
||||||
#endif
|
#endif
|
||||||
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC__ >= 3)))
|
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)))
|
||||||
/* Assume GNUC-style. */
|
/* Assume GNUC-style. */
|
||||||
#if defined(__SSE2__) && !defined(DRFLAC_NO_SSE2)
|
#if defined(__SSE2__) && !defined(DRFLAC_NO_SSE2)
|
||||||
#define DRFLAC_SUPPORT_SSE2
|
#define DRFLAC_SUPPORT_SSE2
|
||||||
@@ -11789,6 +11789,9 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
|
|||||||
/*
|
/*
|
||||||
REVISION HISTORY
|
REVISION HISTORY
|
||||||
================
|
================
|
||||||
|
v0.12.22 - 2020-11-01
|
||||||
|
- Fix an error with the previous release.
|
||||||
|
|
||||||
v0.12.21 - 2020-11-01
|
v0.12.21 - 2020-11-01
|
||||||
- Fix a possible deadlock when seeking.
|
- Fix a possible deadlock when seeking.
|
||||||
- Improve compiler support for older versions of GCC.
|
- Improve compiler support for older versions of GCC.
|
||||||
|
|||||||
+2
-2
@@ -43247,7 +43247,7 @@ extern "C" {
|
|||||||
#define DRFLAC_XSTRINGIFY(x) DRFLAC_STRINGIFY(x)
|
#define DRFLAC_XSTRINGIFY(x) DRFLAC_STRINGIFY(x)
|
||||||
#define DRFLAC_VERSION_MAJOR 0
|
#define DRFLAC_VERSION_MAJOR 0
|
||||||
#define DRFLAC_VERSION_MINOR 12
|
#define DRFLAC_VERSION_MINOR 12
|
||||||
#define DRFLAC_VERSION_REVISION 21
|
#define DRFLAC_VERSION_REVISION 22
|
||||||
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
typedef signed char drflac_int8;
|
typedef signed char drflac_int8;
|
||||||
@@ -51224,7 +51224,7 @@ DRWAV_API drwav_bool32 drwav_fourcc_equal(const drwav_uint8* a, const char* b)
|
|||||||
#if _MSC_VER >= 1600 && !defined(DRFLAC_NO_SSE41)
|
#if _MSC_VER >= 1600 && !defined(DRFLAC_NO_SSE41)
|
||||||
#define DRFLAC_SUPPORT_SSE41
|
#define DRFLAC_SUPPORT_SSE41
|
||||||
#endif
|
#endif
|
||||||
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC__ >= 3)))
|
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)))
|
||||||
#if defined(__SSE2__) && !defined(DRFLAC_NO_SSE2)
|
#if defined(__SSE2__) && !defined(DRFLAC_NO_SSE2)
|
||||||
#define DRFLAC_SUPPORT_SSE2
|
#define DRFLAC_SUPPORT_SSE2
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user