From 83566ab68f98a4c05303386ae13cf1552e28b1cb Mon Sep 17 00:00:00 2001 From: rigaya Date: Fri, 22 Nov 2024 18:00:52 +0900 Subject: [PATCH] =?UTF-8?q?conv=5Fbit=5Fdepth=5Frsft=5Fadd=5F=E3=81=AE?= =?UTF-8?q?=E4=B8=8D=E5=85=B7=E5=90=88=E3=82=92=E4=BF=AE=E6=AD=A3=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NVEncCore/convert_csp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NVEncCore/convert_csp.h b/NVEncCore/convert_csp.h index 2c36c6f4..63e2719a 100644 --- a/NVEncCore/convert_csp.h +++ b/NVEncCore/convert_csp.h @@ -953,7 +953,7 @@ static int conv_bit_depth_rsft_() { template CU_DEV_HOST_CODE static int conv_bit_depth_rsft_add_() { - const int rsft = conv_bit_depth_rsft_(); + const int rsft = conv_bit_depth_rsft_(); return (rsft - 1 >= 0) ? 1 << (rsft - 1) : 0; }