summaryrefslogtreecommitdiff
path: root/libs/raylib/src/external/dr_mp3.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/raylib/src/external/dr_mp3.h')
-rw-r--r--libs/raylib/src/external/dr_mp3.h2415
1 files changed, 1594 insertions, 821 deletions
diff --git a/libs/raylib/src/external/dr_mp3.h b/libs/raylib/src/external/dr_mp3.h
index 0ecd0d3..e28f318 100644
--- a/libs/raylib/src/external/dr_mp3.h
+++ b/libs/raylib/src/external/dr_mp3.h
@@ -1,23 +1,50 @@
/*
MP3 audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
-dr_mp3 - v0.4.7 - 2019-07-28
+dr_mp3 - v0.6.27 - 2021-02-21
David Reid - mackron@gmail.com
-Based off minimp3 (https://github.com/lieff/minimp3) which is where the real work was done. See the bottom of this file for
-differences between minimp3 and dr_mp3.
+GitHub: https://github.com/mackron/dr_libs
+
+Based on minimp3 (https://github.com/lieff/minimp3) which is where the real work was done. See the bottom of this file for differences between minimp3 and dr_mp3.
*/
/*
-USAGE
-=====
-dr_mp3 is a single-file library. To use it, do something like the following in one .c file.
+RELEASE NOTES - VERSION 0.6
+===========================
+Version 0.6 includes breaking changes with the configuration of decoders. The ability to customize the number of output channels and the sample rate has been
+removed. You must now use the channel count and sample rate reported by the MP3 stream itself, and all channel and sample rate conversion must be done
+yourself.
+
+
+Changes to Initialization
+-------------------------
+Previously, `drmp3_init()`, etc. took a pointer to a `drmp3_config` object that allowed you to customize the output channels and sample rate. This has been
+removed. If you need the old behaviour you will need to convert the data yourself or just not upgrade. The following APIs have changed.
+
+ `drmp3_init()`
+ `drmp3_init_memory()`
+ `drmp3_init_file()`
+
+
+Miscellaneous Changes
+---------------------
+Support for loading a file from a `wchar_t` string has been added via the `drmp3_init_file_w()` API.
+*/
+
+/*
+Introducation
+=============
+dr_mp3 is a single file library. To use it, do something like the following in one .c file.
+
+ ```c
#define DR_MP3_IMPLEMENTATION
#include "dr_mp3.h"
+ ```
-You can then #include this file in other parts of the program as you would with any other header file. To decode audio data,
-do something like the following:
+You can then #include this file in other parts of the program as you would with any other header file. To decode audio data, do something like the following:
+ ```c
drmp3 mp3;
if (!drmp3_init_file(&mp3, "MySong.mp3", NULL)) {
// Failed to open file
@@ -26,28 +53,27 @@ do something like the following:
...
drmp3_uint64 framesRead = drmp3_read_pcm_frames_f32(pMP3, framesToRead, pFrames);
+ ```
The drmp3 object is transparent so you can get access to the channel count and sample rate like so:
+ ```
drmp3_uint32 channels = mp3.channels;
drmp3_uint32 sampleRate = mp3.sampleRate;
+ ```
-The third parameter of drmp3_init_file() in the example above allows you to control the output channel count and sample rate. It
-is a pointer to a drmp3_config object. Setting any of the variables of this object to 0 will cause dr_mp3 to use defaults.
-
-The example above initializes a decoder from a file, but you can also initialize it from a block of memory and read and seek
-callbacks with drmp3_init_memory() and drmp3_init() respectively.
+The example above initializes a decoder from a file, but you can also initialize it from a block of memory and read and seek callbacks with
+`drmp3_init_memory()` and `drmp3_init()` respectively.
-You do not need to do any annoying memory management when reading PCM frames - this is all managed internally. You can request
-any number of PCM frames in each call to drmp3_read_pcm_frames_f32() and it will return as many PCM frames as it can, up to the
-requested amount.
+You do not need to do any annoying memory management when reading PCM frames - this is all managed internally. You can request any number of PCM frames in each
+call to `drmp3_read_pcm_frames_f32()` and it will return as many PCM frames as it can, up to the requested amount.
-You can also decode an entire file in one go with drmp3_open_and_read_f32(), drmp3_open_memory_and_read_f32() and
-drmp3_open_file_and_read_f32().
+You can also decode an entire file in one go with `drmp3_open_and_read_pcm_frames_f32()`, `drmp3_open_memory_and_read_pcm_frames_f32()` and
+`drmp3_open_file_and_read_pcm_frames_f32()`.
-OPTIONS
-=======
+Build Options
+=============
#define these options before including this file.
#define DR_MP3_NO_STDIO
@@ -64,46 +90,166 @@ OPTIONS
extern "C" {
#endif
-#include <stddef.h>
-
-#if defined(_MSC_VER) && _MSC_VER < 1600
-typedef signed char drmp3_int8;
-typedef unsigned char drmp3_uint8;
-typedef signed short drmp3_int16;
-typedef unsigned short drmp3_uint16;
-typedef signed int drmp3_int32;
-typedef unsigned int drmp3_uint32;
-typedef signed __int64 drmp3_int64;
-typedef unsigned __int64 drmp3_uint64;
+#define DRMP3_STRINGIFY(x) #x
+#define DRMP3_XSTRINGIFY(x) DRMP3_STRINGIFY(x)
+
+#define DRMP3_VERSION_MAJOR 0
+#define DRMP3_VERSION_MINOR 6
+#define DRMP3_VERSION_REVISION 27
+#define DRMP3_VERSION_STRING DRMP3_XSTRINGIFY(DRMP3_VERSION_MAJOR) "." DRMP3_XSTRINGIFY(DRMP3_VERSION_MINOR) "." DRMP3_XSTRINGIFY(DRMP3_VERSION_REVISION)
+
+#include <stddef.h> /* For size_t. */
+
+/* Sized types. */
+typedef signed char drmp3_int8;
+typedef unsigned char drmp3_uint8;
+typedef signed short drmp3_int16;
+typedef unsigned short drmp3_uint16;
+typedef signed int drmp3_int32;
+typedef unsigned int drmp3_uint32;
+#if defined(_MSC_VER)
+ typedef signed __int64 drmp3_int64;
+ typedef unsigned __int64 drmp3_uint64;
#else
-#include <stdint.h>
-typedef int8_t drmp3_int8;
-typedef uint8_t drmp3_uint8;
-typedef int16_t drmp3_int16;
-typedef uint16_t drmp3_uint16;
-typedef int32_t drmp3_int32;
-typedef uint32_t drmp3_uint32;
-typedef int64_t drmp3_int64;
-typedef uint64_t drmp3_uint64;
+ #if defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)))
+ #pragma GCC diagnostic push
+ #pragma GCC diagnostic ignored "-Wlong-long"
+ #if defined(__clang__)
+ #pragma GCC diagnostic ignored "-Wc++11-long-long"
+ #endif
+ #endif
+ typedef signed long long drmp3_int64;
+ typedef unsigned long long drmp3_uint64;
+ #if defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)))
+ #pragma GCC diagnostic pop
+ #endif
+#endif
+#if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__)) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__)
+ typedef drmp3_uint64 drmp3_uintptr;
+#else
+ typedef drmp3_uint32 drmp3_uintptr;
+#endif
+typedef drmp3_uint8 drmp3_bool8;
+typedef drmp3_uint32 drmp3_bool32;
+#define DRMP3_TRUE 1
+#define DRMP3_FALSE 0
+
+#if !defined(DRMP3_API)
+ #if defined(DRMP3_DLL)
+ #if defined(_WIN32)
+ #define DRMP3_DLL_IMPORT __declspec(dllimport)
+ #define DRMP3_DLL_EXPORT __declspec(dllexport)
+ #define DRMP3_DLL_PRIVATE static
+ #else
+ #if defined(__GNUC__) && __GNUC__ >= 4
+ #define DRMP3_DLL_IMPORT __attribute__((visibility("default")))
+ #define DRMP3_DLL_EXPORT __attribute__((visibility("default")))
+ #define DRMP3_DLL_PRIVATE __attribute__((visibility("hidden")))
+ #else
+ #define DRMP3_DLL_IMPORT
+ #define DRMP3_DLL_EXPORT
+ #define DRMP3_DLL_PRIVATE static
+ #endif
+ #endif
+
+ #if defined(DR_MP3_IMPLEMENTATION) || defined(DRMP3_IMPLEMENTATION)
+ #define DRMP3_API DRMP3_DLL_EXPORT
+ #else
+ #define DRMP3_API DRMP3_DLL_IMPORT
+ #endif
+ #define DRMP3_PRIVATE DRMP3_DLL_PRIVATE
+ #else
+ #define DRMP3_API extern
+ #define DRMP3_PRIVATE static
+ #endif
#endif
-typedef drmp3_uint8 drmp3_bool8;
-typedef drmp3_uint32 drmp3_bool32;
-#define DRMP3_TRUE 1
-#define DRMP3_FALSE 0
+
+typedef drmp3_int32 drmp3_result;
+#define DRMP3_SUCCESS 0
+#define DRMP3_ERROR -1 /* A generic error. */
+#define DRMP3_INVALID_ARGS -2
+#define DRMP3_INVALID_OPERATION -3
+#define DRMP3_OUT_OF_MEMORY -4
+#define DRMP3_OUT_OF_RANGE -5
+#define DRMP3_ACCESS_DENIED -6
+#define DRMP3_DOES_NOT_EXIST -7
+#define DRMP3_ALREADY_EXISTS -8
+#define DRMP3_TOO_MANY_OPEN_FILES -9
+#define DRMP3_INVALID_FILE -10
+#define DRMP3_TOO_BIG -11
+#define DRMP3_PATH_TOO_LONG -12
+#define DRMP3_NAME_TOO_LONG -13
+#define DRMP3_NOT_DIRECTORY -14
+#define DRMP3_IS_DIRECTORY -15
+#define DRMP3_DIRECTORY_NOT_EMPTY -16
+#define DRMP3_END_OF_FILE -17
+#define DRMP3_NO_SPACE -18
+#define DRMP3_BUSY -19
+#define DRMP3_IO_ERROR -20
+#define DRMP3_INTERRUPT -21
+#define DRMP3_UNAVAILABLE -22
+#define DRMP3_ALREADY_IN_USE -23
+#define DRMP3_BAD_ADDRESS -24
+#define DRMP3_BAD_SEEK -25
+#define DRMP3_BAD_PIPE -26
+#define DRMP3_DEADLOCK -27
+#define DRMP3_TOO_MANY_LINKS -28
+#define DRMP3_NOT_IMPLEMENTED -29
+#define DRMP3_NO_MESSAGE -30
+#define DRMP3_BAD_MESSAGE -31
+#define DRMP3_NO_DATA_AVAILABLE -32
+#define DRMP3_INVALID_DATA -33
+#define DRMP3_TIMEOUT -34
+#define DRMP3_NO_NETWORK -35
+#define DRMP3_NOT_UNIQUE -36
+#define DRMP3_NOT_SOCKET -37
+#define DRMP3_NO_ADDRESS -38
+#define DRMP3_BAD_PROTOCOL -39
+#define DRMP3_PROTOCOL_UNAVAILABLE -40
+#define DRMP3_PROTOCOL_NOT_SUPPORTED -41
+#define DRMP3_PROTOCOL_FAMILY_NOT_SUPPORTED -42
+#define DRMP3_ADDRESS_FAMILY_NOT_SUPPORTED -43
+#define DRMP3_SOCKET_NOT_SUPPORTED -44
+#define DRMP3_CONNECTION_RESET -45
+#define DRMP3_ALREADY_CONNECTED -46
+#define DRMP3_NOT_CONNECTED -47
+#define DRMP3_CONNECTION_REFUSED -48
+#define DRMP3_NO_HOST -49
+#define DRMP3_IN_PROGRESS -50
+#define DRMP3_CANCELLED -51
+#define DRMP3_MEMORY_ALREADY_MAPPED -52
+#define DRMP3_AT_END -53
+
#define DRMP3_MAX_PCM_FRAMES_PER_MP3_FRAME 1152
#define DRMP3_MAX_SAMPLES_PER_FRAME (DRMP3_MAX_PCM_FRAMES_PER_MP3_FRAME*2)
#ifdef _MSC_VER
-#define DRMP3_INLINE __forceinline
-#else
-#ifdef __GNUC__
-#define DRMP3_INLINE __inline__ __attribute__((always_inline))
+ #define DRMP3_INLINE __forceinline
+#elif defined(__GNUC__)
+ /*
+ I've had a bug report where GCC is emitting warnings about functions possibly not being inlineable. This warning happens when
+ the __attribute__((always_inline)) attribute is defined without an "inline" statement. I think therefore there must be some
+ case where "__inline__" is not always defined, thus the compiler emitting these warnings. When using -std=c89 or -ansi on the
+ command line, we cannot use the "inline" keyword and instead need to use "__inline__". In an attempt to work around this issue
+ I am using "__inline__" only when we're compiling in strict ANSI mode.
+ */
+ #if defined(__STRICT_ANSI__)
+ #define DRMP3_INLINE __inline__ __attribute__((always_inline))
+ #else
+ #define DRMP3_INLINE inline __attribute__((always_inline))
+ #endif
+#elif defined(__WATCOMC__)
+ #define DRMP3_INLINE __inline
#else
-#define DRMP3_INLINE
-#endif
+ #define DRMP3_INLINE
#endif
+
+DRMP3_API void drmp3_version(drmp3_uint32* pMajor, drmp3_uint32* pMinor, drmp3_uint32* pRevision);
+DRMP3_API const char* drmp3_version_string(void);
+
+
/*
Low Level Push API
==================
@@ -117,17 +263,17 @@ typedef struct
{
float mdct_overlap[2][9*32], qmf_state[15*2*32];
int reserv, free_format_bytes;
- unsigned char header[4], reserv_buf[511];
+ drmp3_uint8 header[4], reserv_buf[511];
} drmp3dec;
/* Initializes a low level decoder. */
-void drmp3dec_init(drmp3dec *dec);
+DRMP3_API void drmp3dec_init(drmp3dec *dec);
/* Reads a frame from a low level decoder. */
-int drmp3dec_decode_frame(drmp3dec *dec, const unsigned char *mp3, int mp3_bytes, void *pcm, drmp3dec_frame_info *info);
+DRMP3_API int drmp3dec_decode_frame(drmp3dec *dec, const drmp3_uint8 *mp3, int mp3_bytes, void *pcm, drmp3dec_frame_info *info);
/* Helper for converting between f32 and s16. */
-void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, int num_samples);
+DRMP3_API void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, size_t num_samples);
@@ -135,58 +281,6 @@ void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, int num_samples);
Main API (Pull API)
===================
*/
-#ifndef DR_MP3_DEFAULT_CHANNELS
-#define DR_MP3_DEFAULT_CHANNELS 2
-#endif
-#ifndef DR_MP3_DEFAULT_SAMPLE_RATE
-#define DR_MP3_DEFAULT_SAMPLE_RATE 44100
-#endif
-
-typedef struct drmp3_src drmp3_src;
-typedef drmp3_uint64 (* drmp3_src_read_proc)(drmp3_src* pSRC, drmp3_uint64 frameCount, void* pFramesOut, void* pUserData); /* Returns the number of frames that were read. */
-
-typedef enum
-{
- drmp3_src_algorithm_none,
- drmp3_src_algorithm_linear
-} drmp3_src_algorithm;
-
-#define DRMP3_SRC_CACHE_SIZE_IN_FRAMES 512
-typedef struct
-{
- drmp3_src* pSRC;
- float pCachedFrames[2 * DRMP3_SRC_CACHE_SIZE_IN_FRAMES];
- drmp3_uint32 cachedFrameCount;
- drmp3_uint32 iNextFrame;
-} drmp3_src_cache;
-
-typedef struct
-{
- drmp3_uint32 sampleRateIn;
- drmp3_uint32 sampleRateOut;
- drmp3_uint32 channels;
- drmp3_src_algorithm algorithm;
- drmp3_uint32 cacheSizeInFrames; /* The number of frames to read from the client at a time. */
-} drmp3_src_config;
-
-struct drmp3_src
-{
- drmp3_src_config config;
- drmp3_src_read_proc onRead;
- void* pUserData;
- float bin[256];
- drmp3_src_cache cache; /* <-- For simplifying and optimizing client -> memory reading. */
- union
- {
- struct
- {
- double alpha;
- drmp3_bool32 isPrevFramesLoaded : 1;
- drmp3_bool32 isNextFramesLoaded : 1;
- } linear;
- } algo;
-};
-
typedef enum
{
drmp3_seek_origin_start,
@@ -231,8 +325,16 @@ typedef drmp3_bool32 (* drmp3_seek_proc)(void* pUserData, int offset, drmp3_seek
typedef struct
{
- drmp3_uint32 outputChannels;
- drmp3_uint32 outputSampleRate;
+ void* pUserData;
+ void* (* onMalloc)(size_t sz, void* pUserData);
+ void* (* onRealloc)(void* p, size_t sz, void* pUserData);
+ void (* onFree)(void* p, void* pUserData);
+} drmp3_allocation_callbacks;
+
+typedef struct
+{
+ drmp3_uint32 channels;
+ drmp3_uint32 sampleRate;
} drmp3_config;
typedef struct
@@ -244,6 +346,7 @@ typedef struct
drmp3_read_proc onRead;
drmp3_seek_proc onSeek;
void* pUserData;
+ drmp3_allocation_callbacks allocationCallbacks;
drmp3_uint32 mp3FrameChannels; /* The number of channels in the currently loaded MP3 frame. Internal use only. */
drmp3_uint32 mp3FrameSampleRate; /* The sample rate of the currently loaded MP3 frame. Internal use only. */
drmp3_uint32 pcmFramesConsumedInMP3Frame;
@@ -251,11 +354,11 @@ typedef struct
drmp3_uint8 pcmFrames[sizeof(float)*DRMP3_MAX_SAMPLES_PER_FRAME]; /* <-- Multipled by sizeof(float) to ensure there's enough room for DR_MP3_FLOAT_OUTPUT. */
drmp3_uint64 currentPCMFrame; /* The current PCM frame, globally, based on the output sample rate. Mainly used for seeking. */
drmp3_uint64 streamCursor; /* The current byte the decoder is sitting on in the raw stream. */
- drmp3_src src;
drmp3_seek_point* pSeekPoints; /* NULL by default. Set with drmp3_bind_seek_table(). Memory is owned by the client. dr_mp3 will never attempt to free this pointer. */
drmp3_uint32 seekPointCount; /* The number of items in pSeekPoints. When set to 0 assumes to no seek table. Defaults to zero. */
size_t dataSize;
size_t dataCapacity;
+ size_t dataConsumed;
drmp3_uint8* pData;
drmp3_bool32 atEnd : 1;
struct
@@ -279,7 +382,7 @@ Close the loader with drmp3_uninit().
See also: drmp3_init_file(), drmp3_init_memory(), drmp3_uninit()
*/
-drmp3_bool32 drmp3_init(drmp3* pMP3, drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, const drmp3_config* pConfig);
+DRMP3_API drmp3_bool32 drmp3_init(drmp3* pMP3, drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, const drmp3_allocation_callbacks* pAllocationCallbacks);
/*
Initializes an MP3 decoder from a block of memory.
@@ -289,7 +392,7 @@ the lifetime of the drmp3 object.
The buffer should contain the contents of the entire MP3 file.
*/
-drmp3_bool32 drmp3_init_memory(drmp3* pMP3, const void* pData, size_t dataSize, const drmp3_config* pConfig);
+DRMP3_API drmp3_bool32 drmp3_init_memory(drmp3* pMP3, const void* pData, size_t dataSize, const drmp3_allocation_callbacks* pAllocationCallbacks);
#ifndef DR_MP3_NO_STDIO
/*
@@ -299,46 +402,47 @@ This holds the internal FILE object until drmp3_uninit() is called. Keep this in
objects because the operating system may restrict the number of file handles an application can have open at
any given time.
*/
-drmp3_bool32 drmp3_init_file(drmp3* pMP3, const char* filePath, const drmp3_config* pConfig);
+DRMP3_API drmp3_bool32 drmp3_init_file(drmp3* pMP3, const char* pFilePath, const drmp3_allocation_callbacks* pAllocationCallbacks);
+DRMP3_API drmp3_bool32 drmp3_init_file_w(drmp3* pMP3, const wchar_t* pFilePath, const drmp3_allocation_callbacks* pAllocationCallbacks);
#endif
/*
Uninitializes an MP3 decoder.
*/
-void drmp3_uninit(drmp3* pMP3);
+DRMP3_API void drmp3_uninit(drmp3* pMP3);
/*
Reads PCM frames as interleaved 32-bit IEEE floating point PCM.
Note that framesToRead specifies the number of PCM frames to read, _not_ the number of MP3 frames.
*/
-drmp3_uint64 drmp3_read_pcm_frames_f32(drmp3* pMP3, drmp3_uint64 framesToRead, float* pBufferOut);
+DRMP3_API drmp3_uint64 drmp3_read_pcm_frames_f32(drmp3* pMP3, drmp3_uint64 framesToRead, float* pBufferOut);
/*
Reads PCM frames as interleaved signed 16-bit integer PCM.
Note that framesToRead specifies the number of PCM frames to read, _not_ the number of MP3 frames.
*/
-drmp3_uint64 drmp3_read_pcm_frames_s16(drmp3* pMP3, drmp3_uint64 framesToRead, drmp3_int16* pBufferOut);
+DRMP3_API drmp3_uint64 drmp3_read_pcm_frames_s16(drmp3* pMP3, drmp3_uint64 framesToRead, drmp3_int16* pBufferOut);
/*
Seeks to a specific frame.
Note that this is _not_ an MP3 frame, but rather a PCM frame.
*/
-drmp3_bool32 drmp3_seek_to_pcm_frame(drmp3* pMP3, drmp3_uint64 frameIndex);
+DRMP3_API drmp3_bool32 drmp3_seek_to_pcm_frame(drmp3* pMP3, drmp3_uint64 frameIndex);
/*
Calculates the total number of PCM frames in the MP3 stream. Cannot be used for infinite streams such as internet
radio. Runs in linear time. Returns 0 on error.
*/
-drmp3_uint64 drmp3_get_pcm_frame_count(drmp3* pMP3);
+DRMP3_API drmp3_uint64 drmp3_get_pcm_frame_count(drmp3* pMP3);
/*
Calculates the total number of MP3 frames in the MP3 stream. Cannot be used for infinite streams such as internet
radio. Runs in linear time. Returns 0 on error.
*/
-drmp3_uint64 drmp3_get_mp3_frame_count(drmp3* pMP3);
+DRMP3_API drmp3_uint64 drmp3_get_mp3_frame_count(drmp3* pMP3);
/*
Calculates the total number of MP3 and PCM frames in the MP3 stream. Cannot be used for infinite streams such as internet
@@ -346,7 +450,7 @@ radio. Runs in linear time. Returns 0 on error.
This is equivalent to calling drmp3_get_mp3_frame_count() and drmp3_get_pcm_frame_count() except that it's more efficient.
*/
-drmp3_bool32 drmp3_get_mp3_and_pcm_frame_count(drmp3* pMP3, drmp3_uint64* pMP3FrameCount, drmp3_uint64* pPCMFrameCount);
+DRMP3_API drmp3_bool32 drmp3_get_mp3_and_pcm_frame_count(drmp3* pMP3, drmp3_uint64* pMP3FrameCount, drmp3_uint64* pPCMFrameCount);
/*
Calculates the seekpoints based on PCM frames. This is slow.
@@ -357,7 +461,7 @@ seekpoints, in which case dr_mp3 will return a corrected count.
Note that seektable seeking is not quite sample exact when the MP3 stream contains inconsistent sample rates.
*/
-drmp3_bool32 drmp3_calculate_seek_points(drmp3* pMP3, drmp3_uint32* pSeekPointCount, drmp3_seek_point* pSeekPoints);
+DRMP3_API drmp3_bool32 drmp3_calculate_seek_points(drmp3* pMP3, drmp3_uint32* pSeekPointCount, drmp3_seek_point* pSeekPoints);
/*
Binds a seek table to the decoder.
@@ -367,31 +471,36 @@ remains valid while it is bound to the decoder.
Use drmp3_calculate_seek_points() to calculate the seek points.
*/
-drmp3_bool32 drmp3_bind_seek_table(drmp3* pMP3, drmp3_uint32 seekPointCount, drmp3_seek_point* pSeekPoints);
+DRMP3_API drmp3_bool32 drmp3_bind_seek_table(drmp3* pMP3, drmp3_uint32 seekPointCount, drmp3_seek_point* pSeekPoints);
/*
Opens an decodes an entire MP3 stream as a single operation.
-pConfig is both an input and output. On input it contains what you want. On output it contains what you got.
+On output pConfig will receive the channel count and sample rate of the stream.
Free the returned pointer with drmp3_free().
*/
-float* drmp3_open_and_read_f32(drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount);
-drmp3_int16* drmp3_open_and_read_s16(drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount);
+DRMP3_API float* drmp3_open_and_read_pcm_frames_f32(drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks);
+DRMP3_API drmp3_int16* drmp3_open_and_read_pcm_frames_s16(drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks);
-float* drmp3_open_memory_and_read_f32(const void* pData, size_t dataSize, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount);
-drmp3_int16* drmp3_open_memory_and_read_s16(const void* pData, size_t dataSize, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount);
+DRMP3_API float* drmp3_open_memory_and_read_pcm_frames_f32(const void* pData, size_t dataSize, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks);
+DRMP3_API drmp3_int16* drmp3_open_memory_and_read_pcm_frames_s16(const void* pData, size_t dataSize, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks);
#ifndef DR_MP3_NO_STDIO
-float* drmp3_open_file_and_read_f32(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount);
-drmp3_int16* drmp3_open_file_and_read_s16(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount);
+DRMP3_API float* drmp3_open_file_and_read_pcm_frames_f32(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks);
+DRMP3_API drmp3_int16* drmp3_open_file_and_read_pcm_frames_s16(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks);
#endif
/*
+Allocates a block of memory on the heap.
+*/
+DRMP3_API void* drmp3_malloc(size_t sz, const drmp3_allocation_callbacks* pAllocationCallbacks);
+
+/*
Frees any memory that was allocated by a public drmp3 API.
*/
-void drmp3_free(void* p);
+DRMP3_API void drmp3_free(void* p, const drmp3_allocation_callbacks* pAllocationCallbacks);
#ifdef __cplusplus
}
@@ -406,11 +515,34 @@ void drmp3_free(void* p);
************************************************************************************************************************************************************
************************************************************************************************************************************************************/
-#ifdef DR_MP3_IMPLEMENTATION
+#if defined(DR_MP3_IMPLEMENTATION) || defined(DRMP3_IMPLEMENTATION)
+#ifndef dr_mp3_c
+#define dr_mp3_c
+
#include <stdlib.h>
#include <string.h>
#include <limits.h> /* For INT_MAX */
+DRMP3_API void drmp3_version(drmp3_uint32* pMajor, drmp3_uint32* pMinor, drmp3_uint32* pRevision)
+{
+ if (pMajor) {
+ *pMajor = DRMP3_VERSION_MAJOR;
+ }
+
+ if (pMinor) {
+ *pMinor = DRMP3_VERSION_MINOR;
+ }
+
+ if (pRevision) {
+ *pRevision = DRMP3_VERSION_REVISION;
+ }
+}
+
+DRMP3_API const char* drmp3_version_string(void)
+{
+ return DRMP3_VERSION_STRING;
+}
+
/* Disable SIMD when compiling with TCC for now. */
#if defined(__TINYC__)
#define DR_MP3_NO_SIMD
@@ -458,7 +590,7 @@ void drmp3_free(void* p);
#if !defined(DR_MP3_NO_SIMD)
-#if !defined(DR_MP3_ONLY_SIMD) && (defined(_M_X64) || defined(_M_ARM64) || defined(__x86_64__) || defined(__aarch64__))
+#if !defined(DR_MP3_ONLY_SIMD) && (defined(_M_X64) || defined(__x86_64__) || defined(__aarch64__) || defined(_M_ARM64))
/* x64 always have SSE2, arm64 always have neon, no need for generic code */
#define DR_MP3_ONLY_SIMD
#endif
@@ -508,7 +640,7 @@ static __inline__ __attribute__((always_inline)) void drmp3_cpuid(int CPUInfo[],
#endif
}
#endif
-static int drmp3_have_simd()
+static int drmp3_have_simd(void)
{
#ifdef DR_MP3_ONLY_SIMD
return 1;
@@ -534,8 +666,9 @@ end:
return g_have_simd - 1;
#endif
}
-#elif defined(__ARM_NEON) || defined(__aarch64__)
+#elif defined(__ARM_NEON) || defined(__aarch64__) || defined(_M_ARM64)
#include <arm_neon.h>
+#define DRMP3_HAVE_SSE 0
#define DRMP3_HAVE_SIMD 1
#define DRMP3_VSTORE vst1q_f32
#define DRMP3_VLD vld1q_f32
@@ -548,11 +681,12 @@ end:
#define DRMP3_VMUL_S(x, s) vmulq_f32(x, vmovq_n_f32(s))
#define DRMP3_VREV(x) vcombine_f32(vget_high_f32(vrev64q_f32(x)), vget_low_f32(vrev64q_f32(x)))
typedef float32x4_t drmp3_f4;
-static int drmp3_have_simd()
+static int drmp3_have_simd(void)
{ /* TODO: detect neon for !DR_MP3_ONLY_SIMD */
return 1;
}
#else
+#define DRMP3_HAVE_SSE 0
#define DRMP3_HAVE_SIMD 0
#ifdef DR_MP3_ONLY_SIMD
#error DR_MP3_ONLY_SIMD used, but SSE/NEON not enabled
@@ -565,6 +699,19 @@ static int drmp3_have_simd()
#endif
+#if defined(__ARM_ARCH) && (__ARM_ARCH >= 6) && !defined(__aarch64__) && !defined(_M_ARM64)
+#define DRMP3_HAVE_ARMV6 1
+static __inline__ __attribute__((always_inline)) drmp3_int32 drmp3_clip_int16_arm(int32_t a)
+{
+ drmp3_int32 x = 0;
+ __asm__ ("ssat %0, #16, %1" : "=r"(x) : "r"(a));
+ return x;
+}
+#else
+#define DRMP3_HAVE_ARMV6 0
+#endif
+
+
typedef struct
{
const drmp3_uint8 *buf;
@@ -738,7 +885,7 @@ static void drmp3_L12_read_scalefactors(drmp3_bs *bs, drmp3_uint8 *pba, drmp3_ui
if (mask & m)
{
int b = drmp3_bs_get_bits(bs, 6);
- s = g_deq_L12[ba*3 - 6 + b % 3]*(1 << 21 >> b/3);
+ s = g_deq_L12[ba*3 - 6 + b % 3]*(int)(1 << 21 >> b/3);
}
*scf++ = s;
}
@@ -1054,16 +1201,16 @@ static void drmp3_L3_decode_scalefactors(const drmp3_uint8 *hdr, drmp3_uint8 *is
int sh = 3 - scf_shift;
for (i = 0; i < gr->n_short_sfb; i += 3)
{
- iscf[gr->n_long_sfb + i + 0] += gr->subblock_gain[0] << sh;
- iscf[gr->n_long_sfb + i + 1] += gr->subblock_gain[1] << sh;
- iscf[gr->n_long_sfb + i + 2] += gr->subblock_gain[2] << sh;
+ iscf[gr->n_long_sfb + i + 0] = (drmp3_uint8)(iscf[gr->n_long_sfb + i + 0] + (gr->subblock_gain[0] << sh));
+ iscf[gr->n_long_sfb + i + 1] = (drmp3_uint8)(iscf[gr->n_long_sfb + i + 1] + (gr->subblock_gain[1] << sh));
+ iscf[gr->n_long_sfb + i + 2] = (drmp3_uint8)(iscf[gr->n_long_sfb + i + 2] + (gr->subblock_gain[2] << sh));
}
} else if (gr->preflag)
{
static const drmp3_uint8 g_preamp[10] = { 1,1,1,1,2,2,3,3,3,2 };
for (i = 0; i < 10; i++)
{
- iscf[11 + i] += g_preamp[i];
+ iscf[11 + i] = (drmp3_uint8)(iscf[11 + i] + g_preamp[i]);
}
}
@@ -1715,7 +1862,7 @@ static void drmp3d_DCT_II(float *grbuf, int n)
} else
#endif
#ifdef DR_MP3_ONLY_SIMD
- {}
+ {} /* for HAVE_SIMD=1, MINIMP3_ONLY_SIMD=1 case we do not need non-intrinsic "else" branch */
#else
for (; k < n; k++)
{
@@ -1784,11 +1931,17 @@ typedef drmp3_int16 drmp3d_sample_t;
static drmp3_int16 drmp3d_scale_pcm(float sample)
{
drmp3_int16 s;
+#if DRMP3_HAVE_ARMV6
+ drmp3_int32 s32 = (drmp3_int32)(sample + .5f);
+ s32 -= (s32 < 0);
+ s = (drmp3_int16)drmp3_clip_int16_arm(s32);
+#else
if (sample >= 32766.5) return (drmp3_int16) 32767;
if (sample <= -32767.5) return (drmp3_int16)-32768;
s = (drmp3_int16)(sample + .5f);
s -= (s < 0); /* away from zero, to be compliant */
- return (drmp3_int16)s;
+#endif
+ return s;
}
#else
typedef float drmp3d_sample_t;
@@ -1942,7 +2095,7 @@ static void drmp3d_synth(float *xl, drmp3d_sample_t *dstl, int nch, float *lins)
} else
#endif
#ifdef DR_MP3_ONLY_SIMD
- {}
+ {} /* for HAVE_SIMD=1, MINIMP3_ONLY_SIMD=1 case we do not need non-intrinsic "else" branch */
#else
for (i = 14; i >= 0; i--)
{
@@ -2052,15 +2205,15 @@ static int drmp3d_find_frame(const drmp3_uint8 *mp3, int mp3_bytes, int *free_fo
}
}
*ptr_frame_bytes = 0;
- return i;
+ return mp3_bytes;
}
-void drmp3dec_init(drmp3dec *dec)
+DRMP3_API void drmp3dec_init(drmp3dec *dec)
{
dec->header[0] = 0;
}
-int drmp3dec_decode_frame(drmp3dec *dec, const unsigned char *mp3, int mp3_bytes, void *pcm, drmp3dec_frame_info *info)
+DRMP3_API int drmp3dec_decode_frame(drmp3dec *dec, const drmp3_uint8 *mp3, int mp3_bytes, void *pcm, drmp3dec_frame_info *info)
{
int i = 0, igr, frame_size = 0, success = 1;
const drmp3_uint8 *hdr;
@@ -2155,61 +2308,58 @@ int drmp3dec_decode_frame(drmp3dec *dec, const unsigned char *mp3, int mp3_bytes
return success*drmp3_hdr_frame_samples(dec->header);
}
-void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, int num_samples)
+DRMP3_API void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, size_t num_samples)
{
- if(num_samples > 0)
- {
- int i = 0;
+ size_t i = 0;
#if DRMP3_HAVE_SIMD
- int aligned_count = num_samples & ~7;
- for(; i < aligned_count; i+=8)
- {
- drmp3_f4 scale = DRMP3_VSET(32768.0f);
- drmp3_f4 a = DRMP3_VMUL(DRMP3_VLD(&in[i ]), scale);
- drmp3_f4 b = DRMP3_VMUL(DRMP3_VLD(&in[i+4]), scale);
+ size_t aligned_count = num_samples & ~7;
+ for(; i < aligned_count; i+=8)
+ {
+ drmp3_f4 scale = DRMP3_VSET(32768.0f);
+ drmp3_f4 a = DRMP3_VMUL(DRMP3_VLD(&in[i ]), scale);
+ drmp3_f4 b = DRMP3_VMUL(DRMP3_VLD(&in[i+4]), scale);
#if DRMP3_HAVE_SSE
- drmp3_f4 s16max = DRMP3_VSET( 32767.0f);
- drmp3_f4 s16min = DRMP3_VSET(-32768.0f);
- __m128i pcm8 = _mm_packs_epi32(_mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(a, s16max), s16min)),
- _mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(b, s16max), s16min)));
- out[i ] = (drmp3_int16)_mm_extract_epi16(pcm8, 0);
- out[i+1] = (drmp3_int16)_mm_extract_epi16(pcm8, 1);
- out[i+2] = (drmp3_int16)_mm_extract_epi16(pcm8, 2);
- out[i+3] = (drmp3_int16)_mm_extract_epi16(pcm8, 3);
- out[i+4] = (drmp3_int16)_mm_extract_epi16(pcm8, 4);
- out[i+5] = (drmp3_int16)_mm_extract_epi16(pcm8, 5);
- out[i+6] = (drmp3_int16)_mm_extract_epi16(pcm8, 6);
- out[i+7] = (drmp3_int16)_mm_extract_epi16(pcm8, 7);
+ drmp3_f4 s16max = DRMP3_VSET( 32767.0f);
+ drmp3_f4 s16min = DRMP3_VSET(-32768.0f);
+ __m128i pcm8 = _mm_packs_epi32(_mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(a, s16max), s16min)),
+ _mm_cvtps_epi32(_mm_max_ps(_mm_min_ps(b, s16max), s16min)));
+ out[i ] = (drmp3_int16)_mm_extract_epi16(pcm8, 0);
+ out[i+1] = (drmp3_int16)_mm_extract_epi16(pcm8, 1);
+ out[i+2] = (drmp3_int16)_mm_extract_epi16(pcm8, 2);
+ out[i+3] = (drmp3_int16)_mm_extract_epi16(pcm8, 3);
+ out[i+4] = (drmp3_int16)_mm_extract_epi16(pcm8, 4);
+ out[i+5] = (drmp3_int16)_mm_extract_epi16(pcm8, 5);
+ out[i+6] = (drmp3_int16)_mm_extract_epi16(pcm8, 6);
+ out[i+7] = (drmp3_int16)_mm_extract_epi16(pcm8, 7);
#else
- int16x4_t pcma, pcmb;
- a = DRMP3_VADD(a, DRMP3_VSET(0.5f));
- b = DRMP3_VADD(b, DRMP3_VSET(0.5f));
- pcma = vqmovn_s32(vqaddq_s32(vcvtq_s32_f32(a), vreinterpretq_s32_u32(vcltq_f32(a, DRMP3_VSET(0)))));
- pcmb = vqmovn_s32(vqaddq_s32(vcvtq_s32_f32(b), vreinterpretq_s32_u32(vcltq_f32(b, DRMP3_VSET(0)))));
- vst1_lane_s16(out+i , pcma, 0);
- vst1_lane_s16(out+i+1, pcma, 1);
- vst1_lane_s16(out+i+2, pcma, 2);
- vst1_lane_s16(out+i+3, pcma, 3);
- vst1_lane_s16(out+i+4, pcmb, 0);
- vst1_lane_s16(out+i+5, pcmb, 1);
- vst1_lane_s16(out+i+6, pcmb, 2);
- vst1_lane_s16(out+i+7, pcmb, 3);
+ int16x4_t pcma, pcmb;
+ a = DRMP3_VADD(a, DRMP3_VSET(0.5f));
+ b = DRMP3_VADD(b, DRMP3_VSET(0.5f));
+ pcma = vqmovn_s32(vqaddq_s32(vcvtq_s32_f32(a), vreinterpretq_s32_u32(vcltq_f32(a, DRMP3_VSET(0)))));
+ pcmb = vqmovn_s32(vqaddq_s32(vcvtq_s32_f32(b), vreinterpretq_s32_u32(vcltq_f32(b, DRMP3_VSET(0)))));
+ vst1_lane_s16(out+i , pcma, 0);
+ vst1_lane_s16(out+i+1, pcma, 1);
+ vst1_lane_s16(out+i+2, pcma, 2);
+ vst1_lane_s16(out+i+3, pcma, 3);
+ vst1_lane_s16(out+i+4, pcmb, 0);
+ vst1_lane_s16(out+i+5, pcmb, 1);
+ vst1_lane_s16(out+i+6, pcmb, 2);
+ vst1_lane_s16(out+i+7, pcmb, 3);
#endif
- }
+ }
#endif
- for(; i < num_samples; i++)
+ for(; i < num_samples; i++)
+ {
+ float sample = in[i] * 32768.0f;
+ if (sample >= 32766.5)
+ out[i] = (drmp3_int16) 32767;
+ else if (sample <= -32767.5)
+ out[i] = (drmp3_int16)-32768;
+ else
{
- float sample = in[i] * 32768.0f;
- if (sample >= 32766.5)
- out[i] = (drmp3_int16) 32767;
- else if (sample <= -32767.5)
- out[i] = (drmp3_int16)-32768;
- else
- {
- short s = (drmp3_int16)(sample + .5f);
- s -= (s < 0); /* away from zero, to be compliant */
- out[i] = s;
- }
+ short s = (drmp3_int16)(sample + .5f);
+ s -= (s < 0); /* away from zero, to be compliant */
+ out[i] = s;
}
}
}
@@ -2221,6 +2371,7 @@ void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, int num_samples)
Main Public API
************************************************************************************************************************************************************/
+#include <math.h> /* For sin() and exp(). */
#if defined(SIZE_MAX)
#define DRMP3_SIZE_MAX SIZE_MAX
@@ -2237,11 +2388,18 @@ void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, int num_samples)
#define DRMP3_SEEK_LEADING_MP3_FRAMES 2
#endif
+#define DRMP3_MIN_DATA_CHUNK_SIZE 16384
+
+/* The size in bytes of each chunk of data to read from the MP3 stream. minimp3 recommends at least 16K, but in an attempt to reduce data movement I'm making this slightly larger. */
+#ifndef DRMP3_DATA_CHUNK_SIZE
+#define DRMP3_DATA_CHUNK_SIZE DRMP3_MIN_DATA_CHUNK_SIZE*4
+#endif
+
/* Standard library stuff. */
#ifndef DRMP3_ASSERT
#include <assert.h>
-#define DRMP3_ASSERT(expression) assert(expression)
+#define DRMP3_ASSERT(expression) assert(expression)
#endif
#ifndef DRMP3_COPY_MEMORY
#define DRMP3_COPY_MEMORY(dst, src, sz) memcpy((dst), (src), (sz))
@@ -2260,286 +2418,162 @@ void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, int num_samples)
#define DRMP3_FREE(p) free((p))
#endif
-#define drmp3_assert DRMP3_ASSERT
-#define drmp3_copy_memory DRMP3_COPY_MEMORY
-#define drmp3_zero_memory DRMP3_ZERO_MEMORY
-#define drmp3_zero_object DRMP3_ZERO_OBJECT
-#define drmp3_malloc DRMP3_MALLOC
-#define drmp3_realloc DRMP3_REALLOC
+#define DRMP3_COUNTOF(x) (sizeof(x) / sizeof(x[0]))
+#define DRMP3_CLAMP(x, lo, hi) (DRMP3_MAX(lo, DRMP3_MIN(x, hi)))
-#define drmp3_countof(x) (sizeof(x) / sizeof(x[0]))
-#define drmp3_max(x, y) (((x) > (y)) ? (x) : (y))
-#define drmp3_min(x, y) (((x) < (y)) ? (x) : (y))
+#ifndef DRMP3_PI_D
+#define DRMP3_PI_D 3.14159265358979323846264
+#endif
-#define DRMP3_DATA_CHUNK_SIZE 16384 /* The size in bytes of each chunk of data to read from the MP3 stream. minimp3 recommends 16K. */
+#define DRMP3_DEFAULT_RESAMPLER_LPF_ORDER 2
static DRMP3_INLINE float drmp3_mix_f32(float x, float y, float a)
{
return x*(1-a) + y*a;
}
-
-static void drmp3_blend_f32(float* pOut, float* pInA, float* pInB, float factor, drmp3_uint32 channels)
+static DRMP3_INLINE float drmp3_mix_f32_fast(float x, float y, float a)
{
- drmp3_uint32 i;
- for (i = 0; i < channels; ++i) {
- pOut[i] = drmp3_mix_f32(pInA[i], pInB[i], factor);
- }
+ float r0 = (y - x);
+ float r1 = r0*a;
+ return x + r1;
+ /*return x + (y - x)*a;*/
}
-void drmp3_src_cache_init(drmp3_src* pSRC, drmp3_src_cache* pCache)
-{
- drmp3_assert(pSRC != NULL);
- drmp3_assert(pCache != NULL);
-
- pCache->pSRC = pSRC;
- pCache->cachedFrameCount = 0;
- pCache->iNextFrame = 0;
-}
-drmp3_uint64 drmp3_src_cache_read_frames(drmp3_src_cache* pCache, drmp3_uint64 frameCount, float* pFramesOut)
+/*
+Greatest common factor using Euclid's algorithm iteratively.
+*/
+static DRMP3_INLINE drmp3_uint32 drmp3_gcf_u32(drmp3_uint32 a, drmp3_uint32 b)
{
- drmp3_uint32 channels;
- drmp3_uint64 totalFramesRead = 0;
-
- drmp3_assert(pCache != NULL);
- drmp3_assert(pCache->pSRC != NULL);
- drmp3_assert(pCache->pSRC->onRead != NULL);
- drmp3_assert(frameCount > 0);
- drmp3_assert(pFramesOut != NULL);
-
- channels = pCache->pSRC->config.channels;
-
- while (frameCount > 0) {
- /* If there's anything in memory go ahead and copy that over first. */
- drmp3_uint32 framesToReadFromClient;
- drmp3_uint64 framesRemainingInMemory = pCache->cachedFrameCount - pCache->iNextFrame;
- drmp3_uint64 framesToReadFromMemory = frameCount;
- if (framesToReadFromMemory > framesRemainingInMemory) {
- framesToReadFromMemory = framesRemainingInMemory;
- }
-
- drmp3_copy_memory(pFramesOut, pCache->pCachedFrames + pCache->iNextFrame*channels, (drmp3_uint32)(framesToReadFromMemory * channels * sizeof(float)));
- pCache->iNextFrame += (drmp3_uint32)framesToReadFromMemory;
-
- totalFramesRead += framesToReadFromMemory;
- frameCount -= framesToReadFromMemory;
- if (frameCount == 0) {
+ for (;;) {
+ if (b == 0) {
break;
+ } else {
+ drmp3_uint32 t = a;
+ a = b;
+ b = t % a;
}
+ }
+ return a;
+}
- /* At this point there are still more frames to read from the client, so we'll need to reload the cache with fresh data. */
- drmp3_assert(frameCount > 0);
- pFramesOut += framesToReadFromMemory * channels;
- pCache->iNextFrame = 0;
- pCache->cachedFrameCount = 0;
+static DRMP3_INLINE double drmp3_sin(double x)
+{
+ /* TODO: Implement custom sin(x). */
+ return sin(x);
+}
- framesToReadFromClient = drmp3_countof(pCache->pCachedFrames) / pCache->pSRC->config.channels;
- if (framesToReadFromClient > pCache->pSRC->config.cacheSizeInFrames) {
- framesToReadFromClient = pCache->pSRC->config.cacheSizeInFrames;
- }
+static DRMP3_INLINE double drmp3_exp(double x)
+{
+ /* TODO: Implement custom exp(x). */
+ return exp(x);
+}
- pCache->cachedFrameCount = (drmp3_uint32)pCache->pSRC->onRead(pCache->pSRC, framesToReadFromClient, pCache->pCachedFrames, pCache->pSRC->pUserData);
+static DRMP3_INLINE double drmp3_cos(double x)
+{
+ return drmp3_sin((DRMP3_PI_D*0.5) - x);
+}
- /* Get out of this loop if nothing was able to be retrieved. */
- if (pCache->cachedFrameCount == 0) {
- break;
- }
- }
-
- return totalFramesRead;
+static void* drmp3__malloc_default(size_t sz, void* pUserData)
+{
+ (void)pUserData;
+ return DRMP3_MALLOC(sz);
}
+static void* drmp3__realloc_default(void* p, size_t sz, void* pUserData)
+{
+ (void)pUserData;
+ return DRMP3_REALLOC(p, sz);
+}
-drmp3_uint64 drmp3_src_read_frames_passthrough(drmp3_src* pSRC, drmp3_uint64 frameCount, void* pFramesOut, drmp3_bool32 flush);
-drmp3_uint64 drmp3_src_read_frames_linear(drmp3_src* pSRC, drmp3_uint64 frameCount, void* pFramesOut, drmp3_bool32 flush);
-
-drmp3_bool32 drmp3_src_init(const drmp3_src_config* pConfig, drmp3_src_read_proc onRead, void* pUserData, drmp3_src* pSRC)
+static void drmp3__free_default(void* p, void* pUserData)
{
- if (pSRC == NULL) {
- return DRMP3_FALSE;
- }
+ (void)pUserData;
+ DRMP3_FREE(p);
+}
- drmp3_zero_object(pSRC);
- if (pConfig == NULL || onRead == NULL) {
- return DRMP3_FALSE;
+static void* drmp3__malloc_from_callbacks(size_t sz, const drmp3_allocation_callbacks* pAllocationCallbacks)
+{
+ if (pAllocationCallbacks == NULL) {
+ return NULL;
}
- if (pConfig->channels == 0 || pConfig->channels > 2) {
- return DRMP3_FALSE;
+ if (pAllocationCallbacks->onMalloc != NULL) {
+ return pAllocationCallbacks->onMalloc(sz, pAllocationCallbacks->pUserData);
}
- pSRC->config = *pConfig;
- pSRC->onRead = onRead;
- pSRC->pUserData = pUserData;
-
- if (pSRC->config.cacheSizeInFrames > DRMP3_SRC_CACHE_SIZE_IN_FRAMES || pSRC->config.cacheSizeInFrames == 0) {
- pSRC->config.cacheSizeInFrames = DRMP3_SRC_CACHE_SIZE_IN_FRAMES;
+ /* Try using realloc(). */
+ if (pAllocationCallbacks->onRealloc != NULL) {
+ return pAllocationCallbacks->onRealloc(NULL, sz, pAllocationCallbacks->pUserData);
}
- drmp3_src_cache_init(pSRC, &pSRC->cache);
- return DRMP3_TRUE;
+ return NULL;
}
-drmp3_bool32 drmp3_src_set_input_sample_rate(drmp3_src* pSRC, drmp3_uint32 sampleRateIn)
+static void* drmp3__realloc_from_callbacks(void* p, size_t szNew, size_t szOld, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
- if (pSRC == NULL) {
- return DRMP3_FALSE;
+ if (pAllocationCallbacks == NULL) {
+ return NULL;
}
- /* Must have a sample rate of > 0. */
- if (sampleRateIn == 0) {
- return DRMP3_FALSE;
+ if (pAllocationCallbacks->onRealloc != NULL) {
+ return pAllocationCallbacks->onRealloc(p, szNew, pAllocationCallbacks->pUserData);
}
- pSRC->config.sampleRateIn = sampleRateIn;
- return DRMP3_TRUE;
-}
+ /* Try emulating realloc() in terms of malloc()/free(). */
+ if (pAllocationCallbacks->onMalloc != NULL && pAllocationCallbacks->onFree != NULL) {
+ void* p2;
-drmp3_bool32 drmp3_src_set_output_sample_rate(drmp3_src* pSRC, drmp3_uint32 sampleRateOut)
-{
- if (pSRC == NULL) {
- return DRMP3_FALSE;
- }
+ p2 = pAllocationCallbacks->onMalloc(szNew, pAllocationCallbacks->pUserData);
+ if (p2 == NULL) {
+ return NULL;
+ }
- /* Must have a sample rate of > 0. */
- if (sampleRateOut == 0) {
- return DRMP3_FALSE;
+ if (p != NULL) {
+ DRMP3_COPY_MEMORY(p2, p, szOld);
+ pAllocationCallbacks->onFree(p, pAllocationCallbacks->pUserData);
+ }
+
+ return p2;
}
- pSRC->config.sampleRateOut = sampleRateOut;
- return DRMP3_TRUE;
+ return NULL;
}
-drmp3_uint64 drmp3_src_read_frames_ex(drmp3_src* pSRC, drmp3_uint64 frameCount, void* pFramesOut, drmp3_bool32 flush)
+static void drmp3__free_from_callbacks(void* p, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
- drmp3_src_algorithm algorithm;
-
- if (pSRC == NULL || frameCount == 0 || pFramesOut == NULL) {
- return 0;
- }
-
- algorithm = pSRC->config.algorithm;
-
- /* Always use passthrough if the sample rates are the same. */
- if (pSRC->config.sampleRateIn == pSRC->config.sampleRateOut) {
- algorithm = drmp3_src_algorithm_none;
+ if (p == NULL || pAllocationCallbacks == NULL) {
+ return;
}
- /* Could just use a function pointer instead of a switch for this... */
- switch (algorithm)
- {
- case drmp3_src_algorithm_none: return drmp3_src_read_frames_passthrough(pSRC, frameCount, pFramesOut, flush);
- case drmp3_src_algorithm_linear: return drmp3_src_read_frames_linear(pSRC, frameCount, pFramesOut, flush);
- default: return 0;
+ if (pAllocationCallbacks->onFree != NULL) {
+ pAllocationCallbacks->onFree(p, pAllocationCallbacks->pUserData);
}
}
-drmp3_uint64 drmp3_src_read_frames(drmp3_src* pSRC, drmp3_uint64 frameCount, void* pFramesOut)
-{
- return drmp3_src_read_frames_ex(pSRC, frameCount, pFramesOut, DRMP3_FALSE);
-}
-
-drmp3_uint64 drmp3_src_read_frames_passthrough(drmp3_src* pSRC, drmp3_uint64 frameCount, void* pFramesOut, drmp3_bool32 flush)
-{
- drmp3_assert(pSRC != NULL);
- drmp3_assert(frameCount > 0);
- drmp3_assert(pFramesOut != NULL);
-
- (void)flush; /* Passthrough need not care about flushing. */
- return pSRC->onRead(pSRC, frameCount, pFramesOut, pSRC->pUserData);
-}
-drmp3_uint64 drmp3_src_read_frames_linear(drmp3_src* pSRC, drmp3_uint64 frameCount, void* pFramesOut, drmp3_bool32 flush)
+static drmp3_allocation_callbacks drmp3_copy_allocation_callbacks_or_defaults(const drmp3_allocation_callbacks* pAllocationCallbacks)
{
- double factor;
- drmp3_uint64 totalFramesRead;
-
- drmp3_assert(pSRC != NULL);
- drmp3_assert(frameCount > 0);
- drmp3_assert(pFramesOut != NULL);
-
- /* For linear SRC, the bin is only 2 frames: 1 prior, 1 future. */
-
- /* Load the bin if necessary. */
- if (!pSRC->algo.linear.isPrevFramesLoaded) {
- drmp3_uint64 framesRead = drmp3_src_cache_read_frames(&pSRC->cache, 1, pSRC->bin);
- if (framesRead == 0) {
- return 0;
- }
- pSRC->algo.linear.isPrevFramesLoaded = DRMP3_TRUE;
- }
- if (!pSRC->algo.linear.isNextFramesLoaded) {
- drmp3_uint64 framesRead = drmp3_src_cache_read_frames(&pSRC->cache, 1, pSRC->bin + pSRC->config.channels);
- if (framesRead == 0) {
- return 0;
- }
- pSRC->algo.linear.isNextFramesLoaded = DRMP3_TRUE;
- }
-
- factor = (double)pSRC->config.sampleRateIn / pSRC->config.sampleRateOut;
-
- totalFramesRead = 0;
- while (frameCount > 0) {
- drmp3_uint32 i;
- drmp3_uint32 framesToReadFromClient;
-
- /* The bin is where the previous and next frames are located. */
- float* pPrevFrame = pSRC->bin;
- float* pNextFrame = pSRC->bin + pSRC->config.channels;
-
- drmp3_blend_f32((float*)pFramesOut, pPrevFrame, pNextFrame, (float)pSRC->algo.linear.alpha, pSRC->config.channels);
-
- pSRC->algo.linear.alpha += factor;
-
- /* The new alpha value is how we determine whether or not we need to read fresh frames. */
- framesToReadFromClient = (drmp3_uint32)pSRC->algo.linear.alpha;
- pSRC->algo.linear.alpha = pSRC->algo.linear.alpha - framesToReadFromClient;
-
- for (i = 0; i < framesToReadFromClient; ++i) {
- drmp3_uint64 framesRead;
- drmp3_uint32 j;
-
- for (j = 0; j < pSRC->config.channels; ++j) {
- pPrevFrame[j] = pNextFrame[j];
- }
-
- framesRead = drmp3_src_cache_read_frames(&pSRC->cache, 1, pNextFrame);
- if (framesRead == 0) {
- drmp3_uint32 k;
- for (k = 0; k < pSRC->config.channels; ++k) {
- pNextFrame[k] = 0;
- }
-
- if (pSRC->algo.linear.isNextFramesLoaded) {
- pSRC->algo.linear.isNextFramesLoaded = DRMP3_FALSE;
- } else {
- if (flush) {
- pSRC->algo.linear.isPrevFramesLoaded = DRMP3_FALSE;
- }
- }
-
- break;
- }
- }
-
- pFramesOut = (drmp3_uint8*)pFramesOut + (1 * pSRC->config.channels * sizeof(float));
- frameCount -= 1;
- totalFramesRead += 1;
-
- /* If there's no frames available we need to get out of this loop. */
- if (!pSRC->algo.linear.isNextFramesLoaded && (!flush || !pSRC->algo.linear.isPrevFramesLoaded)) {
- break;
- }
+ if (pAllocationCallbacks != NULL) {
+ /* Copy. */
+ return *pAllocationCallbacks;
+ } else {
+ /* Defaults. */
+ drmp3_allocation_callbacks allocationCallbacks;
+ allocationCallbacks.pUserData = NULL;
+ allocationCallbacks.onMalloc = drmp3__malloc_default;
+ allocationCallbacks.onRealloc = drmp3__realloc_default;
+ allocationCallbacks.onFree = drmp3__free_default;
+ return allocationCallbacks;
}
-
- return totalFramesRead;
}
+
static size_t drmp3__on_read(drmp3* pMP3, void* pBufferOut, size_t bytesToRead)
{
size_t bytesRead = pMP3->onRead(pMP3->pUserData, pBufferOut, bytesToRead);
@@ -2549,7 +2583,7 @@ static size_t drmp3__on_read(drmp3* pMP3, void* pBufferOut, size_t bytesToRead)
static drmp3_bool32 drmp3__on_seek(drmp3* pMP3, int offset, drmp3_seek_origin origin)
{
- drmp3_assert(offset >= 0);
+ DRMP3_ASSERT(offset >= 0);
if (!pMP3->onSeek(pMP3->pUserData, offset, origin)) {
return DRMP3_FALSE;
@@ -2594,140 +2628,45 @@ static drmp3_bool32 drmp3__on_seek_64(drmp3* pMP3, drmp3_uint64 offset, drmp3_se
return DRMP3_TRUE;
}
-static drmp3_uint32 drmp3_decode_next_frame_ex(drmp3* pMP3, drmp3d_sample_t* pPCMFrames, drmp3_bool32 discard);
-static drmp3_uint32 drmp3_decode_next_frame(drmp3* pMP3);
-static drmp3_uint64 drmp3_read_src(drmp3_src* pSRC, drmp3_uint64 frameCount, void* pFramesOut, void* pUserData)
-{
- drmp3* pMP3 = (drmp3*)pUserData;
- float* pFramesOutF = (float*)pFramesOut;
- drmp3_uint64 totalFramesRead = 0;
-
- drmp3_assert(pMP3 != NULL);
- drmp3_assert(pMP3->onRead != NULL);
-
- while (frameCount > 0) {
- /* Read from the in-memory buffer first. */
- while (pMP3->pcmFramesRemainingInMP3Frame > 0 && frameCount > 0) {
- drmp3d_sample_t* frames = (drmp3d_sample_t*)pMP3->pcmFrames;
-#ifndef DR_MP3_FLOAT_OUTPUT
- if (pMP3->mp3FrameChannels == 1) {
- if (pMP3->channels == 1) {
- /* Mono -> Mono. */
- pFramesOutF[0] = frames[pMP3->pcmFramesConsumedInMP3Frame] / 32768.0f;
- } else {
- /* Mono -> Stereo. */
- pFramesOutF[0] = frames[pMP3->pcmFramesConsumedInMP3Frame] / 32768.0f;
- pFramesOutF[1] = frames[pMP3->pcmFramesConsumedInMP3Frame] / 32768.0f;
- }
- } else {
- if (pMP3->channels == 1) {
- /* Stereo -> Mono */
- float sample = 0;
- sample += frames[(pMP3->pcmFramesConsumedInMP3Frame*pMP3->mp3FrameChannels)+0] / 32768.0f;
- sample += frames[(pMP3->pcmFramesConsumedInMP3Frame*pMP3->mp3FrameChannels)+1] / 32768.0f;
- pFramesOutF[0] = sample * 0.5f;
- } else {
- /* Stereo -> Stereo */
- pFramesOutF[0] = frames[(pMP3->pcmFramesConsumedInMP3Frame*pMP3->mp3FrameChannels)+0] / 32768.0f;
- pFramesOutF[1] = frames[(pMP3->pcmFramesConsumedInMP3Frame*pMP3->mp3FrameChannels)+1] / 32768.0f;
- }
- }
-#else
- if (pMP3->mp3FrameChannels == 1) {
- if (pMP3->channels == 1) {
- /* Mono -> Mono. */
- pFramesOutF[0] = frames[pMP3->pcmFramesConsumedInMP3Frame];
- } else {
- /* Mono -> Stereo. */
- pFramesOutF[0] = frames[pMP3->pcmFramesConsumedInMP3Frame];
- pFramesOutF[1] = frames[pMP3->pcmFramesConsumedInMP3Frame];
- }
- } else {
- if (pMP3->channels == 1) {
- /* Stereo -> Mono */
- float sample = 0;
- sample += frames[(pMP3->pcmFramesConsumedInMP3Frame*pMP3->mp3FrameChannels)+0];
- sample += frames[(pMP3->pcmFramesConsumedInMP3Frame*pMP3->mp3FrameChannels)+1];
- pFramesOutF[0] = sample * 0.5f;
- } else {
- /* Stereo -> Stereo */
- pFramesOutF[0] = frames[(pMP3->pcmFramesConsumedInMP3Frame*pMP3->mp3FrameChannels)+0];
- pFramesOutF[1] = frames[(pMP3->pcmFramesConsumedInMP3Frame*pMP3->mp3FrameChannels)+1];
- }
- }
-#endif
-
- pMP3->pcmFramesConsumedInMP3Frame += 1;
- pMP3->pcmFramesRemainingInMP3Frame -= 1;
- totalFramesRead += 1;
- frameCount -= 1;
- pFramesOutF += pSRC->config.channels;
- }
-
- if (frameCount == 0) {
- break;
- }
-
- drmp3_assert(pMP3->pcmFramesRemainingInMP3Frame == 0);
-
- /*
- At this point we have exhausted our in-memory buffer so we need to re-fill. Note that the sample rate may have changed
- at this point which means we'll also need to update our sample rate conversion pipeline.
- */
- if (drmp3_decode_next_frame(pMP3) == 0) {
- break;
- }
- }
-
- return totalFramesRead;
-}
-
-static drmp3_bool32 drmp3_init_src(drmp3* pMP3)
-{
- drmp3_src_config srcConfig;
- drmp3_zero_object(&srcConfig);
- srcConfig.sampleRateIn = DR_MP3_DEFAULT_SAMPLE_RATE;
- srcConfig.sampleRateOut = pMP3->sampleRate;
- srcConfig.channels = pMP3->channels;
- srcConfig.algorithm = drmp3_src_algorithm_linear;
- if (!drmp3_src_init(&srcConfig, drmp3_read_src, pMP3, &pMP3->src)) {
- drmp3_uninit(pMP3);
- return DRMP3_FALSE;
- }
-
- return DRMP3_TRUE;
-}
-
-static drmp3_uint32 drmp3_decode_next_frame_ex(drmp3* pMP3, drmp3d_sample_t* pPCMFrames, drmp3_bool32 discard)
+static drmp3_uint32 drmp3_decode_next_frame_ex__callbacks(drmp3* pMP3, drmp3d_sample_t* pPCMFrames)
{
drmp3_uint32 pcmFramesRead = 0;
- drmp3_assert(pMP3 != NULL);
- drmp3_assert(pMP3->onRead != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3->onRead != NULL);
if (pMP3->atEnd) {
return 0;
}
- do {
+ for (;;) {
drmp3dec_frame_info info;
- size_t leftoverDataSize;
- /* minimp3 recommends doing data submission in 16K chunks. If we don't have at least 16K bytes available, get more. */
- if (pMP3->dataSize < DRMP3_DATA_CHUNK_SIZE) {
+ /* minimp3 recommends doing data submission in chunks of at least 16K. If we don't have at least 16K bytes available, get more. */
+ if (pMP3->dataSize < DRMP3_MIN_DATA_CHUNK_SIZE) {
size_t bytesRead;
+ /* First we need to move the data down. */
+ if (pMP3->pData != NULL) {
+ memmove(pMP3->pData, pMP3->pData + pMP3->dataConsumed, pMP3->dataSize);
+ }
+
+ pMP3->dataConsumed = 0;
+
if (pMP3->dataCapacity < DRMP3_DATA_CHUNK_SIZE) {
drmp3_uint8* pNewData;
+ size_t newDataCap;
- pMP3->dataCapacity = DRMP3_DATA_CHUNK_SIZE;
- pNewData = (drmp3_uint8*)drmp3_realloc(pMP3->pData, pMP3->dataCapacity);
+ newDataCap = DRMP3_DATA_CHUNK_SIZE;
+
+ pNewData = (drmp3_uint8*)drmp3__realloc_from_callbacks(pMP3->pData, newDataCap, pMP3->dataCapacity, &pMP3->allocationCallbacks);
if (pNewData == NULL) {
return 0; /* Out of memory. */
}
pMP3->pData = pNewData;
+ pMP3->dataCapacity = newDataCap;
}
bytesRead = drmp3__on_read(pMP3, pMP3->pData + pMP3->dataSize, (pMP3->dataCapacity - pMP3->dataSize));
@@ -2746,54 +2685,47 @@ static drmp3_uint32 drmp3_decode_next_frame_ex(drmp3* pMP3, drmp3d_sample_t* pPC
return 0; /* File too big. */
}
- pcmFramesRead = drmp3dec_decode_frame(&pMP3->decoder, pMP3->pData, (int)pMP3->dataSize, pPCMFrames, &info); /* <-- Safe size_t -> int conversion thanks to the check above. */
-
+ DRMP3_ASSERT(pMP3->pData != NULL);
+ DRMP3_ASSERT(pMP3->dataCapacity > 0);
+
+ pcmFramesRead = drmp3dec_decode_frame(&pMP3->decoder, pMP3->pData + pMP3->dataConsumed, (int)pMP3->dataSize, pPCMFrames, &info); /* <-- Safe size_t -> int conversion thanks to the check above. */
+
/* Consume the data. */
- leftoverDataSize = (pMP3->dataSize - (size_t)info.frame_bytes);
if (info.frame_bytes > 0) {
- memmove(pMP3->pData, pMP3->pData + info.frame_bytes, leftoverDataSize);
- pMP3->dataSize = leftoverDataSize;
+ pMP3->dataConsumed += (size_t)info.frame_bytes;
+ pMP3->dataSize -= (size_t)info.frame_bytes;
}
- /*
- pcmFramesRead will be equal to 0 if decoding failed. If it is zero and info.frame_bytes > 0 then we have successfully
- decoded the frame. A special case is if we are wanting to discard the frame, in which case we return successfully.
- */
- if (pcmFramesRead > 0 || (info.frame_bytes > 0 && discard)) {
+ /* pcmFramesRead will be equal to 0 if decoding failed. If it is zero and info.frame_bytes > 0 then we have successfully decoded the frame. */
+ if (pcmFramesRead > 0) {
pcmFramesRead = drmp3_hdr_frame_samples(pMP3->decoder.header);
pMP3->pcmFramesConsumedInMP3Frame = 0;
pMP3->pcmFramesRemainingInMP3Frame = pcmFramesRead;
pMP3->mp3FrameChannels = info.channels;
pMP3->mp3FrameSampleRate = info.hz;
-
- /* We need to initialize the resampler if we don't yet have the channel count or sample rate. */
- if (pMP3->channels == 0 || pMP3->sampleRate == 0) {
- if (pMP3->channels == 0) {
- pMP3->channels = info.channels;
- }
- if (pMP3->sampleRate == 0) {
- pMP3->sampleRate = info.hz;
- }
- drmp3_init_src(pMP3);
- }
-
- drmp3_src_set_input_sample_rate(&pMP3->src, pMP3->mp3FrameSampleRate);
break;
} else if (info.frame_bytes == 0) {
+ /* Need more data. minimp3 recommends doing data submission in 16K chunks. */
size_t bytesRead;
- /* Need more data. minimp3 recommends doing data submission in 16K chunks. */
+ /* First we need to move the data down. */
+ memmove(pMP3->pData, pMP3->pData + pMP3->dataConsumed, pMP3->dataSize);
+ pMP3->dataConsumed = 0;
+
if (pMP3->dataCapacity == pMP3->dataSize) {
+ /* No room. Expand. */
drmp3_uint8* pNewData;
+ size_t newDataCap;
- /* No room. Expand. */
- pMP3->dataCapacity += DRMP3_DATA_CHUNK_SIZE;
- pNewData = (drmp3_uint8*)drmp3_realloc(pMP3->pData, pMP3->dataCapacity);
+ newDataCap = pMP3->dataCapacity + DRMP3_DATA_CHUNK_SIZE;
+
+ pNewData = (drmp3_uint8*)drmp3__realloc_from_callbacks(pMP3->pData, newDataCap, pMP3->dataCapacity, &pMP3->allocationCallbacks);
if (pNewData == NULL) {
return 0; /* Out of memory. */
}
pMP3->pData = pNewData;
+ pMP3->dataCapacity = newDataCap;
}
/* Fill in a chunk. */
@@ -2805,15 +2737,50 @@ static drmp3_uint32 drmp3_decode_next_frame_ex(drmp3* pMP3, drmp3d_sample_t* pPC
pMP3->dataSize += bytesRead;
}
- } while (DRMP3_TRUE);
+ };
return pcmFramesRead;
}
+static drmp3_uint32 drmp3_decode_next_frame_ex__memory(drmp3* pMP3, drmp3d_sample_t* pPCMFrames)
+{
+ drmp3_uint32 pcmFramesRead = 0;
+ drmp3dec_frame_info info;
+
+ DRMP3_ASSERT(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3->memory.pData != NULL);
+
+ if (pMP3->atEnd) {
+ return 0;
+ }
+
+ pcmFramesRead = drmp3dec_decode_frame(&pMP3->decoder, pMP3->memory.pData + pMP3->memory.currentReadPos, (int)(pMP3->memory.dataSize - pMP3->memory.currentReadPos), pPCMFrames, &info);
+ if (pcmFramesRead > 0) {
+ pMP3->pcmFramesConsumedInMP3Frame = 0;
+ pMP3->pcmFramesRemainingInMP3Frame = pcmFramesRead;
+ pMP3->mp3FrameChannels = info.channels;
+ pMP3->mp3FrameSampleRate = info.hz;
+ }
+
+ /* Consume the data. */
+ pMP3->memory.currentReadPos += (size_t)info.frame_bytes;
+
+ return pcmFramesRead;
+}
+
+static drmp3_uint32 drmp3_decode_next_frame_ex(drmp3* pMP3, drmp3d_sample_t* pPCMFrames)
+{
+ if (pMP3->memory.pData != NULL && pMP3->memory.dataSize > 0) {
+ return drmp3_decode_next_frame_ex__memory(pMP3, pPCMFrames);
+ } else {
+ return drmp3_decode_next_frame_ex__callbacks(pMP3, pPCMFrames);
+ }
+}
+
static drmp3_uint32 drmp3_decode_next_frame(drmp3* pMP3)
{
- drmp3_assert(pMP3 != NULL);
- return drmp3_decode_next_frame_ex(pMP3, (drmp3d_sample_t*)pMP3->pcmFrames, DRMP3_FALSE);
+ DRMP3_ASSERT(pMP3 != NULL);
+ return drmp3_decode_next_frame_ex(pMP3, (drmp3d_sample_t*)pMP3->pcmFrames);
}
#if 0
@@ -2821,7 +2788,7 @@ static drmp3_uint32 drmp3_seek_next_frame(drmp3* pMP3)
{
drmp3_uint32 pcmFrameCount;
- drmp3_assert(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
pcmFrameCount = drmp3_decode_next_frame_ex(pMP3, NULL);
if (pcmFrameCount == 0) {
@@ -2837,61 +2804,43 @@ static drmp3_uint32 drmp3_seek_next_frame(drmp3* pMP3)
}
#endif
-drmp3_bool32 drmp3_init_internal(drmp3* pMP3, drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, const drmp3_config* pConfig)
+static drmp3_bool32 drmp3_init_internal(drmp3* pMP3, drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
- drmp3_config config;
-
- drmp3_assert(pMP3 != NULL);
- drmp3_assert(onRead != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
+ DRMP3_ASSERT(onRead != NULL);
/* This function assumes the output object has already been reset to 0. Do not do that here, otherwise things will break. */
drmp3dec_init(&pMP3->decoder);
- /* The config can be null in which case we use defaults. */
- if (pConfig != NULL) {
- config = *pConfig;
- } else {
- drmp3_zero_object(&config);
- }
-
- pMP3->channels = config.outputChannels;
-
- /* Cannot have more than 2 channels. */
- if (pMP3->channels > 2) {
- pMP3->channels = 2;
- }
-
- pMP3->sampleRate = config.outputSampleRate;
-
pMP3->onRead = onRead;
pMP3->onSeek = onSeek;
pMP3->pUserData = pUserData;
+ pMP3->allocationCallbacks = drmp3_copy_allocation_callbacks_or_defaults(pAllocationCallbacks);
- /*
- We need a sample rate converter for converting the sample rate from the MP3 frames to the requested output sample rate. Note that if
- we don't yet know the channel count or sample rate we defer this until the first frame is read.
- */
- if (pMP3->channels != 0 && pMP3->sampleRate != 0) {
- drmp3_init_src(pMP3);
+ if (pMP3->allocationCallbacks.onFree == NULL || (pMP3->allocationCallbacks.onMalloc == NULL && pMP3->allocationCallbacks.onRealloc == NULL)) {
+ return DRMP3_FALSE; /* Invalid allocation callbacks. */
}
-
+
/* Decode the first frame to confirm that it is indeed a valid MP3 stream. */
if (!drmp3_decode_next_frame(pMP3)) {
- drmp3_uninit(pMP3);
+ drmp3__free_from_callbacks(pMP3->pData, &pMP3->allocationCallbacks); /* The call above may have allocated memory. Need to make sure it's freed before aborting. */
return DRMP3_FALSE; /* Not a valid MP3 stream. */
}
+ pMP3->channels = pMP3->mp3FrameChannels;
+ pMP3->sampleRate = pMP3->mp3FrameSampleRate;
+
return DRMP3_TRUE;
}
-drmp3_bool32 drmp3_init(drmp3* pMP3, drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, const drmp3_config* pConfig)
+DRMP3_API drmp3_bool32 drmp3_init(drmp3* pMP3, drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
if (pMP3 == NULL || onRead == NULL) {
return DRMP3_FALSE;
}
- drmp3_zero_object(pMP3);
- return drmp3_init_internal(pMP3, onRead, onSeek, pUserData, pConfig);
+ DRMP3_ZERO_OBJECT(pMP3);
+ return drmp3_init_internal(pMP3, onRead, onSeek, pUserData, pAllocationCallbacks);
}
@@ -2900,8 +2849,8 @@ static size_t drmp3__on_read_memory(void* pUserData, void* pBufferOut, size_t by
drmp3* pMP3 = (drmp3*)pUserData;
size_t bytesRemaining;
- drmp3_assert(pMP3 != NULL);
- drmp3_assert(pMP3->memory.dataSize >= pMP3->memory.currentReadPos);
+ DRMP3_ASSERT(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3->memory.dataSize >= pMP3->memory.currentReadPos);
bytesRemaining = pMP3->memory.dataSize - pMP3->memory.currentReadPos;
if (bytesToRead > bytesRemaining) {
@@ -2909,7 +2858,7 @@ static size_t drmp3__on_read_memory(void* pUserData, void* pBufferOut, size_t by
}
if (bytesToRead > 0) {
- drmp3_copy_memory(pBufferOut, pMP3->memory.pData + pMP3->memory.currentReadPos, bytesToRead);
+ DRMP3_COPY_MEMORY(pBufferOut, pMP3->memory.pData + pMP3->memory.currentReadPos, bytesToRead);
pMP3->memory.currentReadPos += bytesToRead;
}
@@ -2920,7 +2869,7 @@ static drmp3_bool32 drmp3__on_seek_memory(void* pUserData, int byteOffset, drmp3
{
drmp3* pMP3 = (drmp3*)pUserData;
- drmp3_assert(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
if (origin == drmp3_seek_origin_current) {
if (byteOffset > 0) {
@@ -2946,13 +2895,13 @@ static drmp3_bool32 drmp3__on_seek_memory(void* pUserData, int byteOffset, drmp3
return DRMP3_TRUE;
}
-drmp3_bool32 drmp3_init_memory(drmp3* pMP3, const void* pData, size_t dataSize, const drmp3_config* pConfig)
+DRMP3_API drmp3_bool32 drmp3_init_memory(drmp3* pMP3, const void* pData, size_t dataSize, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
if (pMP3 == NULL) {
return DRMP3_FALSE;
}
- drmp3_zero_object(pMP3);
+ DRMP3_ZERO_OBJECT(pMP3);
if (pData == NULL || dataSize == 0) {
return DRMP3_FALSE;
@@ -2962,12 +2911,561 @@ drmp3_bool32 drmp3_init_memory(drmp3* pMP3, const void* pData, size_t dataSize,
pMP3->memory.dataSize = dataSize;
pMP3->memory.currentReadPos = 0;
- return drmp3_init_internal(pMP3, drmp3__on_read_memory, drmp3__on_seek_memory, pMP3, pConfig);
+ return drmp3_init_internal(pMP3, drmp3__on_read_memory, drmp3__on_seek_memory, pMP3, pAllocationCallbacks);
}
#ifndef DR_MP3_NO_STDIO
#include <stdio.h>
+#include <wchar.h> /* For wcslen(), wcsrtombs() */
+
+/* drmp3_result_from_errno() is only used inside DR_MP3_NO_STDIO for now. Move this out if it's ever used elsewhere. */
+#include <errno.h>
+static drmp3_result drmp3_result_from_errno(int e)
+{
+ switch (e)
+ {
+ case 0: return DRMP3_SUCCESS;
+ #ifdef EPERM
+ case EPERM: return DRMP3_INVALID_OPERATION;
+ #endif
+ #ifdef ENOENT
+ case ENOENT: return DRMP3_DOES_NOT_EXIST;
+ #endif
+ #ifdef ESRCH
+ case ESRCH: return DRMP3_DOES_NOT_EXIST;
+ #endif
+ #ifdef EINTR
+ case EINTR: return DRMP3_INTERRUPT;
+ #endif
+ #ifdef EIO
+ case EIO: return DRMP3_IO_ERROR;
+ #endif
+ #ifdef ENXIO
+ case ENXIO: return DRMP3_DOES_NOT_EXIST;
+ #endif
+ #ifdef E2BIG
+ case E2BIG: return DRMP3_INVALID_ARGS;
+ #endif
+ #ifdef ENOEXEC
+ case ENOEXEC: return DRMP3_INVALID_FILE;
+ #endif
+ #ifdef EBADF
+ case EBADF: return DRMP3_INVALID_FILE;
+ #endif
+ #ifdef ECHILD
+ case ECHILD: return DRMP3_ERROR;
+ #endif
+ #ifdef EAGAIN
+ case EAGAIN: return DRMP3_UNAVAILABLE;
+ #endif
+ #ifdef ENOMEM
+ case ENOMEM: return DRMP3_OUT_OF_MEMORY;
+ #endif
+ #ifdef EACCES
+ case EACCES: return DRMP3_ACCESS_DENIED;
+ #endif
+ #ifdef EFAULT
+ case EFAULT: return DRMP3_BAD_ADDRESS;
+ #endif
+ #ifdef ENOTBLK
+ case ENOTBLK: return DRMP3_ERROR;
+ #endif
+ #ifdef EBUSY
+ case EBUSY: return DRMP3_BUSY;
+ #endif
+ #ifdef EEXIST
+ case EEXIST: return DRMP3_ALREADY_EXISTS;
+ #endif
+ #ifdef EXDEV
+ case EXDEV: return DRMP3_ERROR;
+ #endif
+ #ifdef ENODEV
+ case ENODEV: return DRMP3_DOES_NOT_EXIST;
+ #endif
+ #ifdef ENOTDIR
+ case ENOTDIR: return DRMP3_NOT_DIRECTORY;
+ #endif
+ #ifdef EISDIR
+ case EISDIR: return DRMP3_IS_DIRECTORY;
+ #endif
+ #ifdef EINVAL
+ case EINVAL: return DRMP3_INVALID_ARGS;
+ #endif
+ #ifdef ENFILE
+ case ENFILE: return DRMP3_TOO_MANY_OPEN_FILES;
+ #endif
+ #ifdef EMFILE
+ case EMFILE: return DRMP3_TOO_MANY_OPEN_FILES;
+ #endif
+ #ifdef ENOTTY
+ case ENOTTY: return DRMP3_INVALID_OPERATION;
+ #endif
+ #ifdef ETXTBSY
+ case ETXTBSY: return DRMP3_BUSY;
+ #endif
+ #ifdef EFBIG
+ case EFBIG: return DRMP3_TOO_BIG;
+ #endif
+ #ifdef ENOSPC
+ case ENOSPC: return DRMP3_NO_SPACE;
+ #endif
+ #ifdef ESPIPE
+ case ESPIPE: return DRMP3_BAD_SEEK;
+ #endif
+ #ifdef EROFS
+ case EROFS: return DRMP3_ACCESS_DENIED;
+ #endif
+ #ifdef EMLINK
+ case EMLINK: return DRMP3_TOO_MANY_LINKS;
+ #endif
+ #ifdef EPIPE
+ case EPIPE: return DRMP3_BAD_PIPE;
+ #endif
+ #ifdef EDOM
+ case EDOM: return DRMP3_OUT_OF_RANGE;
+ #endif
+ #ifdef ERANGE
+ case ERANGE: return DRMP3_OUT_OF_RANGE;
+ #endif
+ #ifdef EDEADLK
+ case EDEADLK: return DRMP3_DEADLOCK;
+ #endif
+ #ifdef ENAMETOOLONG
+ case ENAMETOOLONG: return DRMP3_PATH_TOO_LONG;
+ #endif
+ #ifdef ENOLCK
+ case ENOLCK: return DRMP3_ERROR;
+ #endif
+ #ifdef ENOSYS
+ case ENOSYS: return DRMP3_NOT_IMPLEMENTED;
+ #endif
+ #ifdef ENOTEMPTY
+ case ENOTEMPTY: return DRMP3_DIRECTORY_NOT_EMPTY;
+ #endif
+ #ifdef ELOOP
+ case ELOOP: return DRMP3_TOO_MANY_LINKS;
+ #endif
+ #ifdef ENOMSG
+ case ENOMSG: return DRMP3_NO_MESSAGE;
+ #endif
+ #ifdef EIDRM
+ case EIDRM: return DRMP3_ERROR;
+ #endif
+ #ifdef ECHRNG
+ case ECHRNG: return DRMP3_ERROR;
+ #endif
+ #ifdef EL2NSYNC
+ case EL2NSYNC: return DRMP3_ERROR;
+ #endif
+ #ifdef EL3HLT
+ case EL3HLT: return DRMP3_ERROR;
+ #endif
+ #ifdef EL3RST
+ case EL3RST: return DRMP3_ERROR;
+ #endif
+ #ifdef ELNRNG
+ case ELNRNG: return DRMP3_OUT_OF_RANGE;
+ #endif
+ #ifdef EUNATCH
+ case EUNATCH: return DRMP3_ERROR;
+ #endif
+ #ifdef ENOCSI
+ case ENOCSI: return DRMP3_ERROR;
+ #endif
+ #ifdef EL2HLT
+ case EL2HLT: return DRMP3_ERROR;
+ #endif
+ #ifdef EBADE
+ case EBADE: return DRMP3_ERROR;
+ #endif
+ #ifdef EBADR
+ case EBADR: return DRMP3_ERROR;
+ #endif
+ #ifdef EXFULL
+ case EXFULL: return DRMP3_ERROR;
+ #endif
+ #ifdef ENOANO
+ case ENOANO: return DRMP3_ERROR;
+ #endif
+ #ifdef EBADRQC
+ case EBADRQC: return DRMP3_ERROR;
+ #endif
+ #ifdef EBADSLT
+ case EBADSLT: return DRMP3_ERROR;
+ #endif
+ #ifdef EBFONT
+ case EBFONT: return DRMP3_INVALID_FILE;
+ #endif
+ #ifdef ENOSTR
+ case ENOSTR: return DRMP3_ERROR;
+ #endif
+ #ifdef ENODATA
+ case ENODATA: return DRMP3_NO_DATA_AVAILABLE;
+ #endif
+ #ifdef ETIME
+ case ETIME: return DRMP3_TIMEOUT;
+ #endif
+ #ifdef ENOSR
+ case ENOSR: return DRMP3_NO_DATA_AVAILABLE;
+ #endif
+ #ifdef ENONET
+ case ENONET: return DRMP3_NO_NETWORK;
+ #endif
+ #ifdef ENOPKG
+ case ENOPKG: return DRMP3_ERROR;
+ #endif
+ #ifdef EREMOTE
+ case EREMOTE: return DRMP3_ERROR;
+ #endif
+ #ifdef ENOLINK
+ case ENOLINK: return DRMP3_ERROR;
+ #endif
+ #ifdef EADV
+ case EADV: return DRMP3_ERROR;
+ #endif
+ #ifdef ESRMNT
+ case ESRMNT: return DRMP3_ERROR;
+ #endif
+ #ifdef ECOMM
+ case ECOMM: return DRMP3_ERROR;
+ #endif
+ #ifdef EPROTO
+ case EPROTO: return DRMP3_ERROR;
+ #endif
+ #ifdef EMULTIHOP
+ case EMULTIHOP: return DRMP3_ERROR;
+ #endif
+ #ifdef EDOTDOT
+ case EDOTDOT: return DRMP3_ERROR;
+ #endif
+ #ifdef EBADMSG
+ case EBADMSG: return DRMP3_BAD_MESSAGE;
+ #endif
+ #ifdef EOVERFLOW
+ case EOVERFLOW: return DRMP3_TOO_BIG;
+ #endif
+ #ifdef ENOTUNIQ
+ case ENOTUNIQ: return DRMP3_NOT_UNIQUE;
+ #endif
+ #ifdef EBADFD
+ case EBADFD: return DRMP3_ERROR;
+ #endif
+ #ifdef EREMCHG
+ case EREMCHG: return DRMP3_ERROR;
+ #endif
+ #ifdef ELIBACC
+ case ELIBACC: return DRMP3_ACCESS_DENIED;
+ #endif
+ #ifdef ELIBBAD
+ case ELIBBAD: return DRMP3_INVALID_FILE;
+ #endif
+ #ifdef ELIBSCN
+ case ELIBSCN: return DRMP3_INVALID_FILE;
+ #endif
+ #ifdef ELIBMAX
+ case ELIBMAX: return DRMP3_ERROR;
+ #endif
+ #ifdef ELIBEXEC
+ case ELIBEXEC: return DRMP3_ERROR;
+ #endif
+ #ifdef EILSEQ
+ case EILSEQ: return DRMP3_INVALID_DATA;
+ #endif
+ #ifdef ERESTART
+ case ERESTART: return DRMP3_ERROR;
+ #endif
+ #ifdef ESTRPIPE
+ case ESTRPIPE: return DRMP3_ERROR;
+ #endif
+ #ifdef EUSERS
+ case EUSERS: return DRMP3_ERROR;
+ #endif
+ #ifdef ENOTSOCK
+ case ENOTSOCK: return DRMP3_NOT_SOCKET;
+ #endif
+ #ifdef EDESTADDRREQ
+ case EDESTADDRREQ: return DRMP3_NO_ADDRESS;
+ #endif
+ #ifdef EMSGSIZE
+ case EMSGSIZE: return DRMP3_TOO_BIG;
+ #endif
+ #ifdef EPROTOTYPE
+ case EPROTOTYPE: return DRMP3_BAD_PROTOCOL;
+ #endif
+ #ifdef ENOPROTOOPT
+ case ENOPROTOOPT: return DRMP3_PROTOCOL_UNAVAILABLE;
+ #endif
+ #ifdef EPROTONOSUPPORT
+ case EPROTONOSUPPORT: return DRMP3_PROTOCOL_NOT_SUPPORTED;
+ #endif
+ #ifdef ESOCKTNOSUPPORT
+ case ESOCKTNOSUPPORT: return DRMP3_SOCKET_NOT_SUPPORTED;
+ #endif
+ #ifdef EOPNOTSUPP
+ case EOPNOTSUPP: return DRMP3_INVALID_OPERATION;
+ #endif
+ #ifdef EPFNOSUPPORT
+ case EPFNOSUPPORT: return DRMP3_PROTOCOL_FAMILY_NOT_SUPPORTED;
+ #endif
+ #ifdef EAFNOSUPPORT
+ case EAFNOSUPPORT: return DRMP3_ADDRESS_FAMILY_NOT_SUPPORTED;
+ #endif
+ #ifdef EADDRINUSE
+ case EADDRINUSE: return DRMP3_ALREADY_IN_USE;
+ #endif
+ #ifdef EADDRNOTAVAIL
+ case EADDRNOTAVAIL: return DRMP3_ERROR;
+ #endif
+ #ifdef ENETDOWN
+ case ENETDOWN: return DRMP3_NO_NETWORK;
+ #endif
+ #ifdef ENETUNREACH
+ case ENETUNREACH: return DRMP3_NO_NETWORK;
+ #endif
+ #ifdef ENETRESET
+ case ENETRESET: return DRMP3_NO_NETWORK;
+ #endif
+ #ifdef ECONNABORTED
+ case ECONNABORTED: return DRMP3_NO_NETWORK;
+ #endif
+ #ifdef ECONNRESET
+ case ECONNRESET: return DRMP3_CONNECTION_RESET;
+ #endif
+ #ifdef ENOBUFS
+ case ENOBUFS: return DRMP3_NO_SPACE;
+ #endif
+ #ifdef EISCONN
+ case EISCONN: return DRMP3_ALREADY_CONNECTED;
+ #endif
+ #ifdef ENOTCONN
+ case ENOTCONN: return DRMP3_NOT_CONNECTED;
+ #endif
+ #ifdef ESHUTDOWN
+ case ESHUTDOWN: return DRMP3_ERROR;
+ #endif
+ #ifdef ETOOMANYREFS
+ case ETOOMANYREFS: return DRMP3_ERROR;
+ #endif
+ #ifdef ETIMEDOUT
+ case ETIMEDOUT: return DRMP3_TIMEOUT;
+ #endif
+ #ifdef ECONNREFUSED
+ case ECONNREFUSED: return DRMP3_CONNECTION_REFUSED;
+ #endif
+ #ifdef EHOSTDOWN
+ case EHOSTDOWN: return DRMP3_NO_HOST;
+ #endif
+ #ifdef EHOSTUNREACH
+ case EHOSTUNREACH: return DRMP3_NO_HOST;
+ #endif
+ #ifdef EALREADY
+ case EALREADY: return DRMP3_IN_PROGRESS;
+ #endif
+ #ifdef EINPROGRESS
+ case EINPROGRESS: return DRMP3_IN_PROGRESS;
+ #endif
+ #ifdef ESTALE
+ case ESTALE: return DRMP3_INVALID_FILE;
+ #endif
+ #ifdef EUCLEAN
+ case EUCLEAN: return DRMP3_ERROR;
+ #endif
+ #ifdef ENOTNAM
+ case ENOTNAM: return DRMP3_ERROR;
+ #endif
+ #ifdef ENAVAIL
+ case ENAVAIL: return DRMP3_ERROR;
+ #endif
+ #ifdef EISNAM
+ case EISNAM: return DRMP3_ERROR;
+ #endif
+ #ifdef EREMOTEIO
+ case EREMOTEIO: return DRMP3_IO_ERROR;
+ #endif
+ #ifdef EDQUOT
+ case EDQUOT: return DRMP3_NO_SPACE;
+ #endif
+ #ifdef ENOMEDIUM
+ case ENOMEDIUM: return DRMP3_DOES_NOT_EXIST;
+ #endif
+ #ifdef EMEDIUMTYPE
+ case EMEDIUMTYPE: return DRMP3_ERROR;
+ #endif
+ #ifdef ECANCELED
+ case ECANCELED: return DRMP3_CANCELLED;
+ #endif
+ #ifdef ENOKEY
+ case ENOKEY: return DRMP3_ERROR;
+ #endif
+ #ifdef EKEYEXPIRED
+ case EKEYEXPIRED: return DRMP3_ERROR;
+ #endif
+ #ifdef EKEYREVOKED
+ case EKEYREVOKED: return DRMP3_ERROR;
+ #endif
+ #ifdef EKEYREJECTED
+ case EKEYREJECTED: return DRMP3_ERROR;
+ #endif
+ #ifdef EOWNERDEAD
+ case EOWNERDEAD: return DRMP3_ERROR;
+ #endif
+ #ifdef ENOTRECOVERABLE
+ case ENOTRECOVERABLE: return DRMP3_ERROR;
+ #endif
+ #ifdef ERFKILL
+ case ERFKILL: return DRMP3_ERROR;
+ #endif
+ #ifdef EHWPOISON
+ case EHWPOISON: return DRMP3_ERROR;
+ #endif
+ default: return DRMP3_ERROR;
+ }
+}
+
+static drmp3_result drmp3_fopen(FILE** ppFile, const char* pFilePath, const char* pOpenMode)
+{
+#if defined(_MSC_VER) && _MSC_VER >= 1400
+ errno_t err;
+#endif
+
+ if (ppFile != NULL) {
+ *ppFile = NULL; /* Safety. */
+ }
+
+ if (pFilePath == NULL || pOpenMode == NULL || ppFile == NULL) {
+ return DRMP3_INVALID_ARGS;
+ }
+
+#if defined(_MSC_VER) && _MSC_VER >= 1400
+ err = fopen_s(ppFile, pFilePath, pOpenMode);
+ if (err != 0) {
+ return drmp3_result_from_errno(err);
+ }
+#else
+#if defined(_WIN32) || defined(__APPLE__)
+ *ppFile = fopen(pFilePath, pOpenMode);
+#else
+ #if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64 && defined(_LARGEFILE64_SOURCE)
+ *ppFile = fopen64(pFilePath, pOpenMode);
+ #else
+ *ppFile = fopen(pFilePath, pOpenMode);
+ #endif
+#endif
+ if (*ppFile == NULL) {
+ drmp3_result result = drmp3_result_from_errno(errno);
+ if (result == DRMP3_SUCCESS) {
+ result = DRMP3_ERROR; /* Just a safety check to make sure we never ever return success when pFile == NULL. */
+ }
+
+ return result;
+ }
+#endif
+
+ return DRMP3_SUCCESS;
+}
+
+/*
+_wfopen() isn't always available in all compilation environments.
+
+ * Windows only.
+ * MSVC seems to support it universally as far back as VC6 from what I can tell (haven't checked further back).
+ * MinGW-64 (both 32- and 64-bit) seems to support it.
+ * MinGW wraps it in !defined(__STRICT_ANSI__).
+ * OpenWatcom wraps it in !defined(_NO_EXT_KEYS).
+
+This can be reviewed as compatibility issues arise. The preference is to use _wfopen_s() and _wfopen() as opposed to the wcsrtombs()
+fallback, so if you notice your compiler not detecting this properly I'm happy to look at adding support.
+*/
+#if defined(_WIN32)
+ #if defined(_MSC_VER) || defined(__MINGW64__) || (!defined(__STRICT_ANSI__) && !defined(_NO_EXT_KEYS))
+ #define DRMP3_HAS_WFOPEN
+ #endif
+#endif
+
+static drmp3_result drmp3_wfopen(FILE** ppFile, const wchar_t* pFilePath, const wchar_t* pOpenMode, const drmp3_allocation_callbacks* pAllocationCallbacks)
+{
+ if (ppFile != NULL) {
+ *ppFile = NULL; /* Safety. */
+ }
+
+ if (pFilePath == NULL || pOpenMode == NULL || ppFile == NULL) {
+ return DRMP3_INVALID_ARGS;
+ }
+
+#if defined(DRMP3_HAS_WFOPEN)
+ {
+ /* Use _wfopen() on Windows. */
+ #if defined(_MSC_VER) && _MSC_VER >= 1400
+ errno_t err = _wfopen_s(ppFile, pFilePath, pOpenMode);
+ if (err != 0) {
+ return drmp3_result_from_errno(err);
+ }
+ #else
+ *ppFile = _wfopen(pFilePath, pOpenMode);
+ if (*ppFile == NULL) {
+ return drmp3_result_from_errno(errno);
+ }
+ #endif
+ (void)pAllocationCallbacks;
+ }
+#else
+ /*
+ Use fopen() on anything other than Windows. Requires a conversion. This is annoying because fopen() is locale specific. The only real way I can
+ think of to do this is with wcsrtombs(). Note that wcstombs() is apparently not thread-safe because it uses a static global mbstate_t object for
+ maintaining state. I've checked this with -std=c89 and it works, but if somebody get's a compiler error I'll look into improving compatibility.
+ */
+ {
+ mbstate_t mbs;
+ size_t lenMB;
+ const wchar_t* pFilePathTemp = pFilePath;
+ char* pFilePathMB = NULL;
+ char pOpenModeMB[32] = {0};
+
+ /* Get the length first. */
+ DRMP3_ZERO_OBJECT(&mbs);
+ lenMB = wcsrtombs(NULL, &pFilePathTemp, 0, &mbs);
+ if (lenMB == (size_t)-1) {
+ return drmp3_result_from_errno(errno);
+ }
+
+ pFilePathMB = (char*)drmp3__malloc_from_callbacks(lenMB + 1, pAllocationCallbacks);
+ if (pFilePathMB == NULL) {
+ return DRMP3_OUT_OF_MEMORY;
+ }
+
+ pFilePathTemp = pFilePath;
+ DRMP3_ZERO_OBJECT(&mbs);
+ wcsrtombs(pFilePathMB, &pFilePathTemp, lenMB + 1, &mbs);
+
+ /* The open mode should always consist of ASCII characters so we should be able to do a trivial conversion. */
+ {
+ size_t i = 0;
+ for (;;) {
+ if (pOpenMode[i] == 0) {
+ pOpenModeMB[i] = '\0';
+ break;
+ }
+
+ pOpenModeMB[i] = (char)pOpenMode[i];
+ i += 1;
+ }
+ }
+
+ *ppFile = fopen(pFilePathMB, pOpenModeMB);
+
+ drmp3__free_from_callbacks(pFilePathMB, pAllocationCallbacks);
+ }
+
+ if (*ppFile == NULL) {
+ return DRMP3_ERROR;
+ }
+#endif
+
+ return DRMP3_SUCCESS;
+}
+
+
static size_t drmp3__on_read_stdio(void* pUserData, void* pBufferOut, size_t bytesToRead)
{
@@ -2979,25 +3477,44 @@ static drmp3_bool32 drmp3__on_seek_stdio(void* pUserData, int offset, drmp3_seek
return fseek((FILE*)pUserData, offset, (origin == drmp3_seek_origin_current) ? SEEK_CUR : SEEK_SET) == 0;
}
-drmp3_bool32 drmp3_init_file(drmp3* pMP3, const char* filePath, const drmp3_config* pConfig)
+DRMP3_API drmp3_bool32 drmp3_init_file(drmp3* pMP3, const char* pFilePath, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
+ drmp3_bool32 result;
FILE* pFile;
-#if defined(_MSC_VER) && _MSC_VER >= 1400
- if (fopen_s(&pFile, filePath, "rb") != 0) {
+
+ if (drmp3_fopen(&pFile, pFilePath, "rb") != DRMP3_SUCCESS) {
return DRMP3_FALSE;
}
-#else
- pFile = fopen(filePath, "rb");
- if (pFile == NULL) {
+
+ result = drmp3_init(pMP3, drmp3__on_read_stdio, drmp3__on_seek_stdio, (void*)pFile, pAllocationCallbacks);
+ if (result != DRMP3_TRUE) {
+ fclose(pFile);
+ return result;
+ }
+
+ return DRMP3_TRUE;
+}
+
+DRMP3_API drmp3_bool32 drmp3_init_file_w(drmp3* pMP3, const wchar_t* pFilePath, const drmp3_allocation_callbacks* pAllocationCallbacks)
+{
+ drmp3_bool32 result;
+ FILE* pFile;
+
+ if (drmp3_wfopen(&pFile, pFilePath, L"rb", pAllocationCallbacks) != DRMP3_SUCCESS) {
return DRMP3_FALSE;
}
-#endif
- return drmp3_init(pMP3, drmp3__on_read_stdio, drmp3__on_seek_stdio, (void*)pFile, pConfig);
+ result = drmp3_init(pMP3, drmp3__on_read_stdio, drmp3__on_seek_stdio, (void*)pFile, pAllocationCallbacks);
+ if (result != DRMP3_TRUE) {
+ fclose(pFile);
+ return result;
+ }
+
+ return DRMP3_TRUE;
}
#endif
-void drmp3_uninit(drmp3* pMP3)
+DRMP3_API void drmp3_uninit(drmp3* pMP3)
{
if (pMP3 == NULL) {
return;
@@ -3005,106 +3522,213 @@ void drmp3_uninit(drmp3* pMP3)
#ifndef DR_MP3_NO_STDIO
if (pMP3->onRead == drmp3__on_read_stdio) {
- fclose((FILE*)pMP3->pUserData);
+ FILE* pFile = (FILE*)pMP3->pUserData;
+ if (pFile != NULL) {
+ fclose(pFile);
+ pMP3->pUserData = NULL; /* Make sure the file handle is cleared to NULL to we don't attempt to close it a second time. */
+ }
}
#endif
- drmp3_free(pMP3->pData);
+ drmp3__free_from_callbacks(pMP3->pData, &pMP3->allocationCallbacks);
}
-drmp3_uint64 drmp3_read_pcm_frames_f32(drmp3* pMP3, drmp3_uint64 framesToRead, float* pBufferOut)
+#if defined(DR_MP3_FLOAT_OUTPUT)
+static void drmp3_f32_to_s16(drmp3_int16* dst, const float* src, drmp3_uint64 sampleCount)
+{
+ drmp3_uint64 i;
+ drmp3_uint64 i4;
+ drmp3_uint64 sampleCount4;
+
+ /* Unrolled. */
+ i = 0;
+ sampleCount4 = sampleCount >> 2;
+ for (i4 = 0; i4 < sampleCount4; i4 += 1) {
+ float x0 = src[i+0];
+ float x1 = src[i+1];
+ float x2 = src[i+2];
+ float x3 = src[i+3];
+
+ x0 = ((x0 < -1) ? -1 : ((x0 > 1) ? 1 : x0));
+ x1 = ((x1 < -1) ? -1 : ((x1 > 1) ? 1 : x1));
+ x2 = ((x2 < -1) ? -1 : ((x2 > 1) ? 1 : x2));
+ x3 = ((x3 < -1) ? -1 : ((x3 > 1) ? 1 : x3));
+
+ x0 = x0 * 32767.0f;
+ x1 = x1 * 32767.0f;
+ x2 = x2 * 32767.0f;
+ x3 = x3 * 32767.0f;
+
+ dst[i+0] = (drmp3_int16)x0;
+ dst[i+1] = (drmp3_int16)x1;
+ dst[i+2] = (drmp3_int16)x2;
+ dst[i+3] = (drmp3_int16)x3;
+
+ i += 4;
+ }
+
+ /* Leftover. */
+ for (; i < sampleCount; i += 1) {
+ float x = src[i];
+ x = ((x < -1) ? -1 : ((x > 1) ? 1 : x)); /* clip */
+ x = x * 32767.0f; /* -1..1 to -32767..32767 */
+
+ dst[i] = (drmp3_int16)x;
+ }
+}
+#endif
+
+#if !defined(DR_MP3_FLOAT_OUTPUT)
+static void drmp3_s16_to_f32(float* dst, const drmp3_int16* src, drmp3_uint64 sampleCount)
+{
+ drmp3_uint64 i;
+ for (i = 0; i < sampleCount; i += 1) {
+ float x = (float)src[i];
+ x = x * 0.000030517578125f; /* -32768..32767 to -1..0.999969482421875 */
+ dst[i] = x;
+ }
+}
+#endif
+
+
+static drmp3_uint64 drmp3_read_pcm_frames_raw(drmp3* pMP3, drmp3_uint64 framesToRead, void* pBufferOut)
{
drmp3_uint64 totalFramesRead = 0;
+ DRMP3_ASSERT(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3->onRead != NULL);
+
+ while (framesToRead > 0) {
+ drmp3_uint32 framesToConsume = (drmp3_uint32)DRMP3_MIN(pMP3->pcmFramesRemainingInMP3Frame, framesToRead);
+ if (pBufferOut != NULL) {
+ #if defined(DR_MP3_FLOAT_OUTPUT)
+ /* f32 */
+ float* pFramesOutF32 = (float*)DRMP3_OFFSET_PTR(pBufferOut, sizeof(float) * totalFramesRead * pMP3->channels);
+ float* pFramesInF32 = (float*)DRMP3_OFFSET_PTR(&pMP3->pcmFrames[0], sizeof(float) * pMP3->pcmFramesConsumedInMP3Frame * pMP3->mp3FrameChannels);
+ DRMP3_COPY_MEMORY(pFramesOutF32, pFramesInF32, sizeof(float) * framesToConsume * pMP3->channels);
+ #else
+ /* s16 */
+ drmp3_int16* pFramesOutS16 = (drmp3_int16*)DRMP3_OFFSET_PTR(pBufferOut, sizeof(drmp3_int16) * totalFramesRead * pMP3->channels);
+ drmp3_int16* pFramesInS16 = (drmp3_int16*)DRMP3_OFFSET_PTR(&pMP3->pcmFrames[0], sizeof(drmp3_int16) * pMP3->pcmFramesConsumedInMP3Frame * pMP3->mp3FrameChannels);
+ DRMP3_COPY_MEMORY(pFramesOutS16, pFramesInS16, sizeof(drmp3_int16) * framesToConsume * pMP3->channels);
+ #endif
+ }
+
+ pMP3->currentPCMFrame += framesToConsume;
+ pMP3->pcmFramesConsumedInMP3Frame += framesToConsume;
+ pMP3->pcmFramesRemainingInMP3Frame -= framesToConsume;
+ totalFramesRead += framesToConsume;
+ framesToRead -= framesToConsume;
+
+ if (framesToRead == 0) {
+ break;
+ }
+
+ DRMP3_ASSERT(pMP3->pcmFramesRemainingInMP3Frame == 0);
+
+ /*
+ At this point we have exhausted our in-memory buffer so we need to re-fill. Note that the sample rate may have changed
+ at this point which means we'll also need to update our sample rate conversion pipeline.
+ */
+ if (drmp3_decode_next_frame(pMP3) == 0) {
+ break;
+ }
+ }
+
+ return totalFramesRead;
+}
+
+
+DRMP3_API drmp3_uint64 drmp3_read_pcm_frames_f32(drmp3* pMP3, drmp3_uint64 framesToRead, float* pBufferOut)
+{
if (pMP3 == NULL || pMP3->onRead == NULL) {
return 0;
}
- if (pBufferOut == NULL) {
- float temp[4096];
- while (framesToRead > 0) {
+#if defined(DR_MP3_FLOAT_OUTPUT)
+ /* Fast path. No conversion required. */
+ return drmp3_read_pcm_frames_raw(pMP3, framesToRead, pBufferOut);
+#else
+ /* Slow path. Convert from s16 to f32. */
+ {
+ drmp3_int16 pTempS16[8192];
+ drmp3_uint64 totalPCMFramesRead = 0;
+
+ while (totalPCMFramesRead < framesToRead) {
drmp3_uint64 framesJustRead;
- drmp3_uint64 framesToReadRightNow = sizeof(temp)/sizeof(temp[0]) / pMP3->channels;
- if (framesToReadRightNow > framesToRead) {
- framesToReadRightNow = framesToRead;
+ drmp3_uint64 framesRemaining = framesToRead - totalPCMFramesRead;
+ drmp3_uint64 framesToReadNow = DRMP3_COUNTOF(pTempS16) / pMP3->channels;
+ if (framesToReadNow > framesRemaining) {
+ framesToReadNow = framesRemaining;
}
- framesJustRead = drmp3_read_pcm_frames_f32(pMP3, framesToReadRightNow, temp);
+ framesJustRead = drmp3_read_pcm_frames_raw(pMP3, framesToReadNow, pTempS16);
if (framesJustRead == 0) {
break;
}
- framesToRead -= framesJustRead;
- totalFramesRead += framesJustRead;
+ drmp3_s16_to_f32((float*)DRMP3_OFFSET_PTR(pBufferOut, sizeof(float) * totalPCMFramesRead * pMP3->channels), pTempS16, framesJustRead * pMP3->channels);
+ totalPCMFramesRead += framesJustRead;
}
- } else {
- totalFramesRead = drmp3_src_read_frames_ex(&pMP3->src, framesToRead, pBufferOut, DRMP3_TRUE);
- pMP3->currentPCMFrame += totalFramesRead;
- }
- return totalFramesRead;
+ return totalPCMFramesRead;
+ }
+#endif
}
-drmp3_uint64 drmp3_read_pcm_frames_s16(drmp3* pMP3, drmp3_uint64 framesToRead, drmp3_int16* pBufferOut)
+DRMP3_API drmp3_uint64 drmp3_read_pcm_frames_s16(drmp3* pMP3, drmp3_uint64 framesToRead, drmp3_int16* pBufferOut)
{
- float tempF32[4096];
- drmp3_uint64 pcmFramesJustRead;
- drmp3_uint64 totalPCMFramesRead = 0;
-
if (pMP3 == NULL || pMP3->onRead == NULL) {
return 0;
}
- /* Naive implementation: read into a temp f32 buffer, then convert. */
- for (;;) {
- drmp3_uint64 pcmFramesToReadThisIteration = (framesToRead - totalPCMFramesRead);
- if (pcmFramesToReadThisIteration > drmp3_countof(tempF32)/pMP3->channels) {
- pcmFramesToReadThisIteration = drmp3_countof(tempF32)/pMP3->channels;
- }
-
- pcmFramesJustRead = drmp3_read_pcm_frames_f32(pMP3, pcmFramesToReadThisIteration, tempF32);
- if (pcmFramesJustRead == 0) {
- break;
- }
+#if !defined(DR_MP3_FLOAT_OUTPUT)
+ /* Fast path. No conversion required. */
+ return drmp3_read_pcm_frames_raw(pMP3, framesToRead, pBufferOut);
+#else
+ /* Slow path. Convert from f32 to s16. */
+ {
+ float pTempF32[4096];
+ drmp3_uint64 totalPCMFramesRead = 0;
- drmp3dec_f32_to_s16(tempF32, pBufferOut, (int)(pcmFramesJustRead * pMP3->channels)); /* <-- Safe cast since pcmFramesJustRead will be clamped based on the size of tempF32 which is always small. */
- pBufferOut += pcmFramesJustRead * pMP3->channels;
+ while (totalPCMFramesRead < framesToRead) {
+ drmp3_uint64 framesJustRead;
+ drmp3_uint64 framesRemaining = framesToRead - totalPCMFramesRead;
+ drmp3_uint64 framesToReadNow = DRMP3_COUNTOF(pTempF32) / pMP3->channels;
+ if (framesToReadNow > framesRemaining) {
+ framesToReadNow = framesRemaining;
+ }
- totalPCMFramesRead += pcmFramesJustRead;
+ framesJustRead = drmp3_read_pcm_frames_raw(pMP3, framesToReadNow, pTempF32);
+ if (framesJustRead == 0) {
+ break;
+ }
- if (pcmFramesJustRead < pcmFramesToReadThisIteration) {
- break;
+ drmp3_f32_to_s16((drmp3_int16*)DRMP3_OFFSET_PTR(pBufferOut, sizeof(drmp3_int16) * totalPCMFramesRead * pMP3->channels), pTempF32, framesJustRead * pMP3->channels);
+ totalPCMFramesRead += framesJustRead;
}
- }
- return totalPCMFramesRead;
+ return totalPCMFramesRead;
+ }
+#endif
}
-void drmp3_reset(drmp3* pMP3)
+static void drmp3_reset(drmp3* pMP3)
{
- drmp3_assert(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
pMP3->pcmFramesConsumedInMP3Frame = 0;
pMP3->pcmFramesRemainingInMP3Frame = 0;
pMP3->currentPCMFrame = 0;
pMP3->dataSize = 0;
pMP3->atEnd = DRMP3_FALSE;
- pMP3->src.bin[0] = 0;
- pMP3->src.bin[1] = 0;
- pMP3->src.bin[2] = 0;
- pMP3->src.bin[3] = 0;
- pMP3->src.cache.cachedFrameCount = 0;
- pMP3->src.cache.iNextFrame = 0;
- pMP3->src.algo.linear.alpha = 0;
- pMP3->src.algo.linear.isNextFramesLoaded = 0;
- pMP3->src.algo.linear.isPrevFramesLoaded = 0;
drmp3dec_init(&pMP3->decoder);
}
-drmp3_bool32 drmp3_seek_to_start_of_stream(drmp3* pMP3)
+static drmp3_bool32 drmp3_seek_to_start_of_stream(drmp3* pMP3)
{
- drmp3_assert(pMP3 != NULL);
- drmp3_assert(pMP3->onSeek != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3->onSeek != NULL);
/* Seek to the start of the stream to begin with. */
if (!drmp3__on_seek(pMP3, 0, drmp3_seek_origin_start)) {
@@ -3116,80 +3740,31 @@ drmp3_bool32 drmp3_seek_to_start_of_stream(drmp3* pMP3)
return DRMP3_TRUE;
}
-float drmp3_get_cached_pcm_frame_count_from_src(drmp3* pMP3)
-{
- return (pMP3->src.cache.cachedFrameCount - pMP3->src.cache.iNextFrame) + (float)pMP3->src.algo.linear.alpha;
-}
-float drmp3_get_pcm_frames_remaining_in_mp3_frame(drmp3* pMP3)
-{
- float factor = (float)pMP3->src.config.sampleRateOut / (float)pMP3->src.config.sampleRateIn;
- float frameCountPreSRC = drmp3_get_cached_pcm_frame_count_from_src(pMP3) + pMP3->pcmFramesRemainingInMP3Frame;
- return frameCountPreSRC * factor;
-}
-
-/*
-NOTE ON SEEKING
-===============
-The seeking code below is a complete mess and is broken for cases when the sample rate changes. The problem
-is with the resampling and the crappy resampler used by dr_mp3. What needs to happen is the following:
-
-1) The resampler needs to be replaced.
-2) The resampler has state which needs to be updated whenever an MP3 frame is decoded outside of
- drmp3_read_pcm_frames_f32(). The resampler needs an API to "flush" some imaginary input so that it's
- state is updated accordingly.
-*/
-drmp3_bool32 drmp3_seek_forward_by_pcm_frames__brute_force(drmp3* pMP3, drmp3_uint64 frameOffset)
+static drmp3_bool32 drmp3_seek_forward_by_pcm_frames__brute_force(drmp3* pMP3, drmp3_uint64 frameOffset)
{
drmp3_uint64 framesRead;
-#if 0
/*
- MP3 is a bit annoying when it comes to seeking because of the bit reservoir. It basically means that an MP3 frame can possibly
- depend on some of the data of prior frames. This means it's not as simple as seeking to the first byte of the MP3 frame that
- contains the sample because that MP3 frame will need the data from the previous MP3 frame (which we just seeked past!). To
- resolve this we seek past a number of MP3 frames up to a point, and then read-and-discard the remainder.
+ Just using a dumb read-and-discard for now. What would be nice is to parse only the header of the MP3 frame, and then skip over leading
+ frames without spending the time doing a full decode. I cannot see an easy way to do this in minimp3, however, so it may involve some
+ kind of manual processing.
*/
- drmp3_uint64 maxFramesToReadAndDiscard = (drmp3_uint64)(DRMP3_MAX_PCM_FRAMES_PER_MP3_FRAME * 3 * ((float)pMP3->src.config.sampleRateOut / (float)pMP3->src.config.sampleRateIn));
-
- /* Now get rid of leading whole frames. */
- while (frameOffset > maxFramesToReadAndDiscard) {
- float pcmFramesRemainingInCurrentMP3FrameF = drmp3_get_pcm_frames_remaining_in_mp3_frame(pMP3);
- drmp3_uint32 pcmFramesRemainingInCurrentMP3Frame = (drmp3_uint32)pcmFramesRemainingInCurrentMP3FrameF;
- if (frameOffset > pcmFramesRemainingInCurrentMP3Frame) {
- frameOffset -= pcmFramesRemainingInCurrentMP3Frame;
- pMP3->currentPCMFrame += pcmFramesRemainingInCurrentMP3Frame;
- pMP3->pcmFramesConsumedInMP3Frame += pMP3->pcmFramesRemainingInMP3Frame;
- pMP3->pcmFramesRemainingInMP3Frame = 0;
- } else {
- break;
- }
-
- drmp3_uint32 pcmFrameCount = drmp3_decode_next_frame_ex(pMP3, pMP3->pcmFrames, DRMP3_FALSE);
- if (pcmFrameCount == 0) {
- break;
- }
- }
-
- /* The last step is to read-and-discard any remaining PCM frames to make it sample-exact. */
+#if defined(DR_MP3_FLOAT_OUTPUT)
framesRead = drmp3_read_pcm_frames_f32(pMP3, frameOffset, NULL);
- if (framesRead != frameOffset) {
- return DRMP3_FALSE;
- }
#else
- /* Just using a dumb read-and-discard for now pending updates to the resampler. */
- framesRead = drmp3_read_pcm_frames_f32(pMP3, frameOffset, NULL);
+ framesRead = drmp3_read_pcm_frames_s16(pMP3, frameOffset, NULL);
+#endif
if (framesRead != frameOffset) {
return DRMP3_FALSE;
}
-#endif
return DRMP3_TRUE;
}
-drmp3_bool32 drmp3_seek_to_pcm_frame__brute_force(drmp3* pMP3, drmp3_uint64 frameIndex)
+static drmp3_bool32 drmp3_seek_to_pcm_frame__brute_force(drmp3* pMP3, drmp3_uint64 frameIndex)
{
- drmp3_assert(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
if (frameIndex == pMP3->currentPCMFrame) {
return DRMP3_TRUE;
@@ -3206,15 +3781,15 @@ drmp3_bool32 drmp3_seek_to_pcm_frame__brute_force(drmp3* pMP3, drmp3_uint64 fram
}
}
- drmp3_assert(frameIndex >= pMP3->currentPCMFrame);
+ DRMP3_ASSERT(frameIndex >= pMP3->currentPCMFrame);
return drmp3_seek_forward_by_pcm_frames__brute_force(pMP3, (frameIndex - pMP3->currentPCMFrame));
}
-drmp3_bool32 drmp3_find_closest_seek_point(drmp3* pMP3, drmp3_uint64 frameIndex, drmp3_uint32* pSeekPointIndex)
+static drmp3_bool32 drmp3_find_closest_seek_point(drmp3* pMP3, drmp3_uint64 frameIndex, drmp3_uint32* pSeekPointIndex)
{
drmp3_uint32 iSeekPoint;
- drmp3_assert(pSeekPointIndex != NULL);
+ DRMP3_ASSERT(pSeekPointIndex != NULL);
*pSeekPointIndex = 0;
@@ -3234,16 +3809,16 @@ drmp3_bool32 drmp3_find_closest_seek_point(drmp3* pMP3, drmp3_uint64 frameIndex,
return DRMP3_TRUE;
}
-drmp3_bool32 drmp3_seek_to_pcm_frame__seek_table(drmp3* pMP3, drmp3_uint64 frameIndex)
+static drmp3_bool32 drmp3_seek_to_pcm_frame__seek_table(drmp3* pMP3, drmp3_uint64 frameIndex)
{
drmp3_seek_point seekPoint;
drmp3_uint32 priorSeekPointIndex;
drmp3_uint16 iMP3Frame;
drmp3_uint64 leftoverFrames;
- drmp3_assert(pMP3 != NULL);
- drmp3_assert(pMP3->pSeekPoints != NULL);
- drmp3_assert(pMP3->seekPointCount > 0);
+ DRMP3_ASSERT(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3->pSeekPoints != NULL);
+ DRMP3_ASSERT(pMP3->seekPointCount > 0);
/* If there is no prior seekpoint it means the target PCM frame comes before the first seek point. Just assume a seekpoint at the start of the file in this case. */
if (drmp3_find_closest_seek_point(pMP3, frameIndex, &priorSeekPointIndex)) {
@@ -3265,7 +3840,7 @@ drmp3_bool32 drmp3_seek_to_pcm_frame__seek_table(drmp3* pMP3, drmp3_uint64 frame
/* Whole MP3 frames need to be discarded first. */
for (iMP3Frame = 0; iMP3Frame < seekPoint.mp3FramesToDiscard; ++iMP3Frame) {
- drmp3_uint32 pcmFramesReadPreSRC;
+ drmp3_uint32 pcmFramesRead;
drmp3d_sample_t* pPCMFrames;
/* Pass in non-null for the last frame because we want to ensure the sample rate converter is preloaded correctly. */
@@ -3274,9 +3849,9 @@ drmp3_bool32 drmp3_seek_to_pcm_frame__seek_table(drmp3* pMP3, drmp3_uint64 frame
pPCMFrames = (drmp3d_sample_t*)pMP3->pcmFrames;
}
- /* We first need to decode the next frame, and then we need to flush the resampler. */
- pcmFramesReadPreSRC = drmp3_decode_next_frame_ex(pMP3, pPCMFrames, DRMP3_TRUE);
- if (pcmFramesReadPreSRC == 0) {
+ /* We first need to decode the next frame. */
+ pcmFramesRead = drmp3_decode_next_frame_ex(pMP3, pPCMFrames);
+ if (pcmFramesRead == 0) {
return DRMP3_FALSE;
}
}
@@ -3285,17 +3860,6 @@ drmp3_bool32 drmp3_seek_to_pcm_frame__seek_table(drmp3* pMP3, drmp3_uint64 frame
pMP3->currentPCMFrame = seekPoint.pcmFrameIndex - seekPoint.pcmFramesToDiscard;
/*
- Update resampler. This is wrong. Need to instead update it on a per MP3 frame basis. Also broken for cases when
- the sample rate is being reduced in my testing. Should work fine when the input and output sample rate is the same
- or a clean multiple.
- */
- pMP3->src.algo.linear.alpha = (drmp3_int64)pMP3->currentPCMFrame * ((double)pMP3->src.config.sampleRateIn / pMP3->src.config.sampleRateOut); /* <-- Cast to int64 is required for VC6. */
- pMP3->src.algo.linear.alpha = pMP3->src.algo.linear.alpha - (drmp3_uint32)(pMP3->src.algo.linear.alpha);
- if (pMP3->src.algo.linear.alpha > 0) {
- pMP3->src.algo.linear.isPrevFramesLoaded = 1;
- }
-
- /*
Now at this point we can follow the same process as the brute force technique where we just skip over unnecessary MP3 frames and then
read-and-discard at least 2 whole MP3 frames.
*/
@@ -3303,7 +3867,7 @@ drmp3_bool32 drmp3_seek_to_pcm_frame__seek_table(drmp3* pMP3, drmp3_uint64 frame
return drmp3_seek_forward_by_pcm_frames__brute_force(pMP3, leftoverFrames);
}
-drmp3_bool32 drmp3_seek_to_pcm_frame(drmp3* pMP3, drmp3_uint64 frameIndex)
+DRMP3_API drmp3_bool32 drmp3_seek_to_pcm_frame(drmp3* pMP3, drmp3_uint64 frameIndex)
{
if (pMP3 == NULL || pMP3->onSeek == NULL) {
return DRMP3_FALSE;
@@ -3321,12 +3885,11 @@ drmp3_bool32 drmp3_seek_to_pcm_frame(drmp3* pMP3, drmp3_uint64 frameIndex)
}
}
-drmp3_bool32 drmp3_get_mp3_and_pcm_frame_count(drmp3* pMP3, drmp3_uint64* pMP3FrameCount, drmp3_uint64* pPCMFrameCount)
+DRMP3_API drmp3_bool32 drmp3_get_mp3_and_pcm_frame_count(drmp3* pMP3, drmp3_uint64* pMP3FrameCount, drmp3_uint64* pPCMFrameCount)
{
drmp3_uint64 currentPCMFrame;
drmp3_uint64 totalPCMFrameCount;
drmp3_uint64 totalMP3FrameCount;
- float totalPCMFrameCountFractionalPart;
if (pMP3 == NULL) {
return DRMP3_FALSE;
@@ -3352,25 +3915,15 @@ drmp3_bool32 drmp3_get_mp3_and_pcm_frame_count(drmp3* pMP3, drmp3_uint64* pMP3Fr
totalPCMFrameCount = 0;
totalMP3FrameCount = 0;
- totalPCMFrameCountFractionalPart = 0; /* <-- With resampling there will be a fractional part to each MP3 frame that we need to accumulate. */
for (;;) {
- drmp3_uint32 pcmFramesInCurrentMP3FrameIn;
- float srcRatio;
- float pcmFramesInCurrentMP3FrameOutF;
- drmp3_uint32 pcmFramesInCurrentMP3FrameOut;
+ drmp3_uint32 pcmFramesInCurrentMP3Frame;
- pcmFramesInCurrentMP3FrameIn = drmp3_decode_next_frame_ex(pMP3, NULL, DRMP3_FALSE);
- if (pcmFramesInCurrentMP3FrameIn == 0) {
+ pcmFramesInCurrentMP3Frame = drmp3_decode_next_frame_ex(pMP3, NULL);
+ if (pcmFramesInCurrentMP3Frame == 0) {
break;
}
- srcRatio = (float)pMP3->mp3FrameSampleRate / (float)pMP3->sampleRate;
- drmp3_assert(srcRatio > 0);
-
- pcmFramesInCurrentMP3FrameOutF = totalPCMFrameCountFractionalPart + (pcmFramesInCurrentMP3FrameIn / srcRatio);
- pcmFramesInCurrentMP3FrameOut = (drmp3_uint32)pcmFramesInCurrentMP3FrameOutF;
- totalPCMFrameCountFractionalPart = pcmFramesInCurrentMP3FrameOutF - pcmFramesInCurrentMP3FrameOut;
- totalPCMFrameCount += pcmFramesInCurrentMP3FrameOut;
+ totalPCMFrameCount += pcmFramesInCurrentMP3Frame;
totalMP3FrameCount += 1;
}
@@ -3393,7 +3946,7 @@ drmp3_bool32 drmp3_get_mp3_and_pcm_frame_count(drmp3* pMP3, drmp3_uint64* pMP3Fr
return DRMP3_TRUE;
}
-drmp3_uint64 drmp3_get_pcm_frame_count(drmp3* pMP3)
+DRMP3_API drmp3_uint64 drmp3_get_pcm_frame_count(drmp3* pMP3)
{
drmp3_uint64 totalPCMFrameCount;
if (!drmp3_get_mp3_and_pcm_frame_count(pMP3, NULL, &totalPCMFrameCount)) {
@@ -3403,7 +3956,7 @@ drmp3_uint64 drmp3_get_pcm_frame_count(drmp3* pMP3)
return totalPCMFrameCount;
}
-drmp3_uint64 drmp3_get_mp3_frame_count(drmp3* pMP3)
+DRMP3_API drmp3_uint64 drmp3_get_mp3_frame_count(drmp3* pMP3)
{
drmp3_uint64 totalMP3FrameCount;
if (!drmp3_get_mp3_and_pcm_frame_count(pMP3, &totalMP3FrameCount, NULL)) {
@@ -3413,14 +3966,14 @@ drmp3_uint64 drmp3_get_mp3_frame_count(drmp3* pMP3)
return totalMP3FrameCount;
}
-void drmp3__accumulate_running_pcm_frame_count(drmp3* pMP3, drmp3_uint32 pcmFrameCountIn, drmp3_uint64* pRunningPCMFrameCount, float* pRunningPCMFrameCountFractionalPart)
+static void drmp3__accumulate_running_pcm_frame_count(drmp3* pMP3, drmp3_uint32 pcmFrameCountIn, drmp3_uint64* pRunningPCMFrameCount, float* pRunningPCMFrameCountFractionalPart)
{
float srcRatio;
float pcmFrameCountOutF;
drmp3_uint32 pcmFrameCountOut;
srcRatio = (float)pMP3->mp3FrameSampleRate / (float)pMP3->sampleRate;
- drmp3_assert(srcRatio > 0);
+ DRMP3_ASSERT(srcRatio > 0);
pcmFrameCountOutF = *pRunningPCMFrameCountFractionalPart + (pcmFrameCountIn / srcRatio);
pcmFrameCountOut = (drmp3_uint32)pcmFrameCountOutF;
@@ -3434,7 +3987,7 @@ typedef struct
drmp3_uint64 pcmFrameIndex; /* <-- After sample rate conversion. */
} drmp3__seeking_mp3_frame_info;
-drmp3_bool32 drmp3_calculate_seek_points(drmp3* pMP3, drmp3_uint32* pSeekPointCount, drmp3_seek_point* pSeekPoints)
+DRMP3_API drmp3_bool32 drmp3_calculate_seek_points(drmp3* pMP3, drmp3_uint32* pSeekPointCount, drmp3_seek_point* pSeekPoints)
{
drmp3_uint32 seekPointCount;
drmp3_uint64 currentPCMFrame;
@@ -3498,12 +4051,12 @@ drmp3_bool32 drmp3_calculate_seek_points(drmp3* pMP3, drmp3_uint32* pSeekPointCo
drmp3_uint32 pcmFramesInCurrentMP3FrameIn;
/* The byte position of the next frame will be the stream's cursor position, minus whatever is sitting in the buffer. */
- drmp3_assert(pMP3->streamCursor >= pMP3->dataSize);
+ DRMP3_ASSERT(pMP3->streamCursor >= pMP3->dataSize);
mp3FrameInfo[iMP3Frame].bytePos = pMP3->streamCursor - pMP3->dataSize;
mp3FrameInfo[iMP3Frame].pcmFrameIndex = runningPCMFrameCount;
/* We need to get information about this frame so we can know how many samples it contained. */
- pcmFramesInCurrentMP3FrameIn = drmp3_decode_next_frame_ex(pMP3, NULL, DRMP3_FALSE);
+ pcmFramesInCurrentMP3FrameIn = drmp3_decode_next_frame_ex(pMP3, NULL);
if (pcmFramesInCurrentMP3FrameIn == 0) {
return DRMP3_FALSE; /* This should never happen. */
}
@@ -3535,19 +4088,19 @@ drmp3_bool32 drmp3_calculate_seek_points(drmp3* pMP3, drmp3_uint32* pSeekPointCo
The next seek point is not in the current MP3 frame, so continue on to the next one. The first thing to do is cycle the cached
MP3 frame info.
*/
- for (i = 0; i < drmp3_countof(mp3FrameInfo)-1; ++i) {
+ for (i = 0; i < DRMP3_COUNTOF(mp3FrameInfo)-1; ++i) {
mp3FrameInfo[i] = mp3FrameInfo[i+1];
}
/* Cache previous MP3 frame info. */
- mp3FrameInfo[drmp3_countof(mp3FrameInfo)-1].bytePos = pMP3->streamCursor - pMP3->dataSize;
- mp3FrameInfo[drmp3_countof(mp3FrameInfo)-1].pcmFrameIndex = runningPCMFrameCount;
+ mp3FrameInfo[DRMP3_COUNTOF(mp3FrameInfo)-1].bytePos = pMP3->streamCursor - pMP3->dataSize;
+ mp3FrameInfo[DRMP3_COUNTOF(mp3FrameInfo)-1].pcmFrameIndex = runningPCMFrameCount;
/*
Go to the next MP3 frame. This shouldn't ever fail, but just in case it does we just set the seek point and break. If it happens, it
should only ever do it for the last seek point.
*/
- pcmFramesInCurrentMP3FrameIn = drmp3_decode_next_frame_ex(pMP3, NULL, DRMP3_TRUE);
+ pcmFramesInCurrentMP3FrameIn = drmp3_decode_next_frame_ex(pMP3, NULL);
if (pcmFramesInCurrentMP3FrameIn == 0) {
pSeekPoints[iSeekPoint].seekPosInBytes = mp3FrameInfo[0].bytePos;
pSeekPoints[iSeekPoint].pcmFrameIndex = nextTargetPCMFrame;
@@ -3574,7 +4127,7 @@ drmp3_bool32 drmp3_calculate_seek_points(drmp3* pMP3, drmp3_uint32* pSeekPointCo
return DRMP3_TRUE;
}
-drmp3_bool32 drmp3_bind_seek_table(drmp3* pMP3, drmp3_uint32 seekPointCount, drmp3_seek_point* pSeekPoints)
+DRMP3_API drmp3_bool32 drmp3_bind_seek_table(drmp3* pMP3, drmp3_uint32 seekPointCount, drmp3_seek_point* pSeekPoints)
{
if (pMP3 == NULL) {
return DRMP3_FALSE;
@@ -3594,17 +4147,17 @@ drmp3_bool32 drmp3_bind_seek_table(drmp3* pMP3, drmp3_uint32 seekPointCount, drm
}
-float* drmp3__full_read_and_close_f32(drmp3* pMP3, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
+static float* drmp3__full_read_and_close_f32(drmp3* pMP3, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
{
drmp3_uint64 totalFramesRead = 0;
drmp3_uint64 framesCapacity = 0;
float* pFrames = NULL;
float temp[4096];
- drmp3_assert(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
for (;;) {
- drmp3_uint64 framesToReadRightNow = drmp3_countof(temp) / pMP3->channels;
+ drmp3_uint64 framesToReadRightNow = DRMP3_COUNTOF(temp) / pMP3->channels;
drmp3_uint64 framesJustRead = drmp3_read_pcm_frames_f32(pMP3, framesToReadRightNow, temp);
if (framesJustRead == 0) {
break;
@@ -3612,29 +4165,33 @@ float* drmp3__full_read_and_close_f32(drmp3* pMP3, drmp3_config* pConfig, drmp3_
/* Reallocate the output buffer if there's not enough room. */
if (framesCapacity < totalFramesRead + framesJustRead) {
+ drmp3_uint64 oldFramesBufferSize;
drmp3_uint64 newFramesBufferSize;
+ drmp3_uint64 newFramesCap;
float* pNewFrames;
- framesCapacity *= 2;
- if (framesCapacity < totalFramesRead + framesJustRead) {
- framesCapacity = totalFramesRead + framesJustRead;
+ newFramesCap = framesCapacity * 2;
+ if (newFramesCap < totalFramesRead + framesJustRead) {
+ newFramesCap = totalFramesRead + framesJustRead;
}
- newFramesBufferSize = framesCapacity*pMP3->channels*sizeof(float);
+ oldFramesBufferSize = framesCapacity * pMP3->channels * sizeof(float);
+ newFramesBufferSize = newFramesCap * pMP3->channels * sizeof(float);
if (newFramesBufferSize > DRMP3_SIZE_MAX) {
break;
}
- pNewFrames = (float*)drmp3_realloc(pFrames, (size_t)newFramesBufferSize);
+ pNewFrames = (float*)drmp3__realloc_from_callbacks(pFrames, (size_t)newFramesBufferSize, (size_t)oldFramesBufferSize, &pMP3->allocationCallbacks);
if (pNewFrames == NULL) {
- drmp3_free(pFrames);
+ drmp3__free_from_callbacks(pFrames, &pMP3->allocationCallbacks);
break;
}
pFrames = pNewFrames;
+ framesCapacity = newFramesCap;
}
- drmp3_copy_memory(pFrames + totalFramesRead*pMP3->channels, temp, (size_t)(framesJustRead*pMP3->channels*sizeof(float)));
+ DRMP3_COPY_MEMORY(pFrames + totalFramesRead*pMP3->channels, temp, (size_t)(framesJustRead*pMP3->channels*sizeof(float)));
totalFramesRead += framesJustRead;
/* If the number of frames we asked for is less that what we actually read it means we've reached the end. */
@@ -3644,8 +4201,8 @@ float* drmp3__full_read_and_close_f32(drmp3* pMP3, drmp3_config* pConfig, drmp3_
}
if (pConfig != NULL) {
- pConfig->outputChannels = pMP3->channels;
- pConfig->outputSampleRate = pMP3->sampleRate;
+ pConfig->channels = pMP3->channels;
+ pConfig->sampleRate = pMP3->sampleRate;
}
drmp3_uninit(pMP3);
@@ -3657,17 +4214,17 @@ float* drmp3__full_read_and_close_f32(drmp3* pMP3, drmp3_config* pConfig, drmp3_
return pFrames;
}
-drmp3_int16* drmp3__full_read_and_close_s16(drmp3* pMP3, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
+static drmp3_int16* drmp3__full_read_and_close_s16(drmp3* pMP3, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
{
drmp3_uint64 totalFramesRead = 0;
drmp3_uint64 framesCapacity = 0;
drmp3_int16* pFrames = NULL;
drmp3_int16 temp[4096];
- drmp3_assert(pMP3 != NULL);
+ DRMP3_ASSERT(pMP3 != NULL);
for (;;) {
- drmp3_uint64 framesToReadRightNow = drmp3_countof(temp) / pMP3->channels;
+ drmp3_uint64 framesToReadRightNow = DRMP3_COUNTOF(temp) / pMP3->channels;
drmp3_uint64 framesJustRead = drmp3_read_pcm_frames_s16(pMP3, framesToReadRightNow, temp);
if (framesJustRead == 0) {
break;
@@ -3676,28 +4233,32 @@ drmp3_int16* drmp3__full_read_and_close_s16(drmp3* pMP3, drmp3_config* pConfig,
/* Reallocate the output buffer if there's not enough room. */
if (framesCapacity < totalFramesRead + framesJustRead) {
drmp3_uint64 newFramesBufferSize;
+ drmp3_uint64 oldFramesBufferSize;
+ drmp3_uint64 newFramesCap;
drmp3_int16* pNewFrames;
- framesCapacity *= 2;
- if (framesCapacity < totalFramesRead + framesJustRead) {
- framesCapacity = totalFramesRead + framesJustRead;
+ newFramesCap = framesCapacity * 2;
+ if (newFramesCap < totalFramesRead + framesJustRead) {
+ newFramesCap = totalFramesRead + framesJustRead;
}
- newFramesBufferSize = framesCapacity*pMP3->channels*sizeof(drmp3_int16);
+ oldFramesBufferSize = framesCapacity * pMP3->channels * sizeof(drmp3_int16);
+ newFramesBufferSize = newFramesCap * pMP3->channels * sizeof(drmp3_int16);
if (newFramesBufferSize > DRMP3_SIZE_MAX) {
break;
}
- pNewFrames = (drmp3_int16*)drmp3_realloc(pFrames, (size_t)newFramesBufferSize);
+ pNewFrames = (drmp3_int16*)drmp3__realloc_from_callbacks(pFrames, (size_t)newFramesBufferSize, (size_t)oldFramesBufferSize, &pMP3->allocationCallbacks);
if (pNewFrames == NULL) {
- drmp3_free(pFrames);
+ drmp3__free_from_callbacks(pFrames, &pMP3->allocationCallbacks);
break;
}
pFrames = pNewFrames;
+ framesCapacity = newFramesCap;
}
- drmp3_copy_memory(pFrames + totalFramesRead*pMP3->channels, temp, (size_t)(framesJustRead*pMP3->channels*sizeof(drmp3_int16)));
+ DRMP3_COPY_MEMORY(pFrames + totalFramesRead*pMP3->channels, temp, (size_t)(framesJustRead*pMP3->channels*sizeof(drmp3_int16)));
totalFramesRead += framesJustRead;
/* If the number of frames we asked for is less that what we actually read it means we've reached the end. */
@@ -3707,8 +4268,8 @@ drmp3_int16* drmp3__full_read_and_close_s16(drmp3* pMP3, drmp3_config* pConfig,
}
if (pConfig != NULL) {
- pConfig->outputChannels = pMP3->channels;
- pConfig->outputSampleRate = pMP3->sampleRate;
+ pConfig->channels = pMP3->channels;
+ pConfig->sampleRate = pMP3->sampleRate;
}
drmp3_uninit(pMP3);
@@ -3721,20 +4282,20 @@ drmp3_int16* drmp3__full_read_and_close_s16(drmp3* pMP3, drmp3_config* pConfig,
}
-float* drmp3_open_and_read_f32(drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
+DRMP3_API float* drmp3_open_and_read_pcm_frames_f32(drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
drmp3 mp3;
- if (!drmp3_init(&mp3, onRead, onSeek, pUserData, pConfig)) {
+ if (!drmp3_init(&mp3, onRead, onSeek, pUserData, pAllocationCallbacks)) {
return NULL;
}
return drmp3__full_read_and_close_f32(&mp3, pConfig, pTotalFrameCount);
}
-drmp3_int16* drmp3_open_and_read_s16(drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
+DRMP3_API drmp3_int16* drmp3_open_and_read_pcm_frames_s16(drmp3_read_proc onRead, drmp3_seek_proc onSeek, void* pUserData, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
drmp3 mp3;
- if (!drmp3_init(&mp3, onRead, onSeek, pUserData, pConfig)) {
+ if (!drmp3_init(&mp3, onRead, onSeek, pUserData, pAllocationCallbacks)) {
return NULL;
}
@@ -3742,20 +4303,20 @@ drmp3_int16* drmp3_open_and_read_s16(drmp3_read_proc onRead, drmp3_seek_proc onS
}
-float* drmp3_open_memory_and_read_f32(const void* pData, size_t dataSize, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
+DRMP3_API float* drmp3_open_memory_and_read_pcm_frames_f32(const void* pData, size_t dataSize, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
drmp3 mp3;
- if (!drmp3_init_memory(&mp3, pData, dataSize, pConfig)) {
+ if (!drmp3_init_memory(&mp3, pData, dataSize, pAllocationCallbacks)) {
return NULL;
}
return drmp3__full_read_and_close_f32(&mp3, pConfig, pTotalFrameCount);
}
-drmp3_int16* drmp3_open_memory_and_read_s16(const void* pData, size_t dataSize, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
+DRMP3_API drmp3_int16* drmp3_open_memory_and_read_pcm_frames_s16(const void* pData, size_t dataSize, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
drmp3 mp3;
- if (!drmp3_init_memory(&mp3, pData, dataSize, pConfig)) {
+ if (!drmp3_init_memory(&mp3, pData, dataSize, pAllocationCallbacks)) {
return NULL;
}
@@ -3764,20 +4325,20 @@ drmp3_int16* drmp3_open_memory_and_read_s16(const void* pData, size_t dataSize,
#ifndef DR_MP3_NO_STDIO
-float* drmp3_open_file_and_read_f32(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
+DRMP3_API float* drmp3_open_file_and_read_pcm_frames_f32(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
drmp3 mp3;
- if (!drmp3_init_file(&mp3, filePath, pConfig)) {
+ if (!drmp3_init_file(&mp3, filePath, pAllocationCallbacks)) {
return NULL;
}
return drmp3__full_read_and_close_f32(&mp3, pConfig, pTotalFrameCount);
}
-drmp3_int16* drmp3_open_file_and_read_s16(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount)
+DRMP3_API drmp3_int16* drmp3_open_file_and_read_pcm_frames_s16(const char* filePath, drmp3_config* pConfig, drmp3_uint64* pTotalFrameCount, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
drmp3 mp3;
- if (!drmp3_init_file(&mp3, filePath, pConfig)) {
+ if (!drmp3_init_file(&mp3, filePath, pAllocationCallbacks)) {
return NULL;
}
@@ -3785,12 +4346,26 @@ drmp3_int16* drmp3_open_file_and_read_s16(const char* filePath, drmp3_config* pC
}
#endif
-void drmp3_free(void* p)
+DRMP3_API void* drmp3_malloc(size_t sz, const drmp3_allocation_callbacks* pAllocationCallbacks)
{
- DRMP3_FREE(p);
+ if (pAllocationCallbacks != NULL) {
+ return drmp3__malloc_from_callbacks(sz, pAllocationCallbacks);
+ } else {
+ return drmp3__malloc_default(sz, NULL);
+ }
}
-#endif /*DR_MP3_IMPLEMENTATION*/
+DRMP3_API void drmp3_free(void* p, const drmp3_allocation_callbacks* pAllocationCallbacks)
+{
+ if (pAllocationCallbacks != NULL) {
+ drmp3__free_from_callbacks(p, pAllocationCallbacks);
+ } else {
+ drmp3__free_default(p, NULL);
+ }
+}
+
+#endif /* dr_mp3_c */
+#endif /*DR_MP3_IMPLEMENTATION*/
/*
DIFFERENCES BETWEEN minimp3 AND dr_mp3
@@ -3808,8 +4383,206 @@ DIFFERENCES BETWEEN minimp3 AND dr_mp3
*/
/*
+RELEASE NOTES - v0.5.0
+=======================
+Version 0.5.0 has breaking API changes.
+
+Improved Client-Defined Memory Allocation
+-----------------------------------------
+The main change with this release is the addition of a more flexible way of implementing custom memory allocation routines. The
+existing system of DRMP3_MALLOC, DRMP3_REALLOC and DRMP3_FREE are still in place and will be used by default when no custom
+allocation callbacks are specified.
+
+To use the new system, you pass in a pointer to a drmp3_allocation_callbacks object to drmp3_init() and family, like this:
+
+ void* my_malloc(size_t sz, void* pUserData)
+ {
+ return malloc(sz);
+ }
+ void* my_realloc(void* p, size_t sz, void* pUserData)
+ {
+ return realloc(p, sz);
+ }
+ void my_free(void* p, void* pUserData)
+ {
+ free(p);
+ }
+
+ ...
+
+ drmp3_allocation_callbacks allocationCallbacks;
+ allocationCallbacks.pUserData = &myData;
+ allocationCallbacks.onMalloc = my_malloc;
+ allocationCallbacks.onRealloc = my_realloc;
+ allocationCallbacks.onFree = my_free;
+ drmp3_init_file(&mp3, "my_file.mp3", NULL, &allocationCallbacks);
+
+The advantage of this new system is that it allows you to specify user data which will be passed in to the allocation routines.
+
+Passing in null for the allocation callbacks object will cause dr_mp3 to use defaults which is the same as DRMP3_MALLOC,
+DRMP3_REALLOC and DRMP3_FREE and the equivalent of how it worked in previous versions.
+
+Every API that opens a drmp3 object now takes this extra parameter. These include the following:
+
+ drmp3_init()
+ drmp3_init_file()
+ drmp3_init_memory()
+ drmp3_open_and_read_pcm_frames_f32()
+ drmp3_open_and_read_pcm_frames_s16()
+ drmp3_open_memory_and_read_pcm_frames_f32()
+ drmp3_open_memory_and_read_pcm_frames_s16()
+ drmp3_open_file_and_read_pcm_frames_f32()
+ drmp3_open_file_and_read_pcm_frames_s16()
+
+Renamed APIs
+------------
+The following APIs have been renamed for consistency with other dr_* libraries and to make it clear that they return PCM frame
+counts rather than sample counts.
+
+ drmp3_open_and_read_f32() -> drmp3_open_and_read_pcm_frames_f32()
+ drmp3_open_and_read_s16() -> drmp3_open_and_read_pcm_frames_s16()
+ drmp3_open_memory_and_read_f32() -> drmp3_open_memory_and_read_pcm_frames_f32()
+ drmp3_open_memory_and_read_s16() -> drmp3_open_memory_and_read_pcm_frames_s16()
+ drmp3_open_file_and_read_f32() -> drmp3_open_file_and_read_pcm_frames_f32()
+ drmp3_open_file_and_read_s16() -> drmp3_open_file_and_read_pcm_frames_s16()
+*/
+
+/*
REVISION HISTORY
================
+v0.6.27 - 2021-02-21
+ - Fix a warning due to referencing _MSC_VER when it is undefined.
+
+v0.6.26 - 2021-01-31
+ - Bring up to date with minimp3.
+
+v0.6.25 - 2020-12-26
+ - Remove DRMP3_DEFAULT_CHANNELS and DRMP3_DEFAULT_SAMPLE_RATE which are leftovers from some removed APIs.
+
+v0.6.24 - 2020-12-07
+ - Fix a typo in version date for 0.6.23.
+
+v0.6.23 - 2020-12-03
+ - Fix an error where a file can be closed twice when initialization of the decoder fails.
+
+v0.6.22 - 2020-12-02
+ - Fix an error where it's possible for a file handle to be left open when initialization of the decoder fails.
+
+v0.6.21 - 2020-11-28
+ - Bring up to date with minimp3.
+
+v0.6.20 - 2020-11-21
+ - Fix compilation with OpenWatcom.
+
+v0.6.19 - 2020-11-13
+ - Minor code clean up.
+
+v0.6.18 - 2020-11-01
+ - Improve compiler support for older versions of GCC.
+
+v0.6.17 - 2020-09-28
+ - Bring up to date with minimp3.
+
+v0.6.16 - 2020-08-02
+ - Simplify sized types.
+
+v0.6.15 - 2020-07-25
+ - Fix a compilation warning.
+
+v0.6.14 - 2020-07-23
+ - Fix undefined behaviour with memmove().
+
+v0.6.13 - 2020-07-06
+ - Fix a bug when converting from s16 to f32 in drmp3_read_pcm_frames_f32().
+
+v0.6.12 - 2020-06-23
+ - Add include guard for the implementation section.
+
+v0.6.11 - 2020-05-26
+ - Fix use of uninitialized variable error.
+
+v0.6.10 - 2020-05-16
+ - Add compile-time and run-time version querying.
+ - DRMP3_VERSION_MINOR
+ - DRMP3_VERSION_MAJOR
+ - DRMP3_VERSION_REVISION
+ - DRMP3_VERSION_STRING
+ - drmp3_version()
+ - drmp3_version_string()
+
+v0.6.9 - 2020-04-30
+ - Change the `pcm` parameter of drmp3dec_decode_frame() to a `const drmp3_uint8*` for consistency with internal APIs.
+
+v0.6.8 - 2020-04-26
+ - Optimizations to decoding when initializing from memory.
+
+v0.6.7 - 2020-04-25
+ - Fix a compilation error with DR_MP3_NO_STDIO
+ - Optimization to decoding by reducing some data movement.
+
+v0.6.6 - 2020-04-23
+ - Fix a minor bug with the running PCM frame counter.
+
+v0.6.5 - 2020-04-19
+ - Fix compilation error on ARM builds.
+
+v0.6.4 - 2020-04-19
+ - Bring up to date with changes to minimp3.
+
+v0.6.3 - 2020-04-13
+ - Fix some pedantic warnings.
+
+v0.6.2 - 2020-04-10
+ - Fix a crash in drmp3_open_*_and_read_pcm_frames_*() if the output config object is NULL.
+
+v0.6.1 - 2020-04-05
+ - Fix warnings.
+
+v0.6.0 - 2020-04-04
+ - API CHANGE: Remove the pConfig parameter from the following APIs:
+ - drmp3_init()
+ - drmp3_init_memory()
+ - drmp3_init_file()
+ - Add drmp3_init_file_w() for opening a file from a wchar_t encoded path.
+
+v0.5.6 - 2020-02-12
+ - Bring up to date with minimp3.
+
+v0.5.5 - 2020-01-29
+ - Fix a memory allocation bug in high level s16 decoding APIs.
+
+v0.5.4 - 2019-12-02
+ - Fix a possible null pointer dereference when using custom memory allocators for realloc().
+
+v0.5.3 - 2019-11-14
+ - Fix typos in documentation.
+
+v0.5.2 - 2019-11-02
+ - Bring up to date with minimp3.
+
+v0.5.1 - 2019-10-08
+ - Fix a warning with GCC.
+
+v0.5.0 - 2019-10-07
+ - API CHANGE: Add support for user defined memory allocation routines. This system allows the program to specify their own memory allocation
+ routines with a user data pointer for client-specific contextual data. This adds an extra parameter to the end of the following APIs:
+ - drmp3_init()
+ - drmp3_init_file()
+ - drmp3_init_memory()
+ - drmp3_open_and_read_pcm_frames_f32()
+ - drmp3_open_and_read_pcm_frames_s16()
+ - drmp3_open_memory_and_read_pcm_frames_f32()
+ - drmp3_open_memory_and_read_pcm_frames_s16()
+ - drmp3_open_file_and_read_pcm_frames_f32()
+ - drmp3_open_file_and_read_pcm_frames_s16()
+ - API CHANGE: Renamed the following APIs:
+ - drmp3_open_and_read_f32() -> drmp3_open_and_read_pcm_frames_f32()
+ - drmp3_open_and_read_s16() -> drmp3_open_and_read_pcm_frames_s16()
+ - drmp3_open_memory_and_read_f32() -> drmp3_open_memory_and_read_pcm_frames_f32()
+ - drmp3_open_memory_and_read_s16() -> drmp3_open_memory_and_read_pcm_frames_s16()
+ - drmp3_open_file_and_read_f32() -> drmp3_open_file_and_read_pcm_frames_f32()
+ - drmp3_open_file_and_read_s16() -> drmp3_open_file_and_read_pcm_frames_s16()
+
v0.4.7 - 2019-07-28
- Fix a compiler error.
@@ -3823,14 +4596,14 @@ v0.4.4 - 2019-05-06
- Fixes to the VC6 build.
v0.4.3 - 2019-05-05
- - Use the channel count and/or sample rate of the first MP3 frame instead of DR_MP3_DEFAULT_CHANNELS and
- DR_MP3_DEFAULT_SAMPLE_RATE when they are set to 0. To use the old behaviour, just set the relevant property to
- DR_MP3_DEFAULT_CHANNELS or DR_MP3_DEFAULT_SAMPLE_RATE.
+ - Use the channel count and/or sample rate of the first MP3 frame instead of DRMP3_DEFAULT_CHANNELS and
+ DRMP3_DEFAULT_SAMPLE_RATE when they are set to 0. To use the old behaviour, just set the relevant property to
+ DRMP3_DEFAULT_CHANNELS or DRMP3_DEFAULT_SAMPLE_RATE.
- Add s16 reading APIs
- drmp3_read_pcm_frames_s16
- - drmp3_open_memory_and_read_s16
- - drmp3_open_and_read_s16
- - drmp3_open_file_and_read_s16
+ - drmp3_open_memory_and_read_pcm_frames_s16
+ - drmp3_open_and_read_pcm_frames_s16
+ - drmp3_open_file_and_read_pcm_frames_s16
- Add drmp3_get_mp3_and_pcm_frame_count() to the public header section.
- Add support for C89.
- Change license to choice of public domain or MIT-0.
@@ -3845,9 +4618,9 @@ v0.4.0 - 2018-12-16
- API CHANGE: Rename some APIs:
- drmp3_read_f32 -> to drmp3_read_pcm_frames_f32
- drmp3_seek_to_frame -> drmp3_seek_to_pcm_frame
- - drmp3_open_and_decode_f32 -> drmp3_open_and_read_f32
- - drmp3_open_and_decode_memory_f32 -> drmp3_open_memory_and_read_f32
- - drmp3_open_and_decode_file_f32 -> drmp3_open_file_and_read_f32
+ - drmp3_open_and_decode_f32 -> drmp3_open_and_read_pcm_frames_f32
+ - drmp3_open_and_decode_memory_f32 -> drmp3_open_memory_and_read_pcm_frames_f32
+ - drmp3_open_and_decode_file_f32 -> drmp3_open_file_and_read_pcm_frames_f32
- Add drmp3_get_pcm_frame_count().
- Add drmp3_get_mp3_frame_count().
- Improve seeking performance.
@@ -3951,7 +4724,7 @@ For more information, please refer to <http://unlicense.org/>
===============================================================================
ALTERNATIVE 2 - MIT No Attribution
===============================================================================
-Copyright 2018 David Reid
+Copyright 2020 David Reid
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in