diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-28 13:14:27 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-28 13:14:27 +0200 |
commit | 5a11abc899655d980d2e0aacaa743c88bcbdade8 (patch) | |
tree | 12fadcd49bf7822b8a1c7eaeed830cbcb4110469 /thirdparty/misc/qoa.h | |
parent | 60765bebe4ce6a1f645f6c934aa4ea4058cf3b90 (diff) | |
parent | e67cc7346387c0bf27bd9606ebfca2f550d59bcd (diff) | |
download | redot-engine-5a11abc899655d980d2e0aacaa743c88bcbdade8.tar.gz |
Merge pull request #96198 from DeeJayLSP/qoa-leak
ResourceImporterWAV: Fix memory leak on QOA import
Diffstat (limited to 'thirdparty/misc/qoa.h')
-rw-r--r-- | thirdparty/misc/qoa.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/thirdparty/misc/qoa.h b/thirdparty/misc/qoa.h index c890b88bd6..23612bb0bf 100644 --- a/thirdparty/misc/qoa.h +++ b/thirdparty/misc/qoa.h @@ -394,9 +394,9 @@ unsigned int qoa_encode_frame(const short *sample_data, qoa_desc *qoa, unsigned #ifdef QOA_RECORD_TOTAL_ERROR qoa_uint64_t best_error = -1; #endif - qoa_uint64_t best_slice = -1; - qoa_lms_t best_lms = {{-1, -1, -1, -1}, {-1, -1, -1, -1}}; - int best_scalefactor = -1; + qoa_uint64_t best_slice = 0; + qoa_lms_t best_lms = {}; + int best_scalefactor = 0; for (int sfi = 0; sfi < 16; sfi++) { /* There is a strong correlation between the scalefactors of |