2 * OpenAL cross platform audio library
3 * Copyright (C) 1999-2007 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
31 #include "alAuxEffectSlot.h"
38 const struct EffectList EffectList
[] = {
39 { "eaxreverb", AL__EAXREVERB
, "AL_EFFECT_EAXREVERB", AL_EFFECT_EAXREVERB
},
40 { "reverb", AL__REVERB
, "AL_EFFECT_REVERB", AL_EFFECT_REVERB
},
41 { "chorus", AL__CHORUS
, "AL_EFFECT_CHORUS", AL_EFFECT_CHORUS
},
42 { "compressor", AL__COMPRESSOR
, "AL_EFFECT_COMPRESSOR", AL_EFFECT_COMPRESSOR
},
43 { "distortion", AL__DISTORTION
, "AL_EFFECT_DISTORTION", AL_EFFECT_DISTORTION
},
44 { "echo", AL__ECHO
, "AL_EFFECT_ECHO", AL_EFFECT_ECHO
},
45 { "equalizer", AL__EQUALIZER
, "AL_EFFECT_EQUALIZER", AL_EFFECT_EQUALIZER
},
46 { "flanger", AL__FLANGER
, "AL_EFFECT_FLANGER", AL_EFFECT_FLANGER
},
47 { "modulator", AL__MODULATOR
, "AL_EFFECT_RING_MODULATOR", AL_EFFECT_RING_MODULATOR
},
48 { "dedicated", AL__DEDICATED
, "AL_EFFECT_DEDICATED_LOW_FREQUENCY_EFFECT", AL_EFFECT_DEDICATED_LOW_FREQUENCY_EFFECT
},
49 { "dedicated", AL__DEDICATED
, "AL_EFFECT_DEDICATED_DIALOGUE", AL_EFFECT_DEDICATED_DIALOGUE
},
50 { NULL
, 0, NULL
, (ALenum
)0 }
54 AL_API ALboolean AL_APIENTRY
alIsExtensionPresent(const ALchar
*extName
)
56 ALboolean ret
= AL_FALSE
;
61 context
= GetContextRef();
62 if(!context
) return AL_FALSE
;
65 SET_ERROR_AND_GOTO(context
, AL_INVALID_VALUE
, done
);
67 len
= strlen(extName
);
68 ptr
= context
->ExtensionList
;
71 if(strncasecmp(ptr
, extName
, len
) == 0 &&
72 (ptr
[len
] == '\0' || isspace(ptr
[len
])))
77 if((ptr
=strchr(ptr
, ' ')) != NULL
)
81 } while(isspace(*ptr
));
86 ALCcontext_DecRef(context
);
91 AL_API ALvoid
* AL_APIENTRY
alGetProcAddress(const ALchar
*funcName
)
95 return alcGetProcAddress(NULL
, funcName
);
98 AL_API ALenum AL_APIENTRY
alGetEnumValue(const ALchar
*enumName
)
102 return alcGetEnumValue(NULL
, enumName
);