I'm using ioquake3 1.36_svn1783 compiled from svn by me.
On some server, when i join, i get one warning message (from the openal core i think) which flood the console.
The message says: "WARNING: unhandled AL error: Invalid value".
That is repeated over and over again until i exit to main menu.
This leads to some random audio/video slowdonw (like lagging).
I found that this error occurs even when i create a local DM server using the first map.
If you need some more infos, just ask me.
Created attachment 2376[details]
Fix cgame sound fall back when using OpenAL
This patch stops the "WARNING: unhandled AL error: invalid value" (At least in my standalone mod /with modified engine/, Turtle Arena). This patch was originally created to fix sound fall back in cgame.
It changes S_AL_RegisterSound to "return 0", like S_Base_RegisterSound, when a sound was loading using the default sound. This fixes CG_LoadClientInfo. CG_LoadClientInfo attempts to load custom sounds for the clients model, if the sound is not found it falls back to the default model's sound. With the current OpenAL code it doesn't work, the attached patch fixes it.
To test this extract and rename one of the quake3 players (so cgame doesn't find sound/players/$NEWNAME/*.wav) and set sv_pure to 0. Currently when using OpenAL the player will use the default sound (sound/feedback/hit.wav) for taunt, pain, etc. When using OpenAL with the patch, or using base audio, the player uses DEFAULT_MODEL(sarge)'s sounds.
Note: When s_alPrecache is set to 0, S_AL_RegisterSound doesn't know if the sound is the default sound therefore CG_LoadClientInfo doesn't know it should fall back to another sound. The "WARNING: unhandled AL error: invalid value" messages still shows up (in Turtle Arena at least) with s_alPrecache set to 0.
Created attachment 2376 [details] Fix cgame sound fall back when using OpenAL This patch stops the "WARNING: unhandled AL error: invalid value" (At least in my standalone mod /with modified engine/, Turtle Arena). This patch was originally created to fix sound fall back in cgame. It changes S_AL_RegisterSound to "return 0", like S_Base_RegisterSound, when a sound was loading using the default sound. This fixes CG_LoadClientInfo. CG_LoadClientInfo attempts to load custom sounds for the clients model, if the sound is not found it falls back to the default model's sound. With the current OpenAL code it doesn't work, the attached patch fixes it. To test this extract and rename one of the quake3 players (so cgame doesn't find sound/players/$NEWNAME/*.wav) and set sv_pure to 0. Currently when using OpenAL the player will use the default sound (sound/feedback/hit.wav) for taunt, pain, etc. When using OpenAL with the patch, or using base audio, the player uses DEFAULT_MODEL(sarge)'s sounds. Note: When s_alPrecache is set to 0, S_AL_RegisterSound doesn't know if the sound is the default sound therefore CG_LoadClientInfo doesn't know it should fall back to another sound. The "WARNING: unhandled AL error: invalid value" messages still shows up (in Turtle Arena at least) with s_alPrecache set to 0.