Skip to content
Snippets Groups Projects
Commit 840e1cbc authored by Nikolay Shostak's avatar Nikolay Shostak
Browse files

Invert CHECK condition

parent ab2789d4
No related branches found
No related tags found
No related merge requests found
......@@ -265,7 +265,7 @@ uint32_t SEIMultiviewAcquisitionInfo::xGetSyntaxElementLen( int expo, int prec,
assert( val >= 0 );
const uint64_t MAX_VAL = (1llu << len) - 1;
CHECK( val <= MAX_VAL, "Value is too big" );
CHECK( val > MAX_VAL, "Value is too big" );
return len;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment