From c803e2c16f8364b6b03144bc4e3013abf826f831 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Thu, 23 Apr 2020 09:49:14 +0200 Subject: [PATCH] Add rb size config parameter --- core-buffer/include/buffer_config.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core-buffer/include/buffer_config.hpp b/core-buffer/include/buffer_config.hpp index 6d6285b..6df2caa 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -18,6 +18,9 @@ namespace core_buffer { // How many frames do we read at once during replay. const size_t REPLAY_BLOCK_SIZE = 100; + + // Size of sf_buffer RB in elements. + const size_t BUFFER_RB_SIZE = 1000; } #endif //BUFFERCONFIG_HPP