Changeset 399 in SHVCSoftware for branches/SHM-3.1-dev/source/Lib/TLibDecoder
- Timestamp:
- 17 Sep 2013, 19:39:11 (11 years ago)
- Location:
- branches/SHM-3.1-dev/source/Lib/TLibDecoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r398 r399 1003 1003 for(i = 0; i < vps->getMaxLayers() - 1; i++) 1004 1004 { 1005 READ_CODE( 3, uiCode, "max_ sublayer_for_ilp_plus1[i]" ); vps->setMaxSublayerForIlpPlus1(i, uiCode);1005 READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i]" ); vps->setMaxTidIlRefPicsPlus1(i, uiCode); 1006 1006 #if N0120_MAX_TID_REF_CFG 1007 1007 assert( uiCode <= vps->getMaxTLayers()); … … 1015 1015 for(i = 0; i < vps->getMaxLayers() - 1; i++) 1016 1016 { 1017 vps->setMax SublayerForIlpPlus1(i, 7);1017 vps->setMaxTidIlRefPicsPlus1(i, 7); 1018 1018 } 1019 1019 } … … 1021 1021 for(i = 0; i < vps->getMaxLayers() - 1; i++) 1022 1022 { 1023 READ_CODE( 3, uiCode, "max_ sublayer_for_ilp_plus1[i]" ); vps->setMaxSublayerForIlpPlus1(i, uiCode);1023 READ_CODE( 3, uiCode, "max_tid_il_ref_pics_plus1[i]" ); vps->setMaxTidIlRefPicsPlus1(i, uiCode); 1024 1024 assert( uiCode <= vps->getMaxTLayers() ); 1025 1025 } -
branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecTop.cpp
r389 r399 467 467 468 468 Int remainingInterLayerReferencesFlag = 0; 469 if ( currTid <= pcSlice->getVPS()->getMax SublayerForIlpPlus1(latestDecLayerId) - 1 )469 if ( currTid <= pcSlice->getVPS()->getMaxTidIlRefPicsPlus1(latestDecLayerId) - 1 ) 470 470 { 471 471 for ( Int j = latestDecIdx + 1; j < numTargetDecLayers; j++ )
Note: See TracChangeset for help on using the changeset viewer.