From 6d8405414ef4f72f19dcc201c1e57c2b6bbdf85e Mon Sep 17 00:00:00 2001
From: Hendry <hendry197@gmail.com>
Date: Mon, 21 Aug 2023 17:31:51 -0700
Subject: [PATCH] Correcting a type in return value. supposed to be true but
 was written as false

---
 source/Lib/DecoderLib/SEIread.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/Lib/DecoderLib/SEIread.cpp b/source/Lib/DecoderLib/SEIread.cpp
index 6faa3c3fd..b96127e72 100644
--- a/source/Lib/DecoderLib/SEIread.cpp
+++ b/source/Lib/DecoderLib/SEIread.cpp
@@ -262,7 +262,7 @@ bool SEIReader::xCheckNnpfcUpdatePresentSeiMsg(uint32_t seiId, const std::vector
     {
       count++;
       if (count == 2)
-        return false;
+        return true;
     }
   }
   return false;
-- 
GitLab