Update FLAC, MP3 and WAV decoders.

This commit is contained in:
David Reid
2020-07-25 15:42:50 +10:00
parent 4f78581a92
commit b067926d6d
4 changed files with 30 additions and 21 deletions
+7 -4
View File
@@ -1,6 +1,6 @@
/*
FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
dr_flac - v0.12.15 - 2020-07-06
dr_flac - v0.12.16 - 2020-07-25
David Reid - mackron@gmail.com
@@ -232,7 +232,7 @@ extern "C" {
#define DRFLAC_VERSION_MAJOR 0
#define DRFLAC_VERSION_MINOR 12
#define DRFLAC_VERSION_REVISION 15
#define DRFLAC_VERSION_REVISION 16
#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. */
@@ -317,7 +317,7 @@ typedef drflac_uint32 drflac_bool32;
#endif
DRFLAC_API void drflac_version(drflac_uint32* pMajor, drflac_uint32* pMinor, drflac_uint32* pRevision);
DRFLAC_API const char* drflac_version_string();
DRFLAC_API const char* drflac_version_string(void);
/*
As data is read from the client it is placed into an internal buffer for fast access. This controls the size of that buffer. Larger values means more speed,
@@ -1673,7 +1673,7 @@ DRFLAC_API void drflac_version(drflac_uint32* pMajor, drflac_uint32* pMinor, drf
}
}
DRFLAC_API const char* drflac_version_string()
DRFLAC_API const char* drflac_version_string(void)
{
return DRFLAC_VERSION_STRING;
}
@@ -11752,6 +11752,9 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
/*
REVISION HISTORY
================
v0.12.16 - 2020-07-25
- Fix a compilation warning.
v0.12.15 - 2020-07-06
- Check for negative LPC shifts and return an error.