I have a program where I play the same sound over and over again in different frequencies. After I have used the play sound command 64 times there is no sound anymore. In Fmod ex I resolved this by using FMOD_CHANNEL_REUSE, which in Fmod studio has been removed. How shall I resolve this now? I am programming in C and Windows Api.
All FMOD_CHANNEL_REUSE did was stop the voice then start it again with the new sound.
It seems to me like you are not stopping your sounds? Are they looping?
We solved this via email support. There were some issues with the application was using FMOD that we changed to solve the issue.
However the original code should have worked: when the channel limit is hit new playSound() calls should steal an existing channel. Because there was a DSP effect added to each new channel, a bug in FMOD meant that the re-used channel wasn’t configured correctly and no signal would pass through the channel.