mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-24 01:04:02 +02:00
Update dr_flac and dr_mp3.
This commit is contained in:
+19
-6
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
|
FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
|
||||||
dr_flac - v0.12.24 - 2020-11-29
|
dr_flac - v0.12.25 - 2020-12-26
|
||||||
|
|
||||||
David Reid - mackron@gmail.com
|
David Reid - mackron@gmail.com
|
||||||
|
|
||||||
@@ -166,7 +166,7 @@ If you just want to quickly decode an entire FLAC file in one go you can do some
|
|||||||
|
|
||||||
...
|
...
|
||||||
|
|
||||||
drflac_free(pSampleData);
|
drflac_free(pSampleData, NULL);
|
||||||
```
|
```
|
||||||
|
|
||||||
You can read samples as signed 16-bit integer and 32-bit floating-point PCM with the *_s16() and *_f32() family of APIs respectively, but note that these
|
You can read samples as signed 16-bit integer and 32-bit floating-point PCM with the *_s16() and *_f32() family of APIs respectively, but note that these
|
||||||
@@ -232,7 +232,7 @@ extern "C" {
|
|||||||
|
|
||||||
#define DRFLAC_VERSION_MAJOR 0
|
#define DRFLAC_VERSION_MAJOR 0
|
||||||
#define DRFLAC_VERSION_MINOR 12
|
#define DRFLAC_VERSION_MINOR 12
|
||||||
#define DRFLAC_VERSION_REVISION 24
|
#define DRFLAC_VERSION_REVISION 25
|
||||||
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
||||||
|
|
||||||
#include <stddef.h> /* For size_t. */
|
#include <stddef.h> /* For size_t. */
|
||||||
@@ -408,7 +408,10 @@ typedef struct
|
|||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
/* The metadata type. Use this to know how to interpret the data below. */
|
/*
|
||||||
|
The metadata type. Use this to know how to interpret the data below. Will be set to one of the
|
||||||
|
DRFLAC_METADATA_BLOCK_TYPE_* tokens.
|
||||||
|
*/
|
||||||
drflac_uint32 type;
|
drflac_uint32 type;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -552,7 +555,8 @@ pMetadata (in)
|
|||||||
|
|
||||||
Remarks
|
Remarks
|
||||||
-------
|
-------
|
||||||
Use pMetadata->type to determine which metadata block is being handled and how to read the data.
|
Use pMetadata->type to determine which metadata block is being handled and how to read the data. This
|
||||||
|
will be set to one of the DRFLAC_METADATA_BLOCK_TYPE_* tokens.
|
||||||
*/
|
*/
|
||||||
typedef void (* drflac_meta_proc)(void* pUserData, drflac_metadata* pMetadata);
|
typedef void (* drflac_meta_proc)(void* pUserData, drflac_metadata* pMetadata);
|
||||||
|
|
||||||
@@ -797,6 +801,8 @@ from a block of memory respectively.
|
|||||||
|
|
||||||
The STREAMINFO block must be present for this to succeed. Use `drflac_open_relaxed()` to open a FLAC stream where the header may not be present.
|
The STREAMINFO block must be present for this to succeed. Use `drflac_open_relaxed()` to open a FLAC stream where the header may not be present.
|
||||||
|
|
||||||
|
Use `drflac_open_with_metadata()` if you need access to metadata.
|
||||||
|
|
||||||
|
|
||||||
Seek Also
|
Seek Also
|
||||||
---------
|
---------
|
||||||
@@ -843,6 +849,8 @@ as that is for internal use only.
|
|||||||
|
|
||||||
Opening in relaxed mode will continue reading data from onRead until it finds a valid frame. If a frame is never found it will continue forever. To abort,
|
Opening in relaxed mode will continue reading data from onRead until it finds a valid frame. If a frame is never found it will continue forever. To abort,
|
||||||
force your `onRead` callback to return 0, which dr_flac will use as an indicator that the end of the stream was found.
|
force your `onRead` callback to return 0, which dr_flac will use as an indicator that the end of the stream was found.
|
||||||
|
|
||||||
|
Use `drflac_open_with_metadata_relaxed()` if you need access to metadata.
|
||||||
*/
|
*/
|
||||||
DRFLAC_API drflac* drflac_open_relaxed(drflac_read_proc onRead, drflac_seek_proc onSeek, drflac_container container, void* pUserData, const drflac_allocation_callbacks* pAllocationCallbacks);
|
DRFLAC_API drflac* drflac_open_relaxed(drflac_read_proc onRead, drflac_seek_proc onSeek, drflac_container container, void* pUserData, const drflac_allocation_callbacks* pAllocationCallbacks);
|
||||||
|
|
||||||
@@ -882,7 +890,9 @@ Close the decoder with `drflac_close()`.
|
|||||||
This is slower than `drflac_open()`, so avoid this one if you don't need metadata. Internally, this will allocate and free memory on the heap for every
|
This is slower than `drflac_open()`, so avoid this one if you don't need metadata. Internally, this will allocate and free memory on the heap for every
|
||||||
metadata block except for STREAMINFO and PADDING blocks.
|
metadata block except for STREAMINFO and PADDING blocks.
|
||||||
|
|
||||||
The caller is notified of the metadata via the `onMeta` callback. All metadata blocks will be handled before the function returns.
|
The caller is notified of the metadata via the `onMeta` callback. All metadata blocks will be handled before the function returns. This callback takes a
|
||||||
|
pointer to a `drflac_metadata` object which is a union containing the data of all relevant metadata blocks. Use the `type` member to discriminate against
|
||||||
|
the different metadata types.
|
||||||
|
|
||||||
The STREAMINFO block must be present for this to succeed. Use `drflac_open_with_metadata_relaxed()` to open a FLAC stream where the header may not be present.
|
The STREAMINFO block must be present for this to succeed. Use `drflac_open_with_metadata_relaxed()` to open a FLAC stream where the header may not be present.
|
||||||
|
|
||||||
@@ -11792,6 +11802,9 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
|
|||||||
/*
|
/*
|
||||||
REVISION HISTORY
|
REVISION HISTORY
|
||||||
================
|
================
|
||||||
|
v0.12.25 - 2020-12-26
|
||||||
|
- Update documentation.
|
||||||
|
|
||||||
v0.12.24 - 2020-11-29
|
v0.12.24 - 2020-11-29
|
||||||
- Fix ARM64/NEON detection when compiling with MSVC.
|
- Fix ARM64/NEON detection when compiling with MSVC.
|
||||||
|
|
||||||
|
|||||||
+5
-10
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
MP3 audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
|
MP3 audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
|
||||||
dr_mp3 - v0.6.24 - 2020-12-07
|
dr_mp3 - v0.6.25 - 2020-12-26
|
||||||
|
|
||||||
David Reid - mackron@gmail.com
|
David Reid - mackron@gmail.com
|
||||||
|
|
||||||
@@ -95,7 +95,7 @@ extern "C" {
|
|||||||
|
|
||||||
#define DRMP3_VERSION_MAJOR 0
|
#define DRMP3_VERSION_MAJOR 0
|
||||||
#define DRMP3_VERSION_MINOR 6
|
#define DRMP3_VERSION_MINOR 6
|
||||||
#define DRMP3_VERSION_REVISION 23
|
#define DRMP3_VERSION_REVISION 25
|
||||||
#define DRMP3_VERSION_STRING DRMP3_XSTRINGIFY(DRMP3_VERSION_MAJOR) "." DRMP3_XSTRINGIFY(DRMP3_VERSION_MINOR) "." DRMP3_XSTRINGIFY(DRMP3_VERSION_REVISION)
|
#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. */
|
#include <stddef.h> /* For size_t. */
|
||||||
@@ -281,14 +281,6 @@ DRMP3_API void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, size_t num
|
|||||||
Main API (Pull API)
|
Main API (Pull API)
|
||||||
===================
|
===================
|
||||||
*/
|
*/
|
||||||
#ifndef DRMP3_DEFAULT_CHANNELS
|
|
||||||
#define DRMP3_DEFAULT_CHANNELS 2
|
|
||||||
#endif
|
|
||||||
#ifndef DRMP3_DEFAULT_SAMPLE_RATE
|
|
||||||
#define DRMP3_DEFAULT_SAMPLE_RATE 44100
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
drmp3_seek_origin_start,
|
drmp3_seek_origin_start,
|
||||||
@@ -4458,6 +4450,9 @@ counts rather than sample counts.
|
|||||||
/*
|
/*
|
||||||
REVISION HISTORY
|
REVISION HISTORY
|
||||||
================
|
================
|
||||||
|
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
|
v0.6.24 - 2020-12-07
|
||||||
- Fix a typo in version date for 0.6.23.
|
- Fix a typo in version date for 0.6.23.
|
||||||
|
|
||||||
|
|||||||
+2
-8
@@ -44959,7 +44959,7 @@ extern "C" {
|
|||||||
#define DRFLAC_XSTRINGIFY(x) DRFLAC_STRINGIFY(x)
|
#define DRFLAC_XSTRINGIFY(x) DRFLAC_STRINGIFY(x)
|
||||||
#define DRFLAC_VERSION_MAJOR 0
|
#define DRFLAC_VERSION_MAJOR 0
|
||||||
#define DRFLAC_VERSION_MINOR 12
|
#define DRFLAC_VERSION_MINOR 12
|
||||||
#define DRFLAC_VERSION_REVISION 24
|
#define DRFLAC_VERSION_REVISION 25
|
||||||
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
typedef signed char drflac_int8;
|
typedef signed char drflac_int8;
|
||||||
@@ -45320,7 +45320,7 @@ extern "C" {
|
|||||||
#define DRMP3_XSTRINGIFY(x) DRMP3_STRINGIFY(x)
|
#define DRMP3_XSTRINGIFY(x) DRMP3_STRINGIFY(x)
|
||||||
#define DRMP3_VERSION_MAJOR 0
|
#define DRMP3_VERSION_MAJOR 0
|
||||||
#define DRMP3_VERSION_MINOR 6
|
#define DRMP3_VERSION_MINOR 6
|
||||||
#define DRMP3_VERSION_REVISION 23
|
#define DRMP3_VERSION_REVISION 25
|
||||||
#define DRMP3_VERSION_STRING DRMP3_XSTRINGIFY(DRMP3_VERSION_MAJOR) "." DRMP3_XSTRINGIFY(DRMP3_VERSION_MINOR) "." DRMP3_XSTRINGIFY(DRMP3_VERSION_REVISION)
|
#define DRMP3_VERSION_STRING DRMP3_XSTRINGIFY(DRMP3_VERSION_MAJOR) "." DRMP3_XSTRINGIFY(DRMP3_VERSION_MINOR) "." DRMP3_XSTRINGIFY(DRMP3_VERSION_REVISION)
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
typedef signed char drmp3_int8;
|
typedef signed char drmp3_int8;
|
||||||
@@ -45468,12 +45468,6 @@ typedef struct
|
|||||||
DRMP3_API void drmp3dec_init(drmp3dec *dec);
|
DRMP3_API void drmp3dec_init(drmp3dec *dec);
|
||||||
DRMP3_API int drmp3dec_decode_frame(drmp3dec *dec, const drmp3_uint8 *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);
|
||||||
DRMP3_API void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, size_t num_samples);
|
DRMP3_API void drmp3dec_f32_to_s16(const float *in, drmp3_int16 *out, size_t num_samples);
|
||||||
#ifndef DRMP3_DEFAULT_CHANNELS
|
|
||||||
#define DRMP3_DEFAULT_CHANNELS 2
|
|
||||||
#endif
|
|
||||||
#ifndef DRMP3_DEFAULT_SAMPLE_RATE
|
|
||||||
#define DRMP3_DEFAULT_SAMPLE_RATE 44100
|
|
||||||
#endif
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
drmp3_seek_origin_start,
|
drmp3_seek_origin_start,
|
||||||
|
|||||||
Reference in New Issue
Block a user