bufferline.h 379 B

1234567891011121314
  1. #ifndef CORE_BUFFERLINE_H
  2. #define CORE_BUFFERLINE_H
  3. #include <array>
  4. /* Size for temporary storage of buffer data, in floats. Larger values need
  5. * more memory and are harder on cache, while smaller values may need more
  6. * iterations for mixing.
  7. */
  8. constexpr int BufferLineSize{1024};
  9. using FloatBufferLine = std::array<float,BufferLineSize>;
  10. #endif /* CORE_BUFFERLINE_H */