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
3ed0f402
Commit
3ed0f402
authored
Jul 05, 2018
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update dr_flac.
parent
dbd236da
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
extras/dr_flac.h
extras/dr_flac.h
+6
-1
No files found.
extras/dr_flac.h
View file @
3ed0f402
// 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.9.
6 - 2018-06-29
// dr_flac - v0.9.
7 - 2018-07-05
//
//
// David Reid - mackron@gmail.com
// David Reid - mackron@gmail.com
...
@@ -1483,6 +1483,7 @@ static drflac_bool32 drflac__read_int32(drflac_bs* bs, unsigned int bitCount, dr
...
@@ -1483,6 +1483,7 @@ static drflac_bool32 drflac__read_int32(drflac_bs* bs, unsigned int bitCount, dr
return
DRFLAC_TRUE
;
return
DRFLAC_TRUE
;
}
}
#ifdef DRFLAC_64BIT
static
drflac_bool32
drflac__read_uint64
(
drflac_bs
*
bs
,
unsigned
int
bitCount
,
drflac_uint64
*
pResultOut
)
static
drflac_bool32
drflac__read_uint64
(
drflac_bs
*
bs
,
unsigned
int
bitCount
,
drflac_uint64
*
pResultOut
)
{
{
drflac_assert
(
bitCount
<=
64
);
drflac_assert
(
bitCount
<=
64
);
...
@@ -1501,6 +1502,7 @@ static drflac_bool32 drflac__read_uint64(drflac_bs* bs, unsigned int bitCount, d
...
@@ -1501,6 +1502,7 @@ static drflac_bool32 drflac__read_uint64(drflac_bs* bs, unsigned int bitCount, d
*
pResultOut
=
(((
drflac_uint64
)
resultHi
)
<<
32
)
|
((
drflac_uint64
)
resultLo
);
*
pResultOut
=
(((
drflac_uint64
)
resultHi
)
<<
32
)
|
((
drflac_uint64
)
resultLo
);
return
DRFLAC_TRUE
;
return
DRFLAC_TRUE
;
}
}
#endif
// Function below is unused, but leaving it here in case I need to quickly add it again.
// Function below is unused, but leaving it here in case I need to quickly add it again.
#if 0
#if 0
...
@@ -5719,6 +5721,9 @@ const char* drflac_next_vorbis_comment(drflac_vorbis_comment_iterator* pIter, dr
...
@@ -5719,6 +5721,9 @@ const char* drflac_next_vorbis_comment(drflac_vorbis_comment_iterator* pIter, dr
// REVISION HISTORY
// REVISION HISTORY
//
//
// v0.9.7 - 2018-07-05
// - Fix a warning.
//
// v0.9.6 - 2018-06-29
// v0.9.6 - 2018-06-29
// - Fix some typos.
// - Fix some typos.
//
//
...
...
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