- Timestamp:
- 17 Oct 2013, 11:52:24 (11 years ago)
- Location:
- branches/SHM-3.1-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/Lib/TLibCommon/TypeDef.h
r435 r439 158 158 #define M0043_LAYERS_PRESENT_SEI 0 ///< JCTVC-M0043: add layers present SEI. Macro shall be equal to 0 according to the JCTVC-N0174 discussion. The code is to be removed. 159 159 #define N0383_IL_CONSTRAINED_TILE_SETS_SEI 1 160 #define N0065_LAYER_POC_ALIGNMENT 1 160 161 #else 161 162 #define SYNTAX_OUTPUT 0 -
branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r431 r439 1610 1610 rpcSlice->setRPS(rps); 1611 1611 } 1612 #if N0065_LAYER_POC_ALIGNMENT 1613 if( rpcSlice->getLayerId() > 0 || !rpcSlice->getIdrPicFlag() ) 1614 #else 1612 1615 else 1616 #endif 1613 1617 { 1614 1618 READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb"); … … 1640 1644 rpcSlice->setPOC (iPOCmsb+iPOClsb); 1641 1645 1646 #if N0065_LAYER_POC_ALIGNMENT 1647 if( !rpcSlice->getIdrPicFlag() ) 1648 { 1649 #endif 1642 1650 TComReferencePictureSet* rps; 1643 1651 rps = rpcSlice->getLocalRPS(); … … 1771 1779 rpcSlice->setEnableTMVPFlag(false); 1772 1780 } 1781 #if N0065_LAYER_POC_ALIGNMENT 1782 } 1783 #endif 1773 1784 } 1774 1785 -
branches/SHM-3.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r431 r439 1275 1275 // colour_plane_id u(2) 1276 1276 1277 #if N0065_LAYER_POC_ALIGNMENT 1278 if( pcSlice->getLayerId() > 0 || !pcSlice->getIdrPicFlag() ) 1279 #else 1277 1280 if( !pcSlice->getIdrPicFlag() ) 1281 #endif 1278 1282 { 1279 1283 #if POC_RESET_FLAG … … 1291 1295 #endif 1292 1296 WRITE_CODE( picOrderCntLSB, pcSlice->getSPS()->getBitsForPOC(), "pic_order_cnt_lsb"); 1297 1298 #if N0065_LAYER_POC_ALIGNMENT 1299 if( !pcSlice->getIdrPicFlag() ) 1300 { 1301 #endif 1293 1302 TComReferencePictureSet* rps = pcSlice->getRPS(); 1294 1303 … … 1405 1414 WRITE_FLAG( pcSlice->getEnableTMVPFlag() ? 1 : 0, "slice_temporal_mvp_enable_flag" ); 1406 1415 } 1416 #if N0065_LAYER_POC_ALIGNMENT 1417 } 1418 #endif 1407 1419 } 1408 1420
Note: See TracChangeset for help on using the changeset viewer.