Changeset 800 in SHVCSoftware for branches/SHM-6-dev/source/Lib/TLibDecoder
- Timestamp:
- 11 Jun 2014, 19:20:48 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-6-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r799 r800 1353 1353 if( vps->getNumLayerSets() > 1 ) 1354 1354 { 1355 READ_UVLC( uiCode, "num_add_o utput_layer_sets" ); vps->setNumAddOutputLayerSets( uiCode );1355 READ_UVLC( uiCode, "num_add_olss" ); vps->setNumAddOutputLayerSets( uiCode ); 1356 1356 READ_CODE( 2, uiCode, "default_target_output_layer_idc" ); vps->setDefaultTargetOutputLayerIdc( uiCode ); 1357 1357 } … … 1364 1364 #endif 1365 1365 1366 // The value of num_add_o utput_layer_sets shall be in the range of 0 to 1023, inclusive.1366 // The value of num_add_olss shall be in the range of 0 to 1023, inclusive. 1367 1367 assert( vps->getNumAddOutputLayerSets() >= 0 && vps->getNumAddOutputLayerSets() < 1024 ); 1368 1368 … … 1836 1836 } 1837 1837 1838 // When not present, the value of num_add_o utput_layer_sets is inferred to be equal to 0.1839 // NumOutputLayerSets = num_add_o utput_layer_sets + vps_num_layer_sets_minus1 + 11838 // When not present, the value of num_add_olss is inferred to be equal to 0. 1839 // NumOutputLayerSets = num_add_olss + NumLayerSets 1840 1840 vps->setNumOutputLayerSets( vps->getNumLayerSets() ); 1841 1841
Note: See TracChangeset for help on using the changeset viewer.