Changeset 316 in SHVCSoftware
- Timestamp:
- 2 Aug 2013, 22:03:13 (11 years ago)
- Location:
- branches/SHM-3.0-dev/source
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.0-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r313 r316 2191 2191 #if !AVC_BASE 2192 2192 printf("SVC_MVP:%d ", SVC_MVP ); 2193 printf("SVC_BL_CAND_INTRA:%d", SVC_BL_CAND_INTRA );2194 2193 #endif 2195 2194 #endif -
branches/SHM-3.0-dev/source/Lib/TLibCommon/TComDataCU.cpp
r313 r316 1658 1658 #endif 1659 1659 1660 #if SVC_BL_CAND_INTRA1661 if(m_layerId > 0)1662 {1663 UInt uiCUAddrBase, uiAbsPartAddrBase;1664 pcTempCU = getBaseColCU( uiAbsPartIdx, uiCUAddrBase, uiAbsPartAddrBase );1665 1666 if(pcTempCU->getPredictionMode( uiAbsPartAddrBase ) == MODE_INTRA )1667 {1668 Int iColBaseDir = pcTempCU->getLumaIntraDir( uiAbsPartAddrBase );1669 if( iColBaseDir != iAboveIntraDir && iColBaseDir != iLeftIntraDir && iAboveIntraDir != iLeftIntraDir)1670 {1671 uiIntraDirPred[0] = iColBaseDir;1672 uiIntraDirPred[1] = iLeftIntraDir;1673 uiIntraDirPred[2] = iAboveIntraDir;1674 if( piMode )1675 {1676 *piMode = 2;1677 }1678 uiPredNum = 3;1679 return uiPredNum;1680 }1681 else1682 {1683 iAboveIntraDir = (iColBaseDir == iLeftIntraDir) ? iAboveIntraDir : iLeftIntraDir;1684 iLeftIntraDir = iColBaseDir;1685 }1686 }1687 }1688 #endif1689 1690 1660 uiPredNum = 3; 1691 1661 if(iLeftIntraDir == iAboveIntraDir) -
branches/SHM-3.0-dev/source/Lib/TLibCommon/TypeDef.h
r313 r316 125 125 // Hooks 126 126 #define SVC_MVP 1 ///< motion hook for merge mode as an example 127 #if !AVC_BASE && !AVC_SYNTAX128 #define SVC_BL_CAND_INTRA 0 ///< Intra Base Mode Prediction hook as an example129 #endif130 127 131 128 #endif
Note: See TracChangeset for help on using the changeset viewer.