Well, after a couple of days of trying to reproduce the problem systematically, I could not find a way to do it. I went to FMod website, read some groups, etc. Couldn't really find someone who has the same problem than me. I looked into the FMod wiki, but there's not much in there yet... So I scan Fmod.cs code and FmodBase.cs again in the hopes something would stand out as being a possible problem.
While reading this, I got interested in the channel_callback and ChannelIndex (since I thought it was a channel problem). Through some trials and errors, I think I found the solution. In FModBase, each play sound uses FMOD.CHANNELINDEX.FREE. I could not find many info about this, but since the other value in the enum is REUSE, I thought that FREE meant that FMod would use a free channel to play the sound and REUSE would mean to reuse the channel that is passed in as a parameter. I don't know how FMod identifies free channels, so in the PlaySound function of FModBase I changed this:
if the sound is not already playing, I use FMOD.CHANNELINDEX.REUSE
if the sound is already playing and the soundreplay is StartNew, I use FMOD.CHANNELINDEX.FREE (I have no sound using StartNew, so I don't know if it is good or not).
if the sound is already playing and the soundreplay is Continue, I don't use anything (no call to the PlaySound function, I'm just setting the volume if need be)
if the sound is already playing and the soundreplay is Restart, I use FMOD.CHANNELINDEX.REUSE
So the function becomes this:
[Description("Play an FMOD sound effect")]
public static void PlaySound([System.ComponentModel.Editor("CustomObject", "UITypeEditor")] CustomObjects.FMODBase Sound, SoundReplay ReplayOption)
{
LoadSound(Sound);
if (Sound.isPlaying)
{
switch(ReplayOption)
{
case SoundReplay.Continue:
ERRCHECK(Sound.channel.setVolume(Sound.Volume * Project.GameWindow.SFXVolume));
return;
case SoundReplay.StartNew:
ERRCHECK(system.playSound(FMOD.CHANNELINDEX.FREE, Sound.sound, false, ref Sound.channel));
ERRCHECK(Sound.channel.setCallback(updateCallback));
ERRCHECK(Sound.channel.setVolume(Sound.Volume * Project.GameWindow.SFXVolume));
break;
case SoundReplay.Restart:
Sound.Stop();
ERRCHECK(system.playSound(FMOD.CHANNELINDEX.REUSE, Sound.sound, false, ref Sound.channel));
ERRCHECK(Sound.channel.setCallback(updateCallback));
ERRCHECK(Sound.channel.setVolume(Sound.Volume * Project.GameWindow.SFXVolume));
break;
}
}
else
{
ERRCHECK(system.playSound(FMOD.CHANNELINDEX.REUSE, Sound.sound, false, ref Sound.channel));
ERRCHECK(Sound.channel.setCallback(updateCallback));
ERRCHECK(Sound.channel.setVolume(Sound.Volume * Project.GameWindow.SFXVolume));
}
}
Oh, as you can see, there is some stuff in there to allow the user to control the volume (Project.GameWindow.SFXVolume), you can ignore that.
Since I made these modifications, the problem is gone!

Unfortunately, I haven't learned much about Fmod, but at least this problem is gone (for now, I keep my fingers crossed).

Thanks guys!
