Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs updated with hint about multithreaded access #273

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,4 @@ Osman Turan https://osmanturan.com
Samson Close https://github.com/qwertysam
Bruce A Henderson https://github.com/woollybah
Philip Bennefall https://github.com/blastbay/
questor
6 changes: 6 additions & 0 deletions docsrc/newsoundsources.mmd
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ The audio instance is meant as the "play head" for a sound source. Most
of the data should be in the audio source, while audio instance may
contain more logic.

Note that the audio instance may be used not from the main thread but
from an extra thread (depending on the backend used). This can have an impact
if you want to change audio parameters during playback because you have
to syncronize the access to the underlaying data.


### AudioSourceInstance.getAudio()


Expand Down