From d5abc3eb17a9603dcc9a8c46402dd935a2188242 Mon Sep 17 00:00:00 2001 From: Marko Viitanen Date: Tue, 4 May 2021 12:17:59 +0300 Subject: [PATCH] [LMCS] fix ReshapeCW.binCW array size --- src/reshape.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reshape.h b/src/reshape.h index d7b0c3f4..30f0f6d6 100644 --- a/src/reshape.h +++ b/src/reshape.h @@ -63,7 +63,7 @@ typedef struct SliceReshapeInfo { typedef struct ReshapeCW { - uint32_t* binCW; + uint32_t binCW[3]; int updateCtrl; int adpOption; uint32_t initialCW;