From c9913d24b5355d80910738b46689a005c289f92b Mon Sep 17 00:00:00 2001 From: Kammachi Sreedhar <kashyap.kammachi-sreedhar@nokia.com> Date: Tue, 15 Sep 2020 17:02:14 +0300 Subject: [PATCH] bitstream extractor bugfix --- source/App/BitstreamExtractorApp/BitstreamExtractorApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/App/BitstreamExtractorApp/BitstreamExtractorApp.cpp b/source/App/BitstreamExtractorApp/BitstreamExtractorApp.cpp index 7cc1ab1103..35436022bf 100644 --- a/source/App/BitstreamExtractorApp/BitstreamExtractorApp.cpp +++ b/source/App/BitstreamExtractorApp/BitstreamExtractorApp.cpp @@ -643,7 +643,7 @@ uint32_t BitstreamExtractorApp::decode() // Remove NAL units with nal_unit_type not equal to any of VPS_NUT, DPS_NUT, and EOB_NUT and with nuh_layer_id not included in the list LayerIdInOls[targetOlsIdx]. NalUnitType t = nalu.m_nalUnitType; #if JVET_S0163_ON_TARGETOLS_SUBLAYERS - bool isSpecialNalTypes = t == NAL_UNIT_OPI || NAL_UNIT_VPS || t == NAL_UNIT_DCI || t == NAL_UNIT_EOB; + bool isSpecialNalTypes = t == NAL_UNIT_OPI || t == NAL_UNIT_VPS || t == NAL_UNIT_DCI || t == NAL_UNIT_EOB; #else bool isSpecialNalTypes = t == NAL_UNIT_VPS || t == NAL_UNIT_DCI || t == NAL_UNIT_EOB; #endif -- GitLab