Skip to content

Commit ede9524

Browse files
committed
updated dr_flac from mainstream.
(cherry picked from commit 6112667)
1 parent ebdd9cc commit ede9524

File tree

1 file changed

+29
-7
lines changed

1 file changed

+29
-7
lines changed

src/codecs/dr_libs/dr_flac.h

+29-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
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
44

55
David Reid - [email protected]
66

@@ -179,7 +179,7 @@ reports metadata to the application through the use of a callback, and every met
179179

180180
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
181181
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+
183183
`drflac_open_relaxed()`
184184
`drflac_open_with_metadata_relaxed()`
185185

@@ -235,7 +235,7 @@ extern "C" {
235235

236236
#define DRFLAC_VERSION_MAJOR 0
237237
#define DRFLAC_VERSION_MINOR 12
238-
#define DRFLAC_VERSION_REVISION 42
238+
#define DRFLAC_VERSION_REVISION 43
239239
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
240240

241241
#include <stddef.h> /* For size_t. */
@@ -348,11 +348,11 @@ but also more memory. In my testing there is diminishing returns after about 4KB
348348
#define DRFLAC_64BIT
349349
#endif
350350

351-
#if defined(__x86_64__) || defined(_M_X64)
351+
#if defined(__x86_64__) || (defined(_M_X64) && !defined(_M_ARM64EC))
352352
#define DRFLAC_X64
353353
#elif defined(__i386) || defined(_M_IX86)
354354
#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)
356356
#define DRFLAC_ARM
357357
#endif
358358
/* End Architecture Detection */
@@ -5393,6 +5393,12 @@ static drflac_bool32 drflac__read_subframe_header(drflac_bs* bs, drflac_subframe
53935393
return DRFLAC_FALSE;
53945394
}
53955395

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+
53965402
type = (header & 0x7E) >> 1;
53975403
if (type == 0) {
53985404
pSubframe->subframeType = DRFLAC_SUBFRAME_CONSTANT;
@@ -5465,6 +5471,18 @@ static drflac_bool32 drflac__decode_subframe(drflac_bs* bs, drflac_frame* frame,
54655471

54665472
pSubframe->pSamplesS32 = pDecodedSamplesOut;
54675473

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+
54685486
switch (pSubframe->subframeType)
54695487
{
54705488
case DRFLAC_SUBFRAME_CONSTANT:
@@ -6702,10 +6720,10 @@ static drflac_bool32 drflac__read_and_decode_metadata(drflac_read_proc onRead, d
67026720

67036721
/* Skip to the index point count */
67046722
pRunningData += 35;
6705-
6723+
67066724
indexCount = pRunningData[0];
67076725
pRunningData += 1;
6708-
6726+
67096727
bufferSize += indexCount * sizeof(drflac_cuesheet_track_index);
67106728

67116729
/* Quick validation check. */
@@ -12077,6 +12095,10 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
1207712095
/*
1207812096
REVISION HISTORY
1207912097
================
12098+
v0.12.43 - 2024-12-17
12099+
- Fix a possible buffer overflow during decoding.
12100+
- Improve detection of ARM64EC
12101+
1208012102
v0.12.42 - 2023-11-02
1208112103
- Fix build for ARMv6-M.
1208212104
- Fix a compilation warning with GCC.

0 commit comments

Comments
 (0)