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
8bfad9dd
Commit
8bfad9dd
authored
Mar 17, 2020
by
Clownacy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark some non-static functions as MA_API
parent
06e2f7c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
miniaudio.h
miniaudio.h
+2
-2
No files found.
miniaudio.h
View file @
8bfad9dd
...
@@ -35953,7 +35953,7 @@ static MA_INLINE void ma_pcm_deinterleave_s16__optimized(void** dst, const void*
...
@@ -35953,7 +35953,7 @@ static MA_INLINE void ma_pcm_deinterleave_s16__optimized(void** dst, const void*
ma_pcm_deinterleave_s16__reference(dst, src, frameCount, channels);
ma_pcm_deinterleave_s16__reference(dst, src, frameCount, channels);
}
}
void ma_pcm_deinterleave_s16(void** dst, const void* src, ma_uint64 frameCount, ma_uint32 channels)
MA_API
void ma_pcm_deinterleave_s16(void** dst, const void* src, ma_uint64 frameCount, ma_uint32 channels)
{
{
#ifdef MA_USE_REFERENCE_CONVERSION_APIS
#ifdef MA_USE_REFERENCE_CONVERSION_APIS
ma_pcm_deinterleave_s16__reference(dst, src, frameCount, channels);
ma_pcm_deinterleave_s16__reference(dst, src, frameCount, channels);
...
@@ -37399,7 +37399,7 @@ static void ma_pcm_interleave_f32__optimized(void* dst, const void** src, ma_uin
...
@@ -37399,7 +37399,7 @@ static void ma_pcm_interleave_f32__optimized(void* dst, const void** src, ma_uin
ma_pcm_interleave_f32__reference(dst, src, frameCount, channels);
ma_pcm_interleave_f32__reference(dst, src, frameCount, channels);
}
}
void ma_pcm_interleave_f32(void* dst, const void** src, ma_uint64 frameCount, ma_uint32 channels)
MA_API
void ma_pcm_interleave_f32(void* dst, const void** src, ma_uint64 frameCount, ma_uint32 channels)
{
{
#ifdef MA_USE_REFERENCE_CONVERSION_APIS
#ifdef MA_USE_REFERENCE_CONVERSION_APIS
ma_pcm_interleave_f32__reference(dst, src, frameCount, channels);
ma_pcm_interleave_f32__reference(dst, src, frameCount, channels);
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