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
8f675e6c
Commit
8f675e6c
authored
Dec 26, 2020
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version 0.10.29
parent
d92c2016
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
56 deletions
+50
-56
extras/miniaudio_split/miniaudio.c
extras/miniaudio_split/miniaudio.c
+40
-46
extras/miniaudio_split/miniaudio.h
extras/miniaudio_split/miniaudio.h
+8
-8
miniaudio.h
miniaudio.h
+2
-2
No files found.
extras/miniaudio_split/miniaudio.c
View file @
8f675e6c
This diff is collapsed.
Click to expand it.
extras/miniaudio_split/miniaudio.h
View file @
8f675e6c
/*
/*
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
miniaudio - v0.10.2
8 - 2020-12-1
6
miniaudio - v0.10.2
9 - 2020-12-2
6
David Reid - mackron@gmail.com
David Reid - mackron@gmail.com
...
@@ -20,7 +20,7 @@ extern "C" {
...
@@ -20,7 +20,7 @@ extern "C" {
#define MA_VERSION_MAJOR 0
#define MA_VERSION_MAJOR 0
#define MA_VERSION_MINOR 10
#define MA_VERSION_MINOR 10
#define MA_VERSION_REVISION 2
8
#define MA_VERSION_REVISION 2
9
#define MA_VERSION_STRING MA_XSTRINGIFY(MA_VERSION_MAJOR) "." MA_XSTRINGIFY(MA_VERSION_MINOR) "." MA_XSTRINGIFY(MA_VERSION_REVISION)
#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__)
#if defined(_MSC_VER) && !defined(__clang__)
...
@@ -2570,12 +2570,12 @@ struct ma_device
...
@@ -2570,12 +2570,12 @@ struct ma_device
ma_uint32
originalPeriodSizeInMilliseconds
;
ma_uint32
originalPeriodSizeInMilliseconds
;
ma_uint32
originalPeriods
;
ma_uint32
originalPeriods
;
ma_performance_profile
originalPerformanceProfile
;
ma_performance_profile
originalPerformanceProfile
;
ma_bool32
hasDefaultPlaybackDeviceChanged
;
/* <-- Make sure this is always a whole 32-bits because we use atomic assignments. */
volatile
ma_bool32
hasDefaultPlaybackDeviceChanged
;
/* <-- Make sure this is always a whole 32-bits because we use atomic assignments. */
ma_bool32
hasDefaultCaptureDeviceChanged
;
/* <-- Make sure this is always a whole 32-bits because we use atomic assignments. */
volatile
ma_bool32
hasDefaultCaptureDeviceChanged
;
/* <-- Make sure this is always a whole 32-bits because we use atomic assignments. */
ma_uint32
periodSizeInFramesPlayback
;
ma_uint32
periodSizeInFramesPlayback
;
ma_uint32
periodSizeInFramesCapture
;
ma_uint32
periodSizeInFramesCapture
;
ma_bool32
isStartedCapture
;
/* <-- Make sure this is always a whole 32-bits because we use atomic assignments. */
volatile
ma_bool32
isStartedCapture
;
/* <-- Make sure this is always a whole 32-bits because we use atomic assignments. */
ma_bool32
isStartedPlayback
;
/* <-- Make sure this is always a whole 32-bits because we use atomic assignments. */
volatile
ma_bool32
isStartedPlayback
;
/* <-- Make sure this is always a whole 32-bits because we use atomic assignments. */
ma_bool8
noAutoConvertSRC
;
/* When set to true, disables the use of AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM. */
ma_bool8
noAutoConvertSRC
;
/* When set to true, disables the use of AUDCLNT_STREAMFLAGS_AUTOCONVERTPCM. */
ma_bool8
noDefaultQualitySRC
;
/* When set to true, disables the use of AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY. */
ma_bool8
noDefaultQualitySRC
;
/* When set to true, disables the use of AUDCLNT_STREAMFLAGS_SRC_DEFAULT_QUALITY. */
ma_bool8
noHardwareOffloading
;
ma_bool8
noHardwareOffloading
;
...
@@ -2726,14 +2726,14 @@ struct ma_device
...
@@ -2726,14 +2726,14 @@ struct ma_device
ma_event
operationCompletionEvent
;
ma_event
operationCompletionEvent
;
ma_semaphore
operationSemaphore
;
ma_semaphore
operationSemaphore
;
ma_uint32
operation
;
ma_uint32
operation
;
ma_result
operationResult
;
volatile
ma_result
operationResult
;
ma_timer
timer
;
ma_timer
timer
;
double
priorRunTime
;
double
priorRunTime
;
ma_uint32
currentPeriodFramesRemainingPlayback
;
ma_uint32
currentPeriodFramesRemainingPlayback
;
ma_uint32
currentPeriodFramesRemainingCapture
;
ma_uint32
currentPeriodFramesRemainingCapture
;
ma_uint64
lastProcessedFramePlayback
;
ma_uint64
lastProcessedFramePlayback
;
ma_uint64
lastProcessedFrameCapture
;
ma_uint64
lastProcessedFrameCapture
;
ma_bool32
isStarted
;
volatile
ma_bool32
isStarted
;
}
null_device
;
}
null_device
;
#endif
#endif
};
};
...
...
miniaudio.h
View file @
8f675e6c
/*
/*
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
Audio playback and capture library. Choice of public domain or MIT-0. See license statements at the end of this file.
miniaudio - v0.10.29 -
TBD
miniaudio - v0.10.29 -
2020-12-26
David Reid - mackron@gmail.com
David Reid - mackron@gmail.com
...
@@ -64672,7 +64672,7 @@ The following miscellaneous changes have also been made.
...
@@ -64672,7 +64672,7 @@ The following miscellaneous changes have also been made.
/*
/*
REVISION HISTORY
REVISION HISTORY
================
================
v0.10.29 -
TBD
v0.10.29 -
2020-12-26
- Fix some subtle multi-threading bugs on non-x86 platforms.
- Fix some subtle multi-threading bugs on non-x86 platforms.
- Fix a bug resulting in superfluous memory allocations when enumerating devices.
- Fix a bug resulting in superfluous memory allocations when enumerating devices.
- Core Audio: Fix a compilation error when compiling for iOS.
- Core Audio: Fix a compilation error when compiling for iOS.
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