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
79845b5e
Commit
79845b5e
authored
Jan 06, 2021
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update documentation.
parent
fb1e61cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
research/miniaudio_engine.h
research/miniaudio_engine.h
+4
-4
No files found.
research/miniaudio_engine.h
View file @
79845b5e
...
@@ -417,10 +417,10 @@ The code above connects the data source node directly to the endpoint. Since the
...
@@ -417,10 +417,10 @@ The code above connects the data source node directly to the endpoint. Since the
has only a single output bus, the index will always be 0. Likewise, the endpoint only has a single
has only a single output bus, the index will always be 0. Likewise, the endpoint only has a single
input bus which means the input bus index will also always be 0.
input bus which means the input bus index will also always be 0.
To detach a specific output bus, use `ma_node_detach_output_bus()`. To d
o a complete detachment
To detach a specific output bus, use `ma_node_detach_output_bus()`. To d
etach all output buses, use
where all output buses and all input attachments are detached, use `ma_node_detach_full()`. If you want
`ma_node_detach_all_output_buses()`. If you want to just move the output bus from one attachment to
to just move the output bus from one attachment to another, you do not need to detach first. You
another, you do not need to detach first. You can just call `ma_node_attach_output_bus()` and it'll
can just call `ma_node_attach_output_bus()` and it'll
deal with it for you.
deal with it for you.
Less frequently you may want to create a specialized node. This will be a node where you implement
Less frequently you may want to create a specialized node. This will be a node where you implement
your own processing callback to apply a custom effect of some kind. This is similar to initalizing
your own processing callback to apply a custom effect of some kind. This is similar to initalizing
...
...
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