From 72e87210ed05962d8da18ba197668111a0167e41 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Tue, 5 May 2020 10:42:48 +0200 Subject: [PATCH] Add stream read queue --- 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 6cb984b..cbda7c5 100644 --- a/core-buffer/include/buffer_config.hpp +++ b/core-buffer/include/buffer_config.hpp @@ -25,6 +25,9 @@ namespace core_buffer { // How many frames do we read at once during replay. const size_t REPLAY_READ_BLOCK_SIZE = 100; + // How long should the RECV queue be. + const size_t STREAM_RCV_QUEUE_SIZE = 100; + // Size of sf_buffer RB in elements. const size_t BUFFER_INTERNAL_QUEUE_SIZE = 1000;