Mercurial > audio-send
view OpenAL32/Include/alEffect.h @ 26:56f83c170251
adding hard-to-compile artifacts for other systems
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 19 Nov 2011 19:17:37 -0700 |
parents | f9476ff7637e |
children |
line wrap: on
line source
1 #ifndef _AL_EFFECT_H_2 #define _AL_EFFECT_H_4 #include "AL/al.h"6 #ifdef __cplusplus7 extern "C" {8 #endif10 enum {11 EAXREVERB = 0,12 REVERB,13 ECHO,14 MODULATOR,15 DEDICATED,17 MAX_EFFECTS18 };19 extern ALboolean DisabledEffects[MAX_EFFECTS];21 extern ALfloat ReverbBoost;22 extern ALboolean EmulateEAXReverb;24 typedef struct ALeffect25 {26 // Effect type (AL_EFFECT_NULL, ...)27 ALenum type;29 union {30 struct {31 // Shared Reverb Properties32 ALfloat Density;33 ALfloat Diffusion;34 ALfloat Gain;35 ALfloat GainHF;36 ALfloat DecayTime;37 ALfloat DecayHFRatio;38 ALfloat ReflectionsGain;39 ALfloat ReflectionsDelay;40 ALfloat LateReverbGain;41 ALfloat LateReverbDelay;42 ALfloat AirAbsorptionGainHF;43 ALfloat RoomRolloffFactor;44 ALboolean DecayHFLimit;46 // Additional EAX Reverb Properties47 ALfloat GainLF;48 ALfloat DecayLFRatio;49 ALfloat ReflectionsPan[3];50 ALfloat LateReverbPan[3];51 ALfloat EchoTime;52 ALfloat EchoDepth;53 ALfloat ModulationTime;54 ALfloat ModulationDepth;55 ALfloat HFReference;56 ALfloat LFReference;57 } Reverb;59 struct {60 ALfloat Delay;61 ALfloat LRDelay;63 ALfloat Damping;64 ALfloat Feedback;66 ALfloat Spread;67 } Echo;69 struct {70 ALfloat Frequency;71 ALfloat HighPassCutoff;72 ALint Waveform;73 } Modulator;75 struct {76 ALfloat Gain;77 } Dedicated;78 } Params;80 // Index to itself81 ALuint effect;82 } ALeffect;84 static __inline ALboolean IsReverbEffect(ALenum type)85 { return type == AL_EFFECT_REVERB || type == AL_EFFECT_EAXREVERB; }87 ALvoid ReleaseALEffects(ALCdevice *device);89 #ifdef __cplusplus90 }91 #endif93 #endif