From d0c706ac7ca66ad0fb6a527e83fe91af3a7f3516 Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Fri, 14 Apr 2023 18:02:41 +0800 Subject: [PATCH] ehn(stream): increase the capacity of input queue to be 2000 items. --- source/libs/stream/src/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/stream/src/stream.c b/source/libs/stream/src/stream.c index 155ea3ba05..609976bf65 100644 --- a/source/libs/stream/src/stream.c +++ b/source/libs/stream/src/stream.c @@ -16,7 +16,7 @@ #include "streamInc.h" #include "ttimer.h" -#define STREAM_TASK_INPUT_QUEUEU_CAPACITY 2 +#define STREAM_TASK_INPUT_QUEUEU_CAPACITY 2000 int32_t streamInit() { int8_t old;