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
f572ac87
Commit
f572ac87
authored
May 27, 2020
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change pDeviceID to constant pointers in ma_device_config.
parent
51fea1b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
miniaudio.h
miniaudio.h
+7
-4
No files found.
miniaudio.h
View file @
f572ac87
/*
/*
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.
7 - 2020-05-25
miniaudio - v0.10.
8 - TBD
David Reid - davidreidsoftware@gmail.com
David Reid - davidreidsoftware@gmail.com
...
@@ -1539,7 +1539,7 @@ extern "C" {
...
@@ -1539,7 +1539,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
7
#define MA_VERSION_REVISION
8
#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__)
...
@@ -3280,7 +3280,7 @@ typedef struct
...
@@ -3280,7 +3280,7 @@ typedef struct
} resampling;
} resampling;
struct
struct
{
{
ma_device_id* pDeviceID;
const
ma_device_id* pDeviceID;
ma_format format;
ma_format format;
ma_uint32 channels;
ma_uint32 channels;
ma_channel channelMap[MA_MAX_CHANNELS];
ma_channel channelMap[MA_MAX_CHANNELS];
...
@@ -3288,7 +3288,7 @@ typedef struct
...
@@ -3288,7 +3288,7 @@ typedef struct
} playback;
} playback;
struct
struct
{
{
ma_device_id* pDeviceID;
const
ma_device_id* pDeviceID;
ma_format format;
ma_format format;
ma_uint32 channels;
ma_uint32 channels;
ma_channel channelMap[MA_MAX_CHANNELS];
ma_channel channelMap[MA_MAX_CHANNELS];
...
@@ -43384,6 +43384,9 @@ The following miscellaneous changes have also been made.
...
@@ -43384,6 +43384,9 @@ The following miscellaneous changes have also been made.
/*
/*
REVISION HISTORY
REVISION HISTORY
================
================
v0.10.8 - TBD
- Change playback.pDeviceID and capture.pDeviceID to constant pointers in ma_device_config.
v0.10.7 - 2020-05-25
v0.10.7 - 2020-05-25
- Fix a compilation error in the C++ build.
- Fix a compilation error in the C++ build.
- Silence a warning.
- Silence a warning.
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