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
17b36053
Commit
17b36053
authored
Oct 07, 2020
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update split version.
parent
634cdb02
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
105 additions
and
37 deletions
+105
-37
extras/miniaudio_split/miniaudio.c
extras/miniaudio_split/miniaudio.c
+92
-33
extras/miniaudio_split/miniaudio.h
extras/miniaudio_split/miniaudio.h
+13
-4
No files found.
extras/miniaudio_split/miniaudio.c
View file @
17b36053
This diff is collapsed.
Click to expand it.
extras/miniaudio_split/miniaudio.h
View file @
17b36053
/*
/*
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.
17 - 2020-08-28
miniaudio - v0.10.
20 - 2020-10-06
David Reid -
davidreidsoftware
@gmail.com
David Reid -
mackron
@gmail.com
Website: https://miniaud.io
Website: https://miniaud.io
Documentation: https://miniaud.io/docs
Documentation: https://miniaud.io/docs
GitHub: https://github.com/
dr-soft
/miniaudio
GitHub: https://github.com/
mackron
/miniaudio
*/
*/
#ifndef miniaudio_h
#ifndef miniaudio_h
#define miniaudio_h
#define miniaudio_h
...
@@ -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
17
#define MA_VERSION_REVISION
20
#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__)
...
@@ -625,6 +625,7 @@ typedef struct
...
@@ -625,6 +625,7 @@ typedef struct
{
{
ma_format
format
;
ma_format
format
;
ma_uint32
channels
;
ma_uint32
channels
;
ma_uint32
sampleRate
;
ma_uint32
lpf1Count
;
ma_uint32
lpf1Count
;
ma_uint32
lpf2Count
;
ma_uint32
lpf2Count
;
ma_lpf1
lpf1
[
1
];
ma_lpf1
lpf1
[
1
];
...
@@ -693,6 +694,7 @@ typedef struct
...
@@ -693,6 +694,7 @@ typedef struct
{
{
ma_format
format
;
ma_format
format
;
ma_uint32
channels
;
ma_uint32
channels
;
ma_uint32
sampleRate
;
ma_uint32
hpf1Count
;
ma_uint32
hpf1Count
;
ma_uint32
hpf2Count
;
ma_uint32
hpf2Count
;
ma_hpf1
hpf1
[
1
];
ma_hpf1
hpf1
[
1
];
...
@@ -1203,6 +1205,13 @@ Both input and output channel map buffers must have a capacity of at at least `c
...
@@ -1203,6 +1205,13 @@ Both input and output channel map buffers must have a capacity of at at least `c
*/
*/
MA_API
void
ma_channel_map_copy
(
ma_channel
*
pOut
,
const
ma_channel
*
pIn
,
ma_uint32
channels
);
MA_API
void
ma_channel_map_copy
(
ma_channel
*
pOut
,
const
ma_channel
*
pIn
,
ma_uint32
channels
);
/*
Copies a channel map if one is specified, otherwise copies the default channel map.
The output buffer must have a capacity of at least `channels`. If not NULL, the input channel map must also have a capacity of at least `channels`.
*/
MA_API
void
ma_channel_map_copy_or_default
(
ma_channel
*
pOut
,
const
ma_channel
*
pIn
,
ma_uint32
channels
);
/*
/*
Determines whether or not a channel map is valid.
Determines whether or not a channel map is valid.
...
...
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