Bug 4621 - "Unhandled AL error" flooding console
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Sound
Version: GIT MASTER
Hardware: PC Linux
: P2 major
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
: 4709
Depends on:
Blocks:
 
Reported: 2010-05-09 04:25 EDT by Ansa89
Modified: 2010-08-29 16:04:50 EDT
2 users (show)

See Also:


Attachments
Fix cgame sound fall back when using OpenAL (359 bytes, patch)
2010-07-24 00:47 EDT, Zack Middleton

Description Ansa89 2010-05-09 04:25:05 EDT
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.
Comment 1 Zack Middleton 2010-07-24 00:47:25 EDT
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.
Comment 2 Zack Middleton 2010-08-17 13:55:09 EDT
Created a bug report for sound fallback, bug report has a new patch that supports "s_alPrecache 0": http://bugzilla.icculus.org/show_bug.cgi?id=4709
Comment 3 Thilo Schulz 2010-08-29 13:39:59 EDT
*** Bug 4709 has been marked as a duplicate of this bug. ***
Comment 4 Thilo Schulz 2010-08-29 15:30:09 EDT
patch applied, reopen if bug persists. Thank you for submitting!
Comment 5 Thilo Schulz 2010-08-29 16:04:50 EDT
fixed in r1792, thanks for sending the patch!