From 9ecd495f53dbe37467d0145bfcb0adc0b88e8ca4 Mon Sep 17 00:00:00 2001 From: pigeatgarlic <64737125+pigeatgarlic@users.noreply.github.com> Date: Sat, 6 Sep 2025 21:34:07 +0700 Subject: [PATCH] sync shm --- smemory.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/smemory.h b/smemory.h index c75727d0..10b43a55 100644 --- a/smemory.h +++ b/smemory.h @@ -7,7 +7,7 @@ #define TAG_SIZE 32 * 1024 #define MEDIA_PACKET_SIZE 5 * 1024 * 1024 -#define DATA_PACKET_SIZE 1024 +#define DATA_PACKET_SIZE 5 * 1024 typedef struct { int active; @@ -61,6 +61,7 @@ typedef struct _MediaMemory { typedef struct _DataMemory { DataQueue audio; + DataQueue session; HIDQueue data; char worker_info[TAG_SIZE]; int worker_info_size;