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
534b43e8
Commit
534b43e8
authored
Apr 27, 2025
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comment out some unused functions.
parent
caa3d2a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
miniaudio.h
miniaudio.h
+4
-0
No files found.
miniaudio.h
View file @
534b43e8
...
@@ -17461,10 +17461,12 @@ static MA_INLINE ma_uint16 ma_job_extract_slot(ma_uint64 toc)
...
@@ -17461,10 +17461,12 @@ static MA_INLINE ma_uint16 ma_job_extract_slot(ma_uint64 toc)
return (ma_uint16)(toc & 0x0000FFFF);
return (ma_uint16)(toc & 0x0000FFFF);
}
}
#if 0 /* Currently unused, but might make use of this later. */
static MA_INLINE ma_uint16 ma_job_extract_code(ma_uint64 toc)
static MA_INLINE ma_uint16 ma_job_extract_code(ma_uint64 toc)
{
{
return (ma_uint16)((toc & 0xFFFF0000) >> 16);
return (ma_uint16)((toc & 0xFFFF0000) >> 16);
}
}
#endif
static MA_INLINE ma_uint64 ma_job_toc_to_allocation(ma_uint64 toc)
static MA_INLINE ma_uint64 ma_job_toc_to_allocation(ma_uint64 toc)
{
{
...
@@ -67986,6 +67988,7 @@ static MA_INLINE ma_resource_manager_data_buffer_node* ma_resource_manager_data_
...
@@ -67986,6 +67988,7 @@ static MA_INLINE ma_resource_manager_data_buffer_node* ma_resource_manager_data_
return ma_resource_manager_data_buffer_node_find_min(pDataBufferNode->pChildHi);
return ma_resource_manager_data_buffer_node_find_min(pDataBufferNode->pChildHi);
}
}
#if 0 /* Currently unused, but might make use of this later. */
static MA_INLINE ma_resource_manager_data_buffer_node* ma_resource_manager_data_buffer_node_find_inorder_predecessor(ma_resource_manager_data_buffer_node* pDataBufferNode)
static MA_INLINE ma_resource_manager_data_buffer_node* ma_resource_manager_data_buffer_node_find_inorder_predecessor(ma_resource_manager_data_buffer_node* pDataBufferNode)
{
{
MA_ASSERT(pDataBufferNode != NULL);
MA_ASSERT(pDataBufferNode != NULL);
...
@@ -67993,6 +67996,7 @@ static MA_INLINE ma_resource_manager_data_buffer_node* ma_resource_manager_data_
...
@@ -67993,6 +67996,7 @@ static MA_INLINE ma_resource_manager_data_buffer_node* ma_resource_manager_data_
return ma_resource_manager_data_buffer_node_find_max(pDataBufferNode->pChildLo);
return ma_resource_manager_data_buffer_node_find_max(pDataBufferNode->pChildLo);
}
}
#endif
static ma_result ma_resource_manager_data_buffer_node_remove(ma_resource_manager* pResourceManager, ma_resource_manager_data_buffer_node* pDataBufferNode)
static ma_result ma_resource_manager_data_buffer_node_remove(ma_resource_manager* pResourceManager, ma_resource_manager_data_buffer_node* pDataBufferNode)
{
{
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