diff --git a/source/Lib/DecoderLib/DecLib.cpp b/source/Lib/DecoderLib/DecLib.cpp index a9296e7d78d39e0dd9a6b605ce58e0a3fd01aef5..f85c2988826937656a9cbf39647b836243ff8ca2 100644 --- a/source/Lib/DecoderLib/DecLib.cpp +++ b/source/Lib/DecoderLib/DecLib.cpp @@ -1806,8 +1806,8 @@ void DecLib::xCheckParameterSetConstraints(const int layerId) { for (int j = 0; j < m_uiSliceSegmentIdx; j++) { - Slice* PreSlice = m_pcPic->slices[j]; - CHECK( (PreSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || PreSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP || PreSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA), "mixed IRAP and non-IRAP NAL units in the picture when sps_video_parameter_set_id is greater than 0 and vps_max_tid_il_ref_pics_plus1[i][j] is equal to 0"); + Slice* preSlice = m_pcPic->slices[j]; + CHECK( (preSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || preSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP || preSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA), "mixed IRAP and non-IRAP NAL units in the picture when sps_video_parameter_set_id is greater than 0 and vps_max_tid_il_ref_pics_plus1[i][j] is equal to 0"); } } #endif