Update dr_flac and dr_wav.

This commit is contained in:
David Reid
2020-03-07 08:30:18 +10:00
parent 2344405606
commit 1ac6bcf779
2 changed files with 11 additions and 5 deletions
+5 -2
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.5 - 2020-01-30
dr_flac - v0.12.6 - 2020-03-07
David Reid - mackron@gmail.com
*/
@@ -1187,7 +1187,7 @@ static DRFLAC_INLINE drflac_bool32 drflac_has_sse41()
#endif
#endif
#if defined(_MSC_VER) && _MSC_VER >= 1300
#if defined(_MSC_VER) && _MSC_VER >= 1400
#define DRFLAC_HAS_BYTESWAP16_INTRINSIC
#define DRFLAC_HAS_BYTESWAP32_INTRINSIC
#define DRFLAC_HAS_BYTESWAP64_INTRINSIC
@@ -10739,6 +10739,9 @@ drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterator* pIter,
/*
REVISION HISTORY
================
v0.12.6 - 2020-03-07
- Fix compilation error with Visual Studio .NET 2003.
v0.12.5 - 2020-01-30
- Silence some static analysis warnings.