aboutsummaryrefslogtreecommitdiffstats
path: root/core/bufferline.h
blob: 503e208d4cd83583d48016e8d2e75c79047e400c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef CORE_BUFFERLINE_H
#define CORE_BUFFERLINE_H

#include <array>

/* Size for temporary storage of buffer data, in floats. Larger values need
 * more memory and are harder on cache, while smaller values may need more
 * iterations for mixing.
 */
constexpr int BufferLineSize{1024};

using FloatBufferLine = std::array<float,BufferLineSize>;

#endif /* CORE_BUFFERLINE_H */