From 88f2544028df2967d239f99d8ba665456420c638 Mon Sep 17 00:00:00 2001 From: Xiang Ma <maxiang6@huawei.com> Date: Tue, 7 Jan 2020 00:29:28 +0800 Subject: [PATCH] modify the hint info at least one value of j => There has to be at least one value of j ... --- source/Lib/DecoderLib/VLCReader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Lib/DecoderLib/VLCReader.cpp b/source/Lib/DecoderLib/VLCReader.cpp index 3d88ed30e..29f50533b 100644 --- a/source/Lib/DecoderLib/VLCReader.cpp +++ b/source/Lib/DecoderLib/VLCReader.cpp @@ -2260,7 +2260,7 @@ void HLSyntaxReader::parseVPS(VPS* pcVPS) } } #if JVET_P0135_VPS_DIRECT_DEPEN_FLAG_CONSRAINT - CHECK(sumUiCode == 0, "at least one value of j such that the value of vps_direct_dependency_flag[ i ][ j ] is equal to 1,when vps_independent_layer_flag[ i ] is equal to 0 "); + CHECK(sumUiCode == 0, "There has to be at least one value of j such that the value of vps_direct_dependency_flag[ i ][ j ] is equal to 1,when vps_independent_layer_flag[ i ] is equal to 0 "); #endif } } -- GitLab