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
9a766349
Commit
9a766349
authored
Mar 29, 2023
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version 0.11.14
parent
249c7386
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
505 additions
and
278 deletions
+505
-278
CHANGES.md
CHANGES.md
+3
-2
extras/miniaudio_split/miniaudio.c
extras/miniaudio_split/miniaudio.c
+257
-65
extras/miniaudio_split/miniaudio.h
extras/miniaudio_split/miniaudio.h
+243
-208
miniaudio.h
miniaudio.h
+2
-3
No files found.
CHANGES.md
View file @
9a766349
v0.11.1
2 - TBD
v0.11.1
4 - 2023-03-29
=====================
*
Fix some pedantic warnings when compiling with GCC.
*
Fix some crashes with the WAV decoder when loading an invalid file.
*
Fix a channel mapping error with PipeWire which results in no audio being output.
*
Add support for using
`ma_pcm_rb`
as a data source.
*
Silence some C89 compatibility warnings with Clang.
*
The
`pBytesRead`
parameter of the VFS onRead callback is now pre-initialized to zero.
v0.11.1
2
- 2023-03-23
v0.11.1
3
- 2023-03-23
=====================
*
Fix compilation errors with the C++ build.
*
Fix compilation errors when WIN32_LEAN_AND_MEAN is defined.
...
...
extras/miniaudio_split/miniaudio.c
View file @
9a766349
This diff is collapsed.
Click to expand it.
extras/miniaudio_split/miniaudio.h
View file @
9a766349
This diff is collapsed.
Click to expand it.
miniaudio.h
View file @
9a766349
/*
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
miniaudio - v0.11.1
3 - 2023-03-23
miniaudio - v0.11.1
4 - 2023-03-29
David Reid - mackron@gmail.com
...
...
@@ -3719,7 +3719,7 @@ extern "C" {
#define MA_VERSION_MAJOR 0
#define MA_VERSION_MINOR 11
#define MA_VERSION_REVISION 1
3
#define MA_VERSION_REVISION 1
4
#define MA_VERSION_STRING MA_XSTRINGIFY(MA_VERSION_MAJOR) "." MA_XSTRINGIFY(MA_VERSION_MINOR) "." MA_XSTRINGIFY(MA_VERSION_REVISION)
#if defined(_MSC_VER) && !defined(__clang__)
...
...
@@ -56429,7 +56429,6 @@ MA_API void* ma_rb_get_subbuffer_ptr(ma_rb* pRB, size_t subbufferIndex, void* pB
/* Add stubs for each of the functions in ma_data_source_vtable. Named ma_pcm_rb_data_source__on_read, etc. */
static ma_result ma_pcm_rb_data_source__on_read(ma_data_source* pDataSource, void* pFramesOut, ma_uint64 frameCount, ma_uint64* pFramesRead)
{
/* Since there's no notion of an end, we don't ever want to return MA_AT_END here. But it is possible to return 0. */
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