aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/mixer_defs.h
blob: c1d90408aab4ad92d02408980c690e7362eec134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifndef MIXER_DEFS_H
#define MIXER_DEFS_H

#include "AL/alc.h"
#include "AL/al.h"
#include "alMain.h"

struct DirectParams;
struct SendParams;

struct HrtfParams;
struct HrtfState;

/* C resamplers */
void Resample_copy32_C(const ALfloat *src, ALuint frac, ALuint increment, ALfloat *restrict dst, ALuint dstlen);
void Resample_point32_C(const ALfloat *src, ALuint frac, ALuint increment, ALfloat *restrict dst, ALuint dstlen);
void Resample_lerp32_C(const ALfloat *src, ALuint frac, ALuint increment, ALfloat *restrict dst, ALuint dstlen);
void Resample_cubic32_C(const ALfloat *src, ALuint frac, ALuint increment, ALfloat *restrict dst, ALuint dstlen);


/* C mixers */
void MixDirect_Hrtf_C(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
                      ALuint Counter, ALuint Offset, const ALuint IrSize,
                      const struct HrtfParams *hrtfparams, struct HrtfState *hrtfstate,
                      ALuint OutPos, ALuint BufferSize);
void MixDirect_C(struct DirectParams *params,
                 ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *restrict data,
                 ALuint Counter, ALuint srcchan, ALuint OutPos, ALuint BufferSize);
void MixSend_C(struct SendParams*,const ALfloat*restrict,ALuint,ALuint);

/* SSE mixers */
void MixDirect_Hrtf_SSE(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
                        ALuint Counter, ALuint Offset, const ALuint IrSize,
                        const struct HrtfParams *hrtfparams, struct HrtfState *hrtfstate,
                        ALuint OutPos, ALuint BufferSize);
void MixDirect_SSE(struct DirectParams *params,
                   ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *restrict data,
                   ALuint Counter, ALuint srcchan, ALuint OutPos, ALuint BufferSize);
void MixSend_SSE(struct SendParams*,const ALfloat*restrict,ALuint,ALuint);

/* Neon mixers */
void MixDirect_Hrtf_Neon(ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *data,
                         ALuint Counter, ALuint Offset, const ALuint IrSize,
                         const struct HrtfParams *hrtfparams, struct HrtfState *hrtfstate,
                         ALuint OutPos, ALuint BufferSize);
void MixDirect_Neon(struct DirectParams *params,
                    ALfloat (*restrict OutBuffer)[BUFFERSIZE], const ALfloat *restrict data,
                    ALuint Counter, ALuint srcchan, ALuint OutPos, ALuint BufferSize);
void MixSend_Neon(struct SendParams*,const ALfloat*restrict,ALuint,ALuint);

#endif /* MIXER_DEFS_H */