I am creating an application which incorporates a sound level meter (the user wears a contact or throat microphone).
I am using the (deprecated) custom class SCListener which uses an AudioQueue and retrieves the value kAudioQueueProperty_CurrentLevelMeter which is a value between 0 and 1.
My issue is that at normal usage levels, the kAudioQueueProperty_CurrentLevelMeter value is already peaked at 1.0 - what I am hoping to do is dampen or reduce the input sensitivity of the contact microphone, so that a scream or really loud yelling registers as a 1.0 instead of regular talking.
Through my searching I have seen some discussion of Audio Units, but have not found any documentation or examples that I have been able to understand.
Is there a way I can reduce the sensitivity or gain or the input line in my application? Any help is greatly appreciated!