Ignore:
Timestamp:
1 Nov 2012, 19:22:41 (12 years ago)
Author:
mitsubishi-htm
Message:

Initial integration of VSP into HTM 4.0.1. The version used for JCT3V-B0102 at Shanghai meeting.

  • VC9 project/solution files updated. Other Visual C++ project/solution files are not updated.
  • Linux make file updated.

TODO

  • A second release is expected to include some bug fix and improvements on the interface, e.g. to move switches from macro definition to the configuration file.
  • A third release is expected after being integrated within HTM 5.x, which is to be used for CE1.h anchor.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibEncoder/TEncTop.h

    r56 r166  
    145145  TEncAnalyze             m_cAnalyzeB;
    146146
     147#if VSP_N
     148  TComPic*                m_pcPicVSP;                     ///< view synthesis prediction buffer for current POC to be coded
     149  TComPic*                m_pcPicAvail;
     150#endif
     151
     152#if VSP_SLICE_HEADER
     153  Bool                    m_bUseVSP;
     154#endif
     155
    147156protected:
    148157  Void  xGetNewPicBuffer  ( TComPic*& rpcPic );           ///< get picture buffer which will be processed
     
    237246  TComResidualGenerator*  getResidualGenerator  () { return  &m_cResidualGenerator;   }
    238247#endif
     248#if VSP_N
     249  TComPic*                getVSPBuf             () { return m_pcPicVSP; }
     250  TComPic*                getVSPAvailBuf        () { return m_pcPicAvail; }
     251#endif
     252
     253#if VSP_SLICE_HEADER
     254  Void                    setUseVSP   ( Bool val ) { m_bUseVSP = val; }
     255  Bool                    getUseVSP             () { return m_bUseVSP; }
     256#endif
    239257
    240258  // -------------------------------------------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.