Get equalizer band gain.
__stdcall __declspec(dllimport) int zplay_GetEqualizerBandGain(ZPLAY_HANDLE handle, int nBandIndex);
Parameters |
Description |
ZPLAY_HANDLE handle |
ZPLAY handle. Get this handle with zplay_CreateZPlay. |
int nBandIndex |
Band index, zero based. First band has index 0, second 1, ... |
Band gain in millidecibels. Negative value lower volume, positive value boost volume, 0 is neutral.
Note: Band gain is expressed in millidecibels.
SetEqualizerBandGain, SetEqualizerPoints, GetEqualizerPoints, SetEqualizerParam, GetEqualizerParam, SetEqualizerPreampGain, GetEqualizerPreampGain, EnableEqualizer
zplay_SetEqualizerBandGain, zplay_SetEqualizerPoints, zplay_GetEqualizerPoints, zplay_SetEqualizerParam, zplay_GetEqualizerParam, zplay_SetEqualizerPreampGain, zplay_GetEqualizerPreampGain, zplay_EnableEqualizer
Get gain of first band.
int nGain = instance->GetEqualizerBandGain(0);
int nGain = zplay_GetEqualizerBandGain(instance, 0);
Copyright (c) 2010. Zoran Cindori - All rights reserved.
Web: http://libzplay.sourceforge.net/ Email: zcindori@inet.hr |