Add missing linear resampler to the option setting list
[openal-soft.git] / alc / bufferline.h
blob79f0996ccdb4ff83c5900d077fc4fe196a1e29a6
1 #ifndef ALC_BUFFERLINE_H
2 #define ALC_BUFFERLINE_H
4 #include <array>
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 */