From acfbf283b8e6a3fe9cfe0ec7400502cf1f343d93 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Tue, 26 May 2020 09:34:39 +0200 Subject: [PATCH] Add new property to buffer_config --- core-buffer/include/buffer_config.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core-buffer/include/buffer_config.hpp b/core-buffer/include/buffer_config.hpp index 0d23325..e1b87a6 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -54,6 +54,8 @@ namespace core_buffer { const std::string REPLAY_STREAM_IPC_URL = "ipc:///tmp/sf-replay-"; // How many frames to read at once from file. const size_t REPLAY_READ_BUFFER_SIZE = 100; + // How many slots to have in the internal queue between read and send. + const int REPLAY_FASTQUEUE_N_SLOTS = 2; // How many frames do we buffer in send. const size_t REPLAY_SNDHWM = 100;