From 3ed0f402f2d32be215d68aeb30a164e6a6cdcb52 Mon Sep 17 00:00:00 2001 From: David Reid Date: Thu, 5 Jul 2018 22:31:26 +1000 Subject: [PATCH] Update dr_flac. --- extras/dr_flac.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/extras/dr_flac.h b/extras/dr_flac.h index f0f407ea..c836847e 100644 --- a/extras/dr_flac.h +++ b/extras/dr_flac.h @@ -1,5 +1,5 @@ // FLAC audio decoder. Public domain. See "unlicense" statement at the end of this file. -// dr_flac - v0.9.6 - 2018-06-29 +// dr_flac - v0.9.7 - 2018-07-05 // // David Reid - mackron@gmail.com @@ -1483,6 +1483,7 @@ static drflac_bool32 drflac__read_int32(drflac_bs* bs, unsigned int bitCount, dr return DRFLAC_TRUE; } +#ifdef DRFLAC_64BIT static drflac_bool32 drflac__read_uint64(drflac_bs* bs, unsigned int bitCount, drflac_uint64* pResultOut) { drflac_assert(bitCount <= 64); @@ -1501,6 +1502,7 @@ static drflac_bool32 drflac__read_uint64(drflac_bs* bs, unsigned int bitCount, d *pResultOut = (((drflac_uint64)resultHi) << 32) | ((drflac_uint64)resultLo); return DRFLAC_TRUE; } +#endif // Function below is unused, but leaving it here in case I need to quickly add it again. #if 0 @@ -5719,6 +5721,9 @@ const char* drflac_next_vorbis_comment(drflac_vorbis_comment_iterator* pIter, dr // REVISION HISTORY // +// v0.9.7 - 2018-07-05 +// - Fix a warning. +// // v0.9.6 - 2018-06-29 // - Fix some typos. //