From f97bc10b241b19f2b171dfc8ea643fc46cd9ae44 Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 7 Feb 2022 17:39:25 +1000 Subject: [PATCH] Update dr_flac. --- miniaudio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniaudio.h b/miniaudio.h index 9deac7eb..94b10126 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -57505,7 +57505,7 @@ extern "C" { #define DRFLAC_XSTRINGIFY(x) DRFLAC_STRINGIFY(x) #define DRFLAC_VERSION_MAJOR 0 #define DRFLAC_VERSION_MINOR 12 -#define DRFLAC_VERSION_REVISION 35 +#define DRFLAC_VERSION_REVISION 36 #define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION) #include typedef signed char drflac_int8; @@ -81254,7 +81254,7 @@ static drflac_bool32 drflac__decode_samples_with_residual__rice__neon(drflac_bs* { DRFLAC_ASSERT(bs != NULL); DRFLAC_ASSERT(pSamplesOut != NULL); - if (order > 0 && order <= 12) { + if (lpcOrder > 0 && lpcOrder <= 12) { if (drflac__use_64_bit_prediction(bitsPerSample, lpcOrder, lpcPrecision)) { return drflac__decode_samples_with_residual__rice__neon_64(bs, count, riceParam, lpcOrder, lpcShift, coefficients, pSamplesOut); } else {