- Timestamp:
- 15 Nov 2013, 20:48:18 (11 years ago)
- Location:
- branches/SHM-4.0-dev/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-4.0-dev/source/Lib/TLibCommon/TypeDef.h
r475 r477 66 66 #define ILP_SSH_SIG 1 ///< JCTVC-N0195 proposal 2, JCTVC-N0118: add presence flag in VPS ext to condition inter-layer prediction signaling in slice segment header 67 67 #if ILP_SSH_SIG 68 #define ILP_SSH_SIG_FIX 1 68 #define ILP_SSH_SIG_FIX 1 ///< fix for SHM ticket #5 69 69 #endif 70 70 #define SPL_FLG_CHK 1 ///< JCTVC-N0195 proposal 5, JCTVC-N0085: constrain sum of lengths to be less than or equal to 6 … … 152 152 #define N0065_LAYER_POC_ALIGNMENT 1 153 153 154 #define O0215_PHASE_ALIGNMENT 1 // JCTVC_O0215: signal a flag to specify phase alignment case, 0: zero-position-aligned, 1: central-position-aligned, 155 #define AUXILIARY_PICTURES 1 154 #define O0215_PHASE_ALIGNMENT 1 ///< JCTVC_O0215: signal a flag to specify phase alignment case, 0: zero-position-aligned, 1: central-position-aligned, 155 #define AUXILIARY_PICTURES 1 ///< JCTVC-O0041: auxiliary picture layers 156 157 #define SHM_FIX7 1 ///< fix for SHVC WD ticket #7 156 158 157 159 #else -
branches/SHM-4.0-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r476 r477 1585 1585 1586 1586 #if N0065_LAYER_POC_ALIGNMENT 1587 #if SHM_FIX7 1588 } 1589 #endif 1587 1590 if( !rpcSlice->getIdrPicFlag() ) 1588 1591 { … … 1675 1678 } 1676 1679 1680 #if SHM_FIX7 1681 Int pocLTCurr = rpcSlice->getPOC() - deltaPocMSBCycleLT * maxPicOrderCntLSB - sps->getBitsForPOC() + pocLsbLt; 1682 #else 1677 1683 Int pocLTCurr = rpcSlice->getPOC() - deltaPocMSBCycleLT * maxPicOrderCntLSB 1678 1684 - iPOClsb + pocLsbLt; 1685 #endif 1679 1686 rps->setPOC (j, pocLTCurr); 1680 1687 rps->setDeltaPOC(j, - rpcSlice->getPOC() + pocLTCurr); … … 1719 1726 rpcSlice->setEnableTMVPFlag(false); 1720 1727 } 1721 #if N0065_LAYER_POC_ALIGNMENT 1728 #if N0065_LAYER_POC_ALIGNMENT && !SHM_FIX7 1722 1729 } 1723 1730 #endif -
branches/SHM-4.0-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r475 r477 1255 1255 1256 1256 #if N0065_LAYER_POC_ALIGNMENT 1257 #if SHM_FIX7 1258 } 1259 #endif 1257 1260 if( !pcSlice->getIdrPicFlag() ) 1258 1261 { … … 1372 1375 WRITE_FLAG( pcSlice->getEnableTMVPFlag() ? 1 : 0, "slice_temporal_mvp_enable_flag" ); 1373 1376 } 1374 #if N0065_LAYER_POC_ALIGNMENT 1377 #if N0065_LAYER_POC_ALIGNMENT && !SHM_FIX7 1375 1378 } 1376 1379 #endif
Note: See TracChangeset for help on using the changeset viewer.