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
465a4f81
"...svn:/svn.code.sf.net/p/irrlicht/code/trunk@5219" did not exist on "bc9fe27e30bfa9b0abe8934841f3e475bdcdc2e8"
Commit
465a4f81
authored
Apr 24, 2018
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dr_flac.
parent
ca1c8b21
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
extras/dr_flac.h
extras/dr_flac.h
+6
-2
No files found.
extras/dr_flac.h
View file @
465a4f81
// FLAC audio decoder. Public domain. See "unlicense" statement at the end of this file.
// FLAC audio decoder. Public domain. See "unlicense" statement at the end of this file.
// dr_flac - v0.
8g - 2018-04-19
// dr_flac - v0.
9 - 2018-04-24
//
//
// David Reid - mackron@gmail.com
// David Reid - mackron@gmail.com
...
@@ -1742,7 +1742,7 @@ static DRFLAC_INLINE drflac_bool32 drflac__is_lzcnt_supported()
...
@@ -1742,7 +1742,7 @@ static DRFLAC_INLINE drflac_bool32 drflac__is_lzcnt_supported()
static
DRFLAC_INLINE
drflac_uint32
drflac__clz_lzcnt
(
drflac_cache_t
x
)
static
DRFLAC_INLINE
drflac_uint32
drflac__clz_lzcnt
(
drflac_cache_t
x
)
{
{
#if
def _MSC_VER
#if
defined(_MSC_VER) && !defined(__clang__)
#ifdef DRFLAC_64BIT
#ifdef DRFLAC_64BIT
return
(
drflac_uint32
)
__lzcnt64
(
x
);
return
(
drflac_uint32
)
__lzcnt64
(
x
);
#else
#else
...
@@ -5524,6 +5524,10 @@ const char* drflac_next_vorbis_comment(drflac_vorbis_comment_iterator* pIter, dr
...
@@ -5524,6 +5524,10 @@ const char* drflac_next_vorbis_comment(drflac_vorbis_comment_iterator* pIter, dr
// REVISION HISTORY
// REVISION HISTORY
//
//
// v0.9 - 2018-04-24
// - Fix Clang build.
// - Start using major.minor.revision versioning.
//
// v0.8g - 2018-04-19
// v0.8g - 2018-04-19
// - Fix build on non-x86/x64 architectures.
// - Fix build on non-x86/x64 architectures.
//
//
...
...
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