Change the buffer write size to something small

This commit is contained in:
2020-04-29 14:00:50 +02:00
parent 53f00b423c
commit d9802ee91f
+1 -1
View File
@@ -35,7 +35,7 @@ namespace core_buffer {
const int WRITER_RB_BUFFER_SLOTS = 5;
// How many frames to buffer before flushing to file.
const size_t WRITER_BUFFER_SIZE = 100;
const size_t WRITER_BUFFER_SIZE = 2;
// Number of pulses between each statistics print out.
const size_t STATS_MODULO = 100;