Changeset 316 in SHVCSoftware


Ignore:
Timestamp:
2 Aug 2013, 22:03:13 (11 years ago)
Author:
seregin
Message:

remove SVC_BL_CAND_INTRA

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  
    21912191#if !AVC_BASE
    21922192  printf("SVC_MVP:%d ", SVC_MVP );
    2193   printf("SVC_BL_CAND_INTRA:%d", SVC_BL_CAND_INTRA );
    21942193#endif
    21952194#endif
  • branches/SHM-3.0-dev/source/Lib/TLibCommon/TComDataCU.cpp

    r313 r316  
    16581658#endif
    16591659 
    1660 #if SVC_BL_CAND_INTRA
    1661   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       else
    1682       {
    1683         iAboveIntraDir = (iColBaseDir == iLeftIntraDir) ? iAboveIntraDir : iLeftIntraDir;
    1684         iLeftIntraDir  = iColBaseDir;
    1685       }
    1686     }
    1687   }
    1688 #endif
    1689  
    16901660  uiPredNum = 3;
    16911661  if(iLeftIntraDir == iAboveIntraDir)
  • branches/SHM-3.0-dev/source/Lib/TLibCommon/TypeDef.h

    r313 r316  
    125125// Hooks
    126126#define SVC_MVP                          1      ///< motion hook for merge mode as an example
    127 #if !AVC_BASE && !AVC_SYNTAX
    128 #define SVC_BL_CAND_INTRA                0      ///< Intra Base Mode Prediction hook as an example
    129 #endif
    130127
    131128#endif
Note: See TracChangeset for help on using the changeset viewer.