View Full Version : Microphone Gain Level
Anonymous
17th April 2003, 01:34 PM
Does anybody know how to control audio input (mirophone) volume level on XDA and how to enable/disable AGC?
Anonymous
21st May 2003, 06:01 AM
Below is my function for disabling the Microphone AGC
HRESULT DisableMicrophoneAGC()
{
LRESULT lr = 0;
HKEY hKey;
DWORD dwresult = 0;
DWORD dwdatasize =0;
lr = RegCreateKeyEx(HKEY_LOCAL_MACHINE,L"System\\CurrentControlSet\\AdvancedCPL",0,NULL,REG_OPTION_NON_VOLATILE,KEY_WRITE | KEY_READ, NULL, &hKey, &dwresult);
if(lr == ERROR_SUCCESS)
{
dwdatasize = 1;
BYTE bdata[] = {0};
lr = RegSetValueEx(hKey,L"MicrophoneAGC",0,REG_DWORD,(LPBYTE)&bdata,dwdatasize);
}
if(lr == ERROR_SUCCESS)
{
::RegCloseKey(hKey);
}
return S_OK;
}
dez93_2000
8th September 2009, 12:34 AM
rather than disabling this, does anyone know how one could go about improving the auto-gain control - if it already exists - on the HTC Touch HD? I was at a gig & recorded some video, and the bass was so overpowering that all you could hear was crunch. If it had some kind of smart feedback enough to reduce the low end, it might have been OK. Any thoughts?
bobzero
3rd May 2010, 07:17 AM
holy 6.25 years thread bump batman. this must be some kind of record.
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.