Skip to content
Snippets Groups Projects
Commit a3827a06 authored by Karsten Suehring's avatar Karsten Suehring
Browse files

Merge branch 'one_slice_per_pic_constraint_flag' into 'master'

fix check for one_slice_per_pic_constraint_flag

See merge request !1408
parents 18a487a8 36a5bf7d
No related branches found
No related tags found
1 merge request!1408fix check for one_slice_per_pic_constraint_flag
Pipeline #4259 passed
......@@ -1501,7 +1501,7 @@ void DecLib::xCheckParameterSetConstraints(const int layerId)
}
if (sps->getProfileTierLevel()->getConstraintInfo()->getOneSlicePerPicConstraintFlag())
{
CHECK( pps->getNumSlicesInPic() != 0, "When one_slice_per_pic_constraint_flag is equal to 1, each picture shall contain only one slice");
CHECK( pps->getNumSlicesInPic() != 1, "When one_slice_per_pic_constraint_flag is equal to 1, each picture shall contain only one slice");
}
#endif
......
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