diff options
author | Chris Robinson <[email protected]> | 2020-11-27 19:18:17 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-11-27 19:18:17 -0800 |
commit | b0919240ab73f2e340f26a913baf7524b35a4c85 (patch) | |
tree | 8a5bf22bf62fe9582af3d930c54f531c16e6b6f1 /alc/bufferline.h | |
parent | d86046d522f45804e28462db0c0e8e1a34a1cfe7 (diff) |
Move some sources to a separate directory
To begin separating the ALC interfaces from internal ones.
Diffstat (limited to 'alc/bufferline.h')
-rw-r--r-- | alc/bufferline.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/alc/bufferline.h b/alc/bufferline.h deleted file mode 100644 index 79f0996c..00000000 --- a/alc/bufferline.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef ALC_BUFFERLINE_H -#define ALC_BUFFERLINE_H - -#include <array> - -/* Size for temporary storage of buffer data, in floats. Larger values need - * more memory, while smaller values may need more iterations. The value needs - * to be a sensible size, however, as it constrains the max stepping value used - * for mixing, as well as the maximum number of samples per mixing iteration. - */ -#define BUFFERSIZE 1024 - -using FloatBufferLine = std::array<float,BUFFERSIZE>; - -#endif /* ALC_BUFFERLINE_H */ |