Enum ALVSTHost.TALVSTPanLawType
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: AudioLabPkg
Unit: ALVSTHost
Contents |
Syntax
Delphi:
type TALVSTPanLawType = (vstkCurrent, vstkLinearPanLaw, vstkEqualPowerPanLaw);
C++ Builder:
enum TALVSTPanLawType {vstkCurrent, vstkLinearPanLaw, vstkEqualPowerPanLaw};
Visual C++ (MFC):
enum CTALVSTPanLawType {vstkCurrent, vstkLinearPanLaw, vstkEqualPowerPanLaw};
Summary
VST Panning Law enumeration.
Description
Defines the types of VST Panning Law enumeration.
Values
vstkCurrent | Use the current Panning Law setting. |
vstkLinearPanLaw | Linear: L = pan * M; R = (1 - pan) * M; |
vstkEqualPowerPanLaw | EqualPower: L = pow (pan, 0.5) * M; R = pow ((1 - pan), 0.5) * M; |