Skip to content

Commit

Permalink
Merged revision(s) 21451 from trunk/OpenMPT:
Browse files Browse the repository at this point in the history
[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
  • Loading branch information
manxorist committed Aug 15, 2024
1 parent 6189ff1 commit ceb8986
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions include/minimp3/OpenMPT.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
minimp3 library from https://github.com/lieff/minimp3
Fork https://github.com/manxorist/minimp3/releases/tag/openmpt-2024-08-15-v3
commit 2811a29e4115199209fe91ae5217c9c5fc611fa6 (2024-08-15)
Fork https://github.com/manxorist/minimp3/releases/tag/openmpt-2024-08-15-v4
commit 2116754771b79347ad2f39127abace2a093c383e (2024-08-15)
The following changes have been made:
* minimp3.c has been added
* The following pull rquests have been merged:
* https://github.com/lieff/minimp3/pull/126
* https://github.com/lieff/minimp3/pull/96
* https://github.com/lieff/minimp3/pull/97
* https://github.com/lieff/minimp3/pull/125
* https://github.com/lieff/minimp3/pull/127
* all modifications are marked by /* OpenMPT */
8 changes: 4 additions & 4 deletions include/minimp3/minimp3.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
*/
#include <stdint.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#define MINIMP3_MAX_SAMPLES_PER_FRAME (1152*2)

typedef struct
Expand All @@ -22,10 +26,6 @@ typedef struct
unsigned char header[4], reserv_buf[511];
} mp3dec_t;

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

void mp3dec_init(mp3dec_t *dec);
#ifndef MINIMP3_FLOAT_OUTPUT
typedef int16_t mp3d_sample_t;
Expand Down

0 comments on commit ceb8986

Please sign in to comment.