Ignore:
Timestamp:
16 Jun 2013, 05:33:39 (11 years ago)
Author:
lg
Message:

1.IC and full pel depth coding are integrated and is guarded by Macro H_3D_IC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-0.3-dev2a/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r464 r468  
    14281428      rpcSlice->initWpScaling();
    14291429    }
     1430#if H_3D_IC
     1431    else if( rpcSlice->getViewIndex() && ( rpcSlice->getSliceType() == P_SLICE || rpcSlice->getSliceType() == B_SLICE ) )
     1432    {
     1433      UInt uiCodeTmp = 0;
     1434
     1435      READ_FLAG ( uiCodeTmp, "slice_ic_enable_flag" );
     1436      rpcSlice->setApplyIC( uiCodeTmp );
     1437
     1438      if ( uiCodeTmp )
     1439      {
     1440        READ_FLAG ( uiCodeTmp, "ic_skip_mergeidx0" );
     1441        rpcSlice->setIcSkipParseFlag( uiCodeTmp );
     1442      }
     1443    }
     1444#endif
    14301445    if (!rpcSlice->isIntra())
    14311446    {
     
    18841899#endif
    18851900
     1901#if H_3D_IC
     1902Void TDecCavlc::parseICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
     1903{
     1904  assert(0);
     1905}
     1906#endif
     1907
    18861908// ====================================================================================================================
    18871909// Protected member functions
Note: See TracChangeset for help on using the changeset viewer.