Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
miniaudio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
miniaudio
Commits
27a7fea8
Commit
27a7fea8
authored
Nov 01, 2020
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dr_flac.
parent
89e5ae21
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
extras/dr_flac.h
extras/dr_flac.h
+6
-3
miniaudio.h
miniaudio.h
+2
-2
No files found.
extras/dr_flac.h
View file @
27a7fea8
/*
/*
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.2
1
- 2020-11-01
dr_flac - v0.12.2
2
- 2020-11-01
David Reid - mackron@gmail.com
David Reid - mackron@gmail.com
...
@@ -232,7 +232,7 @@ extern "C" {
...
@@ -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 2
1
#define DRFLAC_VERSION_REVISION 2
2
#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. */
...
@@ -1386,7 +1386,7 @@ Unfortuantely dr_flac depends on this for a few things so we're just going to di
...
@@ -1386,7 +1386,7 @@ Unfortuantely dr_flac depends on this for a few things so we're just going to di
#if _MSC_VER >= 1600 && !defined(DRFLAC_NO_SSE41)
/* 2010 */
#if _MSC_VER >= 1600 && !defined(DRFLAC_NO_SSE41)
/* 2010 */
#define DRFLAC_SUPPORT_SSE41
#define DRFLAC_SUPPORT_SSE41
#endif
#endif
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC__ >= 3)))
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_
MINOR_
_ >= 3)))
/* Assume GNUC-style. */
/* Assume GNUC-style. */
#if defined(__SSE2__) && !defined(DRFLAC_NO_SSE2)
#if defined(__SSE2__) && !defined(DRFLAC_NO_SSE2)
#define DRFLAC_SUPPORT_SSE2
#define DRFLAC_SUPPORT_SSE2
...
@@ -11789,6 +11789,9 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
...
@@ -11789,6 +11789,9 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
/*
/*
REVISION HISTORY
REVISION HISTORY
================
================
v0.12.22 - 2020-11-01
- Fix an error with the previous release.
v0.12.21 - 2020-11-01
v0.12.21 - 2020-11-01
- Fix a possible deadlock when seeking.
- Fix a possible deadlock when seeking.
- Improve compiler support for older versions of GCC.
- Improve compiler support for older versions of GCC.
...
...
miniaudio.h
View file @
27a7fea8
...
@@ -43247,7 +43247,7 @@ extern "C" {
...
@@ -43247,7 +43247,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 2
1
#define DRFLAC_VERSION_REVISION 2
2
#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;
...
@@ -51224,7 +51224,7 @@ DRWAV_API drwav_bool32 drwav_fourcc_equal(const drwav_uint8* a, const char* b)
...
@@ -51224,7 +51224,7 @@ DRWAV_API drwav_bool32 drwav_fourcc_equal(const drwav_uint8* a, const char* b)
#if _MSC_VER >= 1600 && !defined(DRFLAC_NO_SSE41)
#if _MSC_VER >= 1600 && !defined(DRFLAC_NO_SSE41)
#define DRFLAC_SUPPORT_SSE41
#define DRFLAC_SUPPORT_SSE41
#endif
#endif
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC__ >= 3)))
#elif defined(__clang__) || (defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_
MINOR_
_ >= 3)))
#if defined(__SSE2__) && !defined(DRFLAC_NO_SSE2)
#if defined(__SSE2__) && !defined(DRFLAC_NO_SSE2)
#define DRFLAC_SUPPORT_SSE2
#define DRFLAC_SUPPORT_SSE2
#endif
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment