Changeset 579 in SHVCSoftware for branches/SHM-5.0-dev/source/Lib/TLibDecoder
- Timestamp:
- 29 Jan 2014, 02:55:53 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-5.0-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r578 r579 1590 1590 for(Int i = 1; i < vps->getNumOutputLayerSets(); i++) 1591 1591 { 1592 #if CHANGE_NUMSUBDPB_IDX 1593 Int layerSetIdxForOutputLayerSet = vps->getOutputLayerSetIdx( i ); 1594 #endif 1592 1595 READ_FLAG( uiCode, "sub_layer_flag_info_present_flag[i]"); vps->setSubLayerFlagInfoPresentFlag( i, uiCode ? true : false ); 1593 1596 for(Int j = 0; j < vps->getMaxTLayers(); j++) … … 1610 1613 if( vps->getSubLayerDpbInfoPresentFlag(i, j) ) // If sub-layer DPB information is present 1611 1614 { 1615 #if CHANGE_NUMSUBDPB_IDX 1616 for(Int k = 0; k < vps->getNumSubDpbs(layerSetIdxForOutputLayerSet); k++) 1617 #else 1612 1618 for(Int k = 0; k < vps->getNumSubDpbs(i); k++) 1619 #endif 1613 1620 { 1614 1621 READ_UVLC( uiCode, "max_vps_dec_pic_buffering_minus1[i][k][j]" ); vps->setMaxVpsDecPicBufferingMinus1( i, k, j, uiCode );
Note: See TracChangeset for help on using the changeset viewer.