1 #ifndef ALC_BUFFERLINE_H
2 #define ALC_BUFFERLINE_H
6 /* Size for temporary storage of buffer data, in floats. Larger values need
7 * more memory, while smaller values may need more iterations. The value needs
8 * to be a sensible size, however, as it constrains the max stepping value used
9 * for mixing, as well as the maximum number of samples per mixing iteration.
11 #define BUFFERSIZE 1024
13 using FloatBufferLine
= std::array
<float,BUFFERSIZE
>;
15 #endif /* ALC_BUFFERLINE_H */