Remarks
Gets the current Automatic Gain Controller settings.
For further information about the use of the the Automatic Gain Controller refer to the How to use the automatic gain controller section.
Syntax
[Visual Basic]
control.GetAutoGainControllerSettings (
nAmplificationTargetLevel as Integer,
nAmplificationQuietLevel as Integer,
nAmplificationAdjustmentRate as Integer,
nAmplificationGain as Integer
) as enumErrorCodes
|
|
[C++]
short control.GetAutoGainControllerSettings (
short* nAmplificationTargetLevel,
short* nAmplificationQuietLevel,
short* nAmplificationAdjustmentRate,
short* nAmplificationGain
);
|
|
Parameter
|
Description
|
|
|
nAmplificationTargetLevel
|
Reference that, after returning from the method call, will contain the target volume level, expressed in percentage
|
nAmplificationQuietLevel
|
Reference that, after returning from the method call, will contain the quiet volume level, expressed in percentage
|
nAmplificationAdjustmentRate
|
Reference that, after returning from the method call, will contain the amplification adjustment rate, expressed in percentage
|
nAmplificationGain
|
Reference that, after returning from the method call, will contain the amplification gain level, expressed in percentage
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful
|
|