Changeset 117 in 3DVCSoftware for branches/HTM-4.0-Orange/source/Lib/TLibCommon


Ignore:
Timestamp:
30 Aug 2012, 16:24:21 (12 years ago)
Author:
tech
Message:

Cleanup

Location:
branches/HTM-4.0-Orange/source/Lib/TLibCommon
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-4.0-Orange/source/Lib/TLibCommon/TComDataCU.cpp

    r112 r117  
    152152#endif
    153153#endif
    154 #if OL_DEPTHLIMIT
     154#if OL_DEPTHLIMIT_A0044
    155155  //add a variable to store the partition information
    156   //a 2D array in part_symbol,uidepth format
     156  //a 2D array in part_symbol, uidepth format
    157157  //initialize m_partInfo to OL_END_CU
    158         for (int i=0; i < OL_PART_BUF_SIZE; i++)
    159         {
    160                 for (int j=0; j < 2; j++)
    161                         m_uiPartInfo[i][j] = OL_END_CU;
    162         }
     158  for (Int i=0; i < OL_PART_BUF_SIZE; i++)
     159  {
     160    for (Int j=0; j < 2; j++)
     161    {
     162      m_uiPartInfo[i][j] = OL_END_CU;
     163    }
     164  }
    163165#endif
    164166}
     
    466468Void TComDataCU::initCU( TComPic* pcPic, UInt iCUAddr )
    467469{
    468 #if OL_DEPTHLIMIT
     470#if OL_DEPTHLIMIT_A0044
    469471  TComDataCU* pcCU     = pcPic->getCU(iCUAddr);
    470472#endif
     
    685687    m_apcCUColocated[1] = getSlice()->getRefPic( REF_PIC_LIST_1, 0)->getCU( m_uiCUAddr );
    686688  }
    687 #if OL_DEPTHLIMIT
     689#if OL_DEPTHLIMIT_A0044
    688690  setPartDumpFlag (pcCU->getPartDumpFlag());
    689691#endif
     
    10171019  memcpy(m_uiSliceStartCU,pcCU->m_uiSliceStartCU+uiPartOffset,sizeof(UInt)*m_uiNumPartition);
    10181020  memcpy(m_uiEntropySliceStartCU,pcCU->m_uiEntropySliceStartCU+uiPartOffset,sizeof(UInt)*m_uiNumPartition);
    1019 #if OL_DEPTHLIMIT
     1021#if OL_DEPTHLIMIT_A0044
    10201022  setPartDumpFlag (pcCU->getPartDumpFlag());
    10211023#endif
  • branches/HTM-4.0-Orange/source/Lib/TLibCommon/TComDataCU.h

    r112 r117  
    238238  UInt*         m_uiEntropySliceStartCU; ///< Start CU address of current slice
    239239
    240 #if OL_DEPTHLIMIT
     240#if OL_DEPTHLIMIT_A0044
    241241  //add a variable to store the partition information
    242   //a 2D array in uidepth,part_symbol format
     242  //a 2D array in uidepth, part_symbol format
    243243  UInt          m_uiPartInfo[OL_PART_BUF_SIZE][2];
    244244  UInt          m_uiPartNum;
    245   Bool          b_dumpPartInfo;
     245  Bool          m_dumpPartInfo;
    246246#endif
    247247 
     
    605605  Void          compressMV            ();
    606606
    607 #if OL_DEPTHLIMIT
    608         Void        resetPartInfo  () {m_uiPartNum = 0;};
    609         Void        incrementPartInfo () {m_uiPartNum ++;};
    610         Void        updatePartInfo(UInt uiSymbol, UInt uiDepth) {m_uiPartInfo[m_uiPartNum][0] = uiSymbol; m_uiPartInfo
    611 [m_uiPartNum][1] = uiDepth;};
    612         UInt*       readPartInfo() {return (UInt*)m_uiPartInfo;};
    613 //      UInt            getPartNumIdx() {return m_uiPartNum;}; //added this to get the index
    614 //flag to signal to start dumping
    615         Void            setPartDumpFlag(bool flag)      {b_dumpPartInfo = flag;};
    616         Bool            getPartDumpFlag()       {return b_dumpPartInfo;};
     607#if OL_DEPTHLIMIT_A0044
     608  Void        resetPartInfo     () {m_uiPartNum = 0;};
     609  Void        incrementPartInfo () {m_uiPartNum ++;};
     610  Void        updatePartInfo(UInt uiSymbol, UInt uiDepth) { m_uiPartInfo[m_uiPartNum][0] = uiSymbol; m_uiPartInfo[m_uiPartNum][1] = uiDepth;};
     611  UInt*       readPartInfo()                              { return (UInt*)m_uiPartInfo;};
     612  Void        setPartDumpFlag(Bool flag)                  { m_dumpPartInfo = flag; };
     613  Bool        getPartDumpFlag()                           { return m_dumpPartInfo; };
    617614#endif
    618615 
  • branches/HTM-4.0-Orange/source/Lib/TLibCommon/TComRdCost.h

    r110 r117  
    378378#endif
    379379#if LGE_WVSO_A0119
    380   Int                                                                                   m_iDWeight;
    381   Int                                                                                   m_iVSOWeight;
     380  Int                     m_iDWeight;
     381  Int                     m_iVSOWeight;
    382382  Int                     m_iVSDWeight;
    383383  Bool                    m_bWVSO;
     
    417417  UInt    getVSOMode( )                  { return m_uiVSOMode; }
    418418#if LGE_WVSO_A0119
    419   Void    setWVSO ( Bool bIn )         { m_bWVSO = bIn; };
    420   Bool    getWVSO ( )                  { return m_bWVSO;};
    421   Void          setDWeight ( Int iDWeight )                     { m_iDWeight = iDWeight; };
    422   Int                   getDWeight ()                                                                           { return m_iDWeight; };
    423   Void          setVSOWeight ( Int iVSOWeight ) { m_iVSOWeight = iVSOWeight; };
    424   Int                   getVSOWeight ()                                                                 { return m_iVSOWeight; };
    425   Void          setVSDWeight ( Int iVSDWeight ) { m_iVSDWeight = iVSDWeight; };
    426   Int                   getVSDWeight ()                                                                 { return m_iVSDWeight; };
     419  Void    setWVSO ( Bool bIn )            { m_bWVSO = bIn; };
     420  Bool    getWVSO ( )                     { return m_bWVSO;};
     421  Void    setDWeight   ( Int iDWeight   ) { m_iDWeight = iDWeight; };
     422  Int     getDWeight   ()                 { return m_iDWeight; };
     423  Void    setVSOWeight ( Int iVSOWeight ) { m_iVSOWeight = iVSOWeight; };
     424  Int     getVSOWeight ()                 { return m_iVSOWeight; };
     425  Void    setVSDWeight ( Int iVSDWeight ) { m_iVSDWeight = iVSDWeight; };
     426  Int     getVSDWeight ()                 { return m_iVSDWeight; };
    427427#endif
    428428#if HHI_VSO_DIST_INT
  • branches/HTM-4.0-Orange/source/Lib/TLibCommon/TComSlice.cpp

    r112 r117  
    14411441, m_bUseDMM                   (false)
    14421442#endif
    1443 #if OL_DEPTHLIMIT
     1443#if OL_DEPTHLIMIT_A0044
    14441444, m_bDepthPartitionLimiting   (false)
    14451445#endif
  • branches/HTM-4.0-Orange/source/Lib/TLibCommon/TComSlice.h

    r112 r117  
    354354#endif
    355355
    356 #if OL_DEPTHLIMIT
     356#if OL_DEPTHLIMIT_A0044
    357357  Bool m_bDepthPartitionLimiting;
    358358#endif
     
    623623#endif
    624624
    625 #if OL_DEPTHLIMIT
     625#if OL_DEPTHLIMIT_A0044
    626626  Void setUseDPL(Bool b) {m_bDepthPartitionLimiting = b; }
    627627  Bool getUseDPL()       {return m_bDepthPartitionLimiting;}
  • branches/HTM-4.0-Orange/source/Lib/TLibCommon/TComWedgelet.h

    r56 r117  
    198198  static UInt xGetSAD16         ( WedgeDistParam* pcDtParam );
    199199  static UInt xGetSAD32         ( WedgeDistParam* pcDtParam );
    200   //static UInt xGetSAD64         ( WedgeDistParam* pcDtParam );
    201200
    202201  static UInt xGetSSE4          ( WedgeDistParam* pcDtParam );
     
    204203  static UInt xGetSSE16         ( WedgeDistParam* pcDtParam );
    205204  static UInt xGetSSE32         ( WedgeDistParam* pcDtParam );
    206   //static UInt xGetSSE64         ( WedgeDistParam* pcDtParam );
    207205
    208206};// END CLASS DEFINITION TComWedgeDist
  • branches/HTM-4.0-Orange/source/Lib/TLibCommon/TypeDef.h

    r113 r117  
    9696#define LGE_WVSO_A0119                    1 // JCT2-A0119 Depth Metric with a weighted depth fidelity term
    9797
    98 #define OL_DEPTHLIMIT                     1 //JCT2-A0044
    99 #if OL_DEPTHLIMIT
     98#define OL_DEPTHLIMIT_A0044               1 //JCT2-A0044
     99#if OL_DEPTHLIMIT_A0044
    100100#define OL_DO_NOT_LIMIT_INTRA_SLICES_PART 1 //Turn this on to not perform depth limiting for I-SLICES.
    101 #define OL_END_CU                         MAX_INT //Default for initialising the partition information buffer
     101#define OL_END_CU                         MAX_INT //Default for initializing the partition information buffer
    102102#define OL_PART_BUF_SIZE                  86 //maximum number of possible partition bits in a CU
    103103#endif
Note: See TracChangeset for help on using the changeset viewer.