18 #define M_PI 3.14159265358979323846 /* pi */
19 #define M_PI_2 1.57079632679489661923 /* pi/2 */
22 #define F_PI ((float)M_PI)
23 #define F_PI_2 ((float)M_PI_2)
26 #define aluPow(x,y) (powf((x),(y)))
28 #define aluPow(x,y) ((ALfloat)pow((double)(x),(double)(y)))
32 #define aluSqrt(x) (sqrtf((x)))
34 #define aluSqrt(x) ((ALfloat)sqrt((double)(x)))
38 #define aluCos(x) (cosf((x)))
40 #define aluCos(x) ((ALfloat)cos((double)(x)))
44 #define aluSin(x) (sinf((x)))
46 #define aluSin(x) ((ALfloat)sin((double)(x)))
50 #define aluAcos(x) (acosf((x)))
52 #define aluAcos(x) ((ALfloat)acos((double)(x)))
56 #define aluAsin(x) (asinf((x)))
58 #define aluAsin(x) ((ALfloat)asin((double)(x)))
62 #define aluAtan(x) (atanf((x)))
64 #define aluAtan(x) ((ALfloat)atan((double)(x)))
68 #define aluAtan2(x,y) (atan2f((x),(y)))
70 #define aluAtan2(x,y) ((ALfloat)atan2((double)(x),(double)(y)))
74 #define aluFabs(x) (fabsf((x)))
76 #define aluFabs(x) ((ALfloat)fabs((double)(x)))
80 #define aluLog10(x) (log10f((x)))
82 #define aluLog10(x) ((ALfloat)log10((double)(x)))
86 #define aluFloor(x) (floorf((x)))
88 #define aluFloor(x) ((ALfloat)floor((double)(x)))
91 #define QUADRANT_NUM 128
92 #define LUT_NUM (4 * QUADRANT_NUM)
101 typedef ALvoid (*MixerFunc
)(struct ALsource
*self
, ALCdevice
*Device
,
102 const ALvoid
*RESTRICT data
,
103 ALuint
*DataPosInt
, ALuint
*DataPosFrac
,
104 ALuint OutPos
, ALuint SamplesToDo
,
114 RESAMPLER_DEFAULT
= LINEAR_RESAMPLER
132 InverseDistanceClamped
= AL_INVERSE_DISTANCE_CLAMPED
,
133 LinearDistanceClamped
= AL_LINEAR_DISTANCE_CLAMPED
,
134 ExponentDistanceClamped
= AL_EXPONENT_DISTANCE_CLAMPED
,
135 InverseDistance
= AL_INVERSE_DISTANCE
,
136 LinearDistance
= AL_LINEAR_DISTANCE
,
137 ExponentDistance
= AL_EXPONENT_DISTANCE
,
138 DisableDistance
= AL_NONE
141 #define BUFFERSIZE 4096
143 #define FRACTIONBITS (14)
144 #define FRACTIONONE (1<<FRACTIONBITS)
145 #define FRACTIONMASK (FRACTIONONE-1)
147 /* Size for temporary stack storage of buffer data. Larger values need more
148 * stack, while smaller values may need more iterations. The value needs to be
149 * a sensible size, however, as it constrains the max stepping value used for
151 * The mixer requires being able to do two samplings per mixing loop. A 16KB
152 * buffer can hold 512 sample frames for a 7.1 float buffer. With the cubic
153 * resampler (which requires 3 padding sample frames), this limits the maximum
154 * step to about 508. This means that buffer_freq*source_pitch cannot exceed
155 * device_freq*508 for an 8-channel 32-bit buffer. */
156 #ifndef STACK_DATA_SIZE
157 #define STACK_DATA_SIZE 16384
161 static __inline ALfloat
minf(ALfloat a
, ALfloat b
)
162 { return ((a
> b
) ? b
: a
); }
163 static __inline ALfloat
maxf(ALfloat a
, ALfloat b
)
164 { return ((a
> b
) ? a
: b
); }
165 static __inline ALfloat
clampf(ALfloat val
, ALfloat min
, ALfloat max
)
166 { return minf(max
, maxf(min
, val
)); }
168 static __inline ALuint
minu(ALuint a
, ALuint b
)
169 { return ((a
> b
) ? b
: a
); }
170 static __inline ALuint
maxu(ALuint a
, ALuint b
)
171 { return ((a
> b
) ? a
: b
); }
172 static __inline ALuint
clampu(ALuint val
, ALuint min
, ALuint max
)
173 { return minu(max
, maxu(min
, val
)); }
175 static __inline ALint
mini(ALint a
, ALint b
)
176 { return ((a
> b
) ? b
: a
); }
177 static __inline ALint
maxi(ALint a
, ALint b
)
178 { return ((a
> b
) ? a
: b
); }
179 static __inline ALint
clampi(ALint val
, ALint min
, ALint max
)
180 { return mini(max
, maxi(min
, val
)); }
183 static __inline ALfloat
lerp(ALfloat val1
, ALfloat val2
, ALfloat mu
)
185 return val1
+ (val2
-val1
)*mu
;
187 static __inline ALfloat
cubic(ALfloat val0
, ALfloat val1
, ALfloat val2
, ALfloat val3
, ALfloat mu
)
190 ALfloat a0
= -0.5f
*val0
+ 1.5f
*val1
+ -1.5f
*val2
+ 0.5f
*val3
;
191 ALfloat a1
= val0
+ -2.5f
*val1
+ 2.0f
*val2
+ -0.5f
*val3
;
192 ALfloat a2
= -0.5f
*val0
+ 0.5f
*val2
;
195 return a0
*mu
*mu2
+ a1
*mu2
+ a2
*mu
+ a3
;
198 ALvoid
aluInitPanning(ALCdevice
*Device
);
199 ALint
aluCart2LUTpos(ALfloat re
, ALfloat im
);
201 ALvoid
CalcSourceParams(struct ALsource
*ALSource
, const ALCcontext
*ALContext
);
202 ALvoid
CalcNonAttnSourceParams(struct ALsource
*ALSource
, const ALCcontext
*ALContext
);
204 MixerFunc
SelectMixer(struct ALbuffer
*Buffer
, enum Resampler Resampler
);
205 MixerFunc
SelectHrtfMixer(struct ALbuffer
*Buffer
, enum Resampler Resampler
);
207 ALvoid
MixSource(struct ALsource
*Source
, ALCdevice
*Device
, ALuint SamplesToDo
);
209 ALvoid
aluMixData(ALCdevice
*device
, ALvoid
*buffer
, ALsizei size
);
210 ALvoid
aluHandleDisconnect(ALCdevice
*device
);
212 extern ALfloat ConeScale
;
213 extern ALfloat ZScale
;