Make the filter history buffer size flexible
[openal-soft.git] / OpenAL32 / Include / alSource.h
blob2bd7aac276f75ff879ca0392708765af86889ba5
1 #ifndef _AL_SOURCE_H_
2 #define _AL_SOURCE_H_
4 #define AL_NUM_SOURCE_PARAMS 128
6 #define MAX_SENDS 2
8 #include "alFilter.h"
9 #include "alu.h"
10 #include "AL/al.h"
12 #define AL_DIRECT_FILTER 0x20005
13 #define AL_AUXILIARY_SEND_FILTER 0x20006
14 #define AL_AIR_ABSORPTION_FACTOR 0x20007
15 #define AL_ROOM_ROLLOFF_FACTOR 0x20008
16 #define AL_CONE_OUTER_GAINHF 0x20009
17 #define AL_DIRECT_FILTER_GAINHF_AUTO 0x2000A
18 #define AL_AUXILIARY_SEND_FILTER_GAIN_AUTO 0x2000B
19 #define AL_AUXILIARY_SEND_FILTER_GAINHF_AUTO 0x2000C
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
25 typedef struct ALbufferlistitem
27 ALuint buffer;
28 ALuint bufferstate;
29 ALuint flag;
30 struct ALbufferlistitem *next;
31 } ALbufferlistitem;
33 typedef struct ALsource
35 ALfloat flPitch;
36 ALfloat flGain;
37 ALfloat flOuterGain;
38 ALfloat flMinGain;
39 ALfloat flMaxGain;
40 ALfloat flInnerAngle;
41 ALfloat flOuterAngle;
42 ALfloat flRefDistance;
43 ALfloat flMaxDistance;
44 ALfloat flRollOffFactor;
45 ALfloat vPosition[3];
46 ALfloat vVelocity[3];
47 ALfloat vOrientation[3];
48 ALboolean bHeadRelative;
49 ALboolean bLooping;
50 ALenum DistanceModel;
52 ALuint ulBufferID;
54 ALboolean inuse;
55 ALboolean play;
56 ALenum state;
57 ALuint position;
58 ALuint position_fraction;
60 struct ALbufferlistitem *queue; // Linked list of buffers in queue
61 ALuint BuffersInQueue; // Number of buffers in queue
63 ALuint TotalBufferDataSize; // Total amount of data contained in the buffers queued for this source
64 ALuint BuffersPlayed; // Number of buffers played on this loop
66 ALfilter DirectFilter;
68 struct {
69 struct ALeffectslot *Slot;
70 ALfilter WetFilter;
71 FILTER iirFilter;
72 ALfloat history[2];
73 } Send[MAX_SENDS];
75 ALboolean DryGainHFAuto;
76 ALboolean WetGainAuto;
77 ALboolean WetGainHFAuto;
78 ALfloat OuterGainHF;
80 FILTER iirFilter;
81 ALfloat history[OUTPUTCHANNELS*2];
83 ALfloat AirAbsorptionFactor;
85 ALfloat RoomRolloffFactor;
87 ALfloat DopplerFactor;
89 // Index to itself
90 ALuint source;
92 ALint lOffset;
93 ALint lOffsetType;
95 // Source Type (Static, Streaming, or Undetermined)
96 ALint lSourceType;
98 // Current gains, which are ramped while mixed
99 ALfloat DryGains[OUTPUTCHANNELS];
100 ALfloat WetGains[MAX_SENDS];
101 ALboolean FirstStart;
103 struct ALsource *next;
104 } ALsource;
106 ALvoid ReleaseALSources(ALCcontext *Context);
108 #ifdef __cplusplus
110 #endif
112 #endif