Skip to content

Commit ceb8986

Browse files
committed
Merged revision(s) 21451 from trunk/OpenMPT:
[Var] minimp3: Update to fork <https://github.com/manxorist/minimp3/releases/tag/openmpt-2024-08-15-v4> commit 2811a29e4115199209fe91ae5217c9c5fc611fa6 (2024-08-15). This applies the following pull requests: <lieff/minimp3#127>. ........ git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.31@21452 56274372-70c3-4bfc-bfc3-4c3a0b034d27
1 parent 6189ff1 commit ceb8986

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

include/minimp3/OpenMPT.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
minimp3 library from https://github.com/lieff/minimp3
2-
Fork https://github.com/manxorist/minimp3/releases/tag/openmpt-2024-08-15-v3
3-
commit 2811a29e4115199209fe91ae5217c9c5fc611fa6 (2024-08-15)
2+
Fork https://github.com/manxorist/minimp3/releases/tag/openmpt-2024-08-15-v4
3+
commit 2116754771b79347ad2f39127abace2a093c383e (2024-08-15)
44
The following changes have been made:
55
* minimp3.c has been added
66
* The following pull rquests have been merged:
77
* https://github.com/lieff/minimp3/pull/126
88
* https://github.com/lieff/minimp3/pull/96
99
* https://github.com/lieff/minimp3/pull/97
1010
* https://github.com/lieff/minimp3/pull/125
11+
* https://github.com/lieff/minimp3/pull/127
1112
* all modifications are marked by /* OpenMPT */

include/minimp3/minimp3.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
*/
99
#include <stdint.h>
1010

11+
#ifdef __cplusplus
12+
extern "C" {
13+
#endif /* __cplusplus */
14+
1115
#define MINIMP3_MAX_SAMPLES_PER_FRAME (1152*2)
1216

1317
typedef struct
@@ -22,10 +26,6 @@ typedef struct
2226
unsigned char header[4], reserv_buf[511];
2327
} mp3dec_t;
2428

25-
#ifdef __cplusplus
26-
extern "C" {
27-
#endif /* __cplusplus */
28-
2929
void mp3dec_init(mp3dec_t *dec);
3030
#ifndef MINIMP3_FLOAT_OUTPUT
3131
typedef int16_t mp3d_sample_t;

0 commit comments

Comments
 (0)