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
2b8bb34c
Commit
2b8bb34c
authored
Nov 29, 2023
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update split version for testing.
parent
2b0c525e
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
38 deletions
+54
-38
extras/miniaudio_split/miniaudio.c
extras/miniaudio_split/miniaudio.c
+47
-36
extras/miniaudio_split/miniaudio.h
extras/miniaudio_split/miniaudio.h
+7
-2
No files found.
extras/miniaudio_split/miniaudio.c
View file @
2b8bb34c
This diff is collapsed.
Click to expand it.
extras/miniaudio_split/miniaudio.h
View file @
2b8bb34c
/*
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
miniaudio - v0.11.2
1 - 2023-11-15
miniaudio - v0.11.2
2 - TBD
David Reid - mackron@gmail.com
...
...
@@ -20,7 +20,7 @@ extern "C" {
#define MA_VERSION_MAJOR 0
#define MA_VERSION_MINOR 11
#define MA_VERSION_REVISION 2
1
#define MA_VERSION_REVISION 2
2
#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__)
...
...
@@ -3545,6 +3545,10 @@ struct ma_context_config
void
*
pUserData
;
ma_allocation_callbacks
allocationCallbacks
;
struct
{
ma_handle
hWnd
;
/* HWND. Optional window handle to pass into SetCooperativeLevel(). Will default to the foreground window, and if that fails, the desktop window. */
}
dsound
;
struct
{
ma_bool32
useVerboseDeviceEnumeration
;
}
alsa
;
...
...
@@ -3633,6 +3637,7 @@ struct ma_context
#ifdef MA_SUPPORT_DSOUND
struct
{
ma_handle
hWnd
;
/* Can be null. */
ma_handle
hDSoundDLL
;
ma_proc
DirectSoundCreate
;
ma_proc
DirectSoundEnumerateA
;
...
...
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