Ignore:
Timestamp:
19 Nov 2012, 21:15:40 (12 years ago)
Author:
mitsubishi-htm
Message:

A second release, as planned

  • Migrate to HTM 4.1
  • Move VSP related switches to cfg file instead of #define in the source code
  • A few bug fixes
  • For VC project files, only VC9 file is updated

TODO

  • Migrate to HTM 5.0, to be used as anchor for CE1 toward Geneva meeting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPic.h

    r166 r193  
    9191  TComPicYuv*           m_pcResidual;             //  residual buffer (coded or inter-view predicted residual)
    9292#endif
    93 #if DEBUGIMGOUT
    94   TComPicYuv*           m_acPicYuvDebug;          //  debug image
    95 #endif
    9693
    9794  TComPicYuv*           m_pcPicYuvPred;           //  Prediction
     
    120117  Int**                 m_aaiCodedScale;
    121118  Int**                 m_aaiCodedOffset;
     119
     120#if OL_DEPTHLIMIT_A0044
     121  UInt*                 m_texPartInfo;
     122  UInt                  m_uiTexPartIndex;
     123#endif
    122124
    123125public:
     
    183185#if HHI_INTER_VIEW_RESIDUAL_PRED
    184186  TComPicYuv*   getResidual()         { return  m_pcResidual; }
    185 #endif
    186 
    187 #if DEBUGIMGOUT
    188   TComPicYuv*   getPicYuvRecDbg()     { return  m_acPicYuvDebug; }
    189187#endif
    190188
     
    262260  Void          removeResidualBuffer    ();
    263261#endif
     262
     263#if OL_DEPTHLIMIT_A0044
     264  UInt        accessPartInfo        ( UInt count )   { return m_texPartInfo[m_uiTexPartIndex + count]; };
     265  Void        incrementTexPartIndex (            )   { m_uiTexPartIndex += 2;    };
     266  UInt        getTexPartIndex       ()               { return m_uiTexPartIndex;  };
     267  Void        setTexPartIndex       ( UInt idx   )   { m_uiTexPartIndex = idx; };
     268  Void        setPartInfo           ( UInt* texPart) { m_texPartInfo    = texPart;  };
     269#endif
     270
    264271  Bool          getValidSlice                                  (Int sliceID)  {return m_pbValidSlice[sliceID];}
    265272  Int           getSliceGranularityForNDBFilter                ()             {return m_sliceGranularityForNDBFilter;}
Note: See TracChangeset for help on using the changeset viewer.