satdump/src-core/common/dsp/buffer.cpp

9 lines
180 B
C++
Raw Normal View History

2023-01-31 21:11:17 +01:00
#define SATDUMP_DLL_EXPORT 1
#include "buffer.h"
namespace dsp
{
// 1MB buffers
2023-01-31 21:11:17 +01:00
SATDUMP_DLL int STREAM_BUFFER_SIZE = 1000000;
SATDUMP_DLL int RING_BUF_SZ = 1000000;
};