On the map "chronic"
(http://www.freefunfiles.com/software/videogames/mods/chronic.html)
there is a room with music. There are two sound sources
playing the same sound inside. With openal it sounds weird to horrible as both sounds are not synchronized. snd_dma.c contains a hack in S_AddLoopSounds() that merges the volume of equal looping sounds instead of playing both to work around the problem.
Setting a QA contact on all ioquake3 bugs, even resolved ones. Sorry if you get a flood of email from this, it should only happen once. Apologies for the incovenience.
--ryan.
Comment 2Zachary J. Slater
2008-08-09 17:47:41 EDT
yeah I've experienced this in-game, the map is now on server.ioquake3.org
We're running into this issue with rq3 as well. On the current server.ioquake3.org you can find the issue on "truckstop". Looping music inside the gas station.
Also have reports of clipped sounds and some sounds playing twice (death sounds, specifically). This all seems to go away when we disable openal though I guess then we lose VOIP, so that's less than ideal.
Ah, and also on the map "city", there's a looping song in one of the corners of the map on the street. I guess once it enters your PVS, the music starts from the beginning no matter what.
So when you're standing behind a corner... as you step forward to hear the music, it starts from the beginning.. then take a step back and repeat the process.. it restarts. Kinda irritating!
Ah, last spam from me about this. If there's multiple speakers playing the same song (or effect or whatever), they will of course get out of synch because they will enter your pvs at different times and start playing at different times.
I guess all stuff that Ludwig already said, but just with more layman's terms.
Created attachment 2090[details]
Mute the source rather then kill it if we don't update the looping sound that frame.
Here is a patch to hopefully solve the problem.
Cgame goes and does a addlooping sound ever frame, and the sound code checks to see if the looping sound was updated in the last frame.
The previous behavior was to S_AL_SrcKill the sound.
The new behavior in the patch is to mute the source when it has not been added in the previous frame.
I have implemented ambient sound loop synchronisation for OpenAL, in r1694. Please test it.
At this time, I have made sync work exclusively for ambient sound loops, meaning: Sound loops added via S_AL_AddRealLoopingSound() are synced, but not those via S_AL_AddLoopingSound.
If the latter type of loops shall be synchronised as well, please tell me.
I have NOT applied the patch given above, due to:
// There are certain maps (*cough* Q3:TA mpterra*) that have large quantities
// of ET_SPEAKERS in the PVS at any given time. OpenAL can't cope with mixing
// large numbers of sounds, so this culls them by distance
So the restarting sound bug is still there and we will probably never be able to fix this unless OpenAL gets decent speed for large number of speakers.
Revision 1698 should conclude on this bug. Sources now get paused instead of removed, and the sound-restarting as described by Monk is fixed. Please test this, if you find any bugs please reopen this bug report.
Created attachment 2090 [details] Mute the source rather then kill it if we don't update the looping sound that frame. Here is a patch to hopefully solve the problem. Cgame goes and does a addlooping sound ever frame, and the sound code checks to see if the looping sound was updated in the last frame. The previous behavior was to S_AL_SrcKill the sound. The new behavior in the patch is to mute the source when it has not been added in the previous frame.