aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-02-12 08:45:19 -0800
committerChris Robinson <[email protected]>2012-02-12 08:45:19 -0800
commite394d14cdab07cab5fce75a2e175a3439c8c8edd (patch)
tree221a0c63315c7b66ba75f397ca77b47db33ad270 /Alc
parent9f073b6f1b29a00d229e200f507bece1bd59336c (diff)
Use more proper enum names for the resampler
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c8
-rw-r--r--Alc/ALu.c8
-rw-r--r--Alc/mixer.c18
3 files changed, 16 insertions, 18 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index a528aa69..1c786919 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -588,17 +588,17 @@ static void alc_initconfig(void)
if(ConfigValueStr(NULL, "resampler", &str))
{
if(strcasecmp(str, "point") == 0 || strcasecmp(str, "none") == 0)
- DefaultResampler = POINT_RESAMPLER;
+ DefaultResampler = PointResampler;
else if(strcasecmp(str, "linear") == 0)
- DefaultResampler = LINEAR_RESAMPLER;
+ DefaultResampler = LinearResampler;
else if(strcasecmp(str, "cubic") == 0)
- DefaultResampler = CUBIC_RESAMPLER;
+ DefaultResampler = CubicResampler;
else
{
char *end;
n = strtol(str, &end, 0);
- if(*end == '\0' && n < RESAMPLER_MAX && n > RESAMPLER_MIN)
+ if(*end == '\0' && (n == PointResampler || n == LinearResampler || n == CubicResampler))
DefaultResampler = n;
else
WARN("Invalid resampler: %s\n", str);
diff --git a/Alc/ALu.c b/Alc/ALu.c
index ba43cb36..21d484c3 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -173,10 +173,10 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
}
if(!DirectChannels && Device->Hrtf)
ALSource->Params.DoMix = SelectHrtfMixer((ALSource->Params.Step==FRACTIONONE) ?
- POINT_RESAMPLER : Resampler);
+ PointResampler : Resampler);
else
ALSource->Params.DoMix = SelectMixer((ALSource->Params.Step==FRACTIONONE) ?
- POINT_RESAMPLER : Resampler);
+ PointResampler : Resampler);
/* Calculate gains */
DryGain = clampf(SourceVolume, MinVolume, MaxVolume);
@@ -676,10 +676,10 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext)
}
if(Device->Hrtf)
ALSource->Params.DoMix = SelectHrtfMixer((ALSource->Params.Step==FRACTIONONE) ?
- POINT_RESAMPLER : Resampler);
+ PointResampler : Resampler);
else
ALSource->Params.DoMix = SelectMixer((ALSource->Params.Step==FRACTIONONE) ?
- POINT_RESAMPLER : Resampler);
+ PointResampler : Resampler);
if(Device->Hrtf)
{
diff --git a/Alc/mixer.c b/Alc/mixer.c
index 8b3c754e..ed2f49a5 100644
--- a/Alc/mixer.c
+++ b/Alc/mixer.c
@@ -439,14 +439,13 @@ MixerFunc SelectMixer(enum Resampler Resampler)
{
switch(Resampler)
{
- case POINT_RESAMPLER:
+ case PointResampler:
return Mix_ALfloat_point32;
- case LINEAR_RESAMPLER:
+ case LinearResampler:
return Mix_ALfloat_lerp32;
- case CUBIC_RESAMPLER:
+ case CubicResampler:
return Mix_ALfloat_cubic32;
- case RESAMPLER_MIN:
- case RESAMPLER_MAX:
+ case ResamplerMax:
break;
}
return NULL;
@@ -456,14 +455,13 @@ MixerFunc SelectHrtfMixer(enum Resampler Resampler)
{
switch(Resampler)
{
- case POINT_RESAMPLER:
+ case PointResampler:
return Mix_Hrtf_ALfloat_point32;
- case LINEAR_RESAMPLER:
+ case LinearResampler:
return Mix_Hrtf_ALfloat_lerp32;
- case CUBIC_RESAMPLER:
+ case CubicResampler:
return Mix_Hrtf_ALfloat_cubic32;
- case RESAMPLER_MIN:
- case RESAMPLER_MAX:
+ case ResamplerMax:
break;
}
return NULL;