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
30c41c76
Commit
30c41c76
authored
Aug 08, 2021
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename ma_get_standard_channel_map() to ma_channel_map_init_standard().
parent
405fc1ab
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
71 deletions
+71
-71
extras/miniaudio_libopus.h
extras/miniaudio_libopus.h
+1
-1
extras/miniaudio_libvorbis.h
extras/miniaudio_libvorbis.h
+1
-1
miniaudio.h
miniaudio.h
+69
-69
No files found.
extras/miniaudio_libopus.h
View file @
30c41c76
...
...
@@ -415,7 +415,7 @@ MA_API ma_result ma_libopus_get_data_format(ma_libopus* pOpus, ma_format* pForma
}
if
(
pChannelMap
!=
NULL
)
{
ma_
get_standard_channel_map
(
ma_standard_channel_map_vorbis
,
pChannelMap
,
channelMapCap
,
channels
);
ma_
channel_map_init_standard
(
ma_standard_channel_map_vorbis
,
pChannelMap
,
channelMapCap
,
channels
);
}
return
MA_SUCCESS
;
...
...
extras/miniaudio_libvorbis.h
View file @
30c41c76
...
...
@@ -435,7 +435,7 @@ MA_API ma_result ma_libvorbis_get_data_format(ma_libvorbis* pVorbis, ma_format*
}
if
(
pChannelMap
!=
NULL
)
{
ma_
get_standard_channel_map
(
ma_standard_channel_map_vorbis
,
pChannelMap
,
channelMapCap
,
pInfo
->
channels
);
ma_
channel_map_init_standard
(
ma_standard_channel_map_vorbis
,
pChannelMap
,
channelMapCap
,
pInfo
->
channels
);
}
return
MA_SUCCESS
;
...
...
miniaudio.h
View file @
30c41c76
This diff is collapsed.
Click to expand it.
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