IltmmAudioInput::get_Bass Example for C
IltmmAudioInputs *pAudioInputs = NULL;
HRESULT hr = IltmmCapture__get_AudioInputs(m_capture, &pAudioInputs);
if (SUCCEEDED(hr) && pAudioInputs)
{
long lCount, i;
IltmmAudioInputs__get_Count(pAudioInputs, &lCount);
for (i = 0; i < lCount; i++)
{
IltmmAudioInput *pAudioInput = NULL;
hr = IltmmAudioInputs_Item(pAudioInputs, i, &pAudioInput);
if (SUCCEEDED(hr) && pAudioInput)
{
BSTR bstrName, bstrFriendlyName;
VARIANT_BOOL vrtEnable, vrtMono, vrtLoudness;
double dTrebleRange, dBassRange, dMixLevel, dPan, dTreble, dBass;
long lCurrentIndex;
IltmmAudioInput__get_Name(pAudioInput, &bstrName);
IltmmAudioInputs_Find(pAudioInputs, bstrName, &lCurrentIndex);
if (lCurrentIndex != i)
MessageBox(NULL, "Index not found", NULL, MB_OK);
IltmmAudioInput__get_FriendlyName(pAudioInput, &bstrFriendlyName);
IltmmAudioInput__put_Enable(pAudioInput, VARIANT_TRUE);
IltmmAudioInput__put_Mono(pAudioInput, VARIANT_FALSE);
IltmmAudioInput__put_MixLevel(pAudioInput, 1.0);
IltmmAudioInput__put_Pan(pAudioInput, 0.0);
IltmmAudioInput__put_Loudness(pAudioInput, VARIANT_TRUE);
IltmmAudioInput__get_TrebleRange(pAudioInput, &dTrebleRange);
IltmmAudioInput__put_Treble(pAudioInput, dTrebleRange / 2.0);
IltmmAudioInput__get_BassRange(pAudioInput, &dBassRange);
IltmmAudioInput__put_Bass(pAudioInput, dBassRange / 2.0);
IltmmAudioInput__get_Enable(pAudioInput, &vrtEnable);
IltmmAudioInput__get_Mono(pAudioInput, &vrtMono);
IltmmAudioInput__get_MixLevel(pAudioInput, &dMixLevel);
IltmmAudioInput__get_Pan(pAudioInput, &dPan);
IltmmAudioInput__get_Loudness(pAudioInput, &vrtLoudness);
IltmmAudioInput__get_Treble(pAudioInput, &dTreble);
IltmmAudioInput__get_Bass(pAudioInput, &dBass);
SysFreeString(bstrName);
SysFreeString(bstrFriendlyName);
IltmmAudioInput_Release(pAudioInput);
}
}
IltmmAudioInputs_Release(pAudioInputs);
}