Skip to content

Commit 310212f

Browse files
committed
updated dr_flac.h from mainstream.
1 parent f8dd25b commit 310212f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/codecs/dr_libs/dr_flac.h

Lines changed: 6 additions & 3 deletions
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.43 - 2024-12-17
3+
dr_flac - v0.12.44 - TBD
44

55
David Reid - mackron@gmail.com
66

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

236236
#define DRFLAC_VERSION_MAJOR 0
237237
#define DRFLAC_VERSION_MINOR 12
238-
#define DRFLAC_VERSION_REVISION 43
238+
#define DRFLAC_VERSION_REVISION 44
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. */
@@ -8294,7 +8294,7 @@ static drflac_result drflac_result_from_errno(int e)
82948294
#ifdef ENOSYS
82958295
case ENOSYS: return DRFLAC_NOT_IMPLEMENTED;
82968296
#endif
8297-
#ifdef ENOTEMPTY
8297+
#if defined(ENOTEMPTY) && ENOTEMPTY != EEXIST /* In AIX, ENOTEMPTY and EEXIST use the same value. */
82988298
case ENOTEMPTY: return DRFLAC_DIRECTORY_NOT_EMPTY;
82998299
#endif
83008300
#ifdef ELOOP
@@ -12095,6 +12095,9 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
1209512095
/*
1209612096
REVISION HISTORY
1209712097
================
12098+
v0.12.44 - TBD
12099+
- Fix compilation for AIX OS.
12100+
1209812101
v0.12.43 - 2024-12-17
1209912102
- Fix a possible buffer overflow during decoding.
1210012103
- Improve detection of ARM64EC

0 commit comments

Comments
 (0)