FMOD Callback Types
FMOD File and memory callbacks can possibly be called from an FMOD thread. Remember that if you specify file or memory callbacks with FMOD, to make sure that they are thread safe. FMOD may call these callbacks from other threads.
Does this mean that all other callback types (including FMOD_CHANNELCONTROL_CALLBACK_END
) will always be called from the main thread?
In my experiments, FMOD_CHANNELCONTROL_CALLBACK_END
is called on the main thread.