|
1 | 1 | /*
|
2 | 2 | FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
|
3 |
| -dr_flac - v0.12.42 - 2023-11-02 |
| 3 | +dr_flac - v0.12.43 - 2024-12-17 |
4 | 4 |
|
5 | 5 |
|
6 | 6 |
|
@@ -179,7 +179,7 @@ reports metadata to the application through the use of a callback, and every met
|
179 | 179 |
|
180 | 180 | The main opening APIs (`drflac_open()`, etc.) will fail if the header is not present. The presents a problem in certain scenarios such as broadcast style
|
181 | 181 | streams or internet radio where the header may not be present because the user has started playback mid-stream. To handle this, use the relaxed APIs:
|
182 |
| - |
| 182 | + |
183 | 183 | `drflac_open_relaxed()`
|
184 | 184 | `drflac_open_with_metadata_relaxed()`
|
185 | 185 |
|
@@ -235,7 +235,7 @@ extern "C" {
|
235 | 235 |
|
236 | 236 | #define DRFLAC_VERSION_MAJOR 0
|
237 | 237 | #define DRFLAC_VERSION_MINOR 12
|
238 |
| -#define DRFLAC_VERSION_REVISION 42 |
| 238 | +#define DRFLAC_VERSION_REVISION 43 |
239 | 239 | #define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
240 | 240 |
|
241 | 241 | #include <stddef.h> /* For size_t. */
|
@@ -348,11 +348,11 @@ but also more memory. In my testing there is diminishing returns after about 4KB
|
348 | 348 | #define DRFLAC_64BIT
|
349 | 349 | #endif
|
350 | 350 |
|
351 |
| -#if defined(__x86_64__) || defined(_M_X64) |
| 351 | +#if defined(__x86_64__) || (defined(_M_X64) && !defined(_M_ARM64EC)) |
352 | 352 | #define DRFLAC_X64
|
353 | 353 | #elif defined(__i386) || defined(_M_IX86)
|
354 | 354 | #define DRFLAC_X86
|
355 |
| -#elif defined(__arm__) || defined(_M_ARM) || defined(__arm64) || defined(__arm64__) || defined(__aarch64__) || defined(_M_ARM64) |
| 355 | +#elif defined(__arm__) || defined(_M_ARM) || defined(__arm64) || defined(__arm64__) || defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC) |
356 | 356 | #define DRFLAC_ARM
|
357 | 357 | #endif
|
358 | 358 | /* End Architecture Detection */
|
@@ -5393,6 +5393,12 @@ static drflac_bool32 drflac__read_subframe_header(drflac_bs* bs, drflac_subframe
|
5393 | 5393 | return DRFLAC_FALSE;
|
5394 | 5394 | }
|
5395 | 5395 |
|
| 5396 | + /* |
| 5397 | + Default to 0 for the LPC order. It's important that we always set this to 0 for non LPC |
| 5398 | + and FIXED subframes because we'll be using it in a generic validation check later. |
| 5399 | + */ |
| 5400 | + pSubframe->lpcOrder = 0; |
| 5401 | + |
5396 | 5402 | type = (header & 0x7E) >> 1;
|
5397 | 5403 | if (type == 0) {
|
5398 | 5404 | pSubframe->subframeType = DRFLAC_SUBFRAME_CONSTANT;
|
@@ -5465,6 +5471,18 @@ static drflac_bool32 drflac__decode_subframe(drflac_bs* bs, drflac_frame* frame,
|
5465 | 5471 |
|
5466 | 5472 | pSubframe->pSamplesS32 = pDecodedSamplesOut;
|
5467 | 5473 |
|
| 5474 | + /* |
| 5475 | + pDecodedSamplesOut will be pointing to a buffer that was allocated with enough memory to store |
| 5476 | + maxBlockSizeInPCMFrames samples (as specified in the FLAC header). We need to guard against an |
| 5477 | + overflow here. At a higher level we are checking maxBlockSizeInPCMFrames from the header, but |
| 5478 | + here we need to do an additional check to ensure this frame's block size fully encompasses any |
| 5479 | + warmup samples which is determined by the LPC order. For non LPC and FIXED subframes, the LPC |
| 5480 | + order will be have been set to 0 in drflac__read_subframe_header(). |
| 5481 | + */ |
| 5482 | + if (frame->header.blockSizeInPCMFrames < pSubframe->lpcOrder) { |
| 5483 | + return DRFLAC_FALSE; |
| 5484 | + } |
| 5485 | + |
5468 | 5486 | switch (pSubframe->subframeType)
|
5469 | 5487 | {
|
5470 | 5488 | case DRFLAC_SUBFRAME_CONSTANT:
|
@@ -6702,10 +6720,10 @@ static drflac_bool32 drflac__read_and_decode_metadata(drflac_read_proc onRead, d
|
6702 | 6720 |
|
6703 | 6721 | /* Skip to the index point count */
|
6704 | 6722 | pRunningData += 35;
|
6705 |
| - |
| 6723 | + |
6706 | 6724 | indexCount = pRunningData[0];
|
6707 | 6725 | pRunningData += 1;
|
6708 |
| - |
| 6726 | + |
6709 | 6727 | bufferSize += indexCount * sizeof(drflac_cuesheet_track_index);
|
6710 | 6728 |
|
6711 | 6729 | /* Quick validation check. */
|
@@ -12077,6 +12095,10 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
|
12077 | 12095 | /*
|
12078 | 12096 | REVISION HISTORY
|
12079 | 12097 | ================
|
| 12098 | +v0.12.43 - 2024-12-17 |
| 12099 | + - Fix a possible buffer overflow during decoding. |
| 12100 | + - Improve detection of ARM64EC |
| 12101 | + |
12080 | 12102 | v0.12.42 - 2023-11-02
|
12081 | 12103 | - Fix build for ARMv6-M.
|
12082 | 12104 | - Fix a compilation warning with GCC.
|
|
0 commit comments