Changeset 166 in 3DVCSoftware for branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPic.h
- Timestamp:
- 1 Nov 2012, 19:22:41 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPic.h
r100 r166 65 65 TComPicYuv* m_apcPicYuv[2]; // Texture, 0:org / 1:rec 66 66 67 #if VSP_N 68 TComPicYuv* m_apcPicYuvAvail; // Availability Map - Does the given pixel can be synthesised in receiver 69 TComPicYuv* m_apcPicYuvSynth; // Sythesied image 70 #endif 71 67 72 #if DEPTH_MAP_GENERATION 68 73 TComPicYuv* m_pcPredDepthMap; // estimated depth map … … 85 90 #if HHI_INTER_VIEW_RESIDUAL_PRED 86 91 TComPicYuv* m_pcResidual; // residual buffer (coded or inter-view predicted residual) 92 #endif 93 #if DEBUGIMGOUT 94 TComPicYuv* m_acPicYuvDebug; // debug image 87 95 #endif 88 96 … … 145 153 TComPicYuv* getPicYuvOrg() { return m_apcPicYuv[0]; } 146 154 TComPicYuv* getPicYuvRec() { return m_apcPicYuv[1]; } 155 #if VSP_N 156 Void setPicYuvAvail( TComPicYuv* pc ){ m_apcPicYuvAvail = pc; } 157 Void setPicYuvSynth( TComPicYuv* pc ){ m_apcPicYuvSynth = pc; } 158 TComPicYuv* getPicYuvAvail() { return m_apcPicYuvAvail; } 159 TComPicYuv* getPicYuvSynth() { return m_apcPicYuvSynth; } 160 Void checkSynthesisAvailability( /*TComDataCU*& rpcBestCU, */UInt iCuAddr, UInt uiAbsZorderIdx, UInt uiPartDepth, Bool *&rpbCUSynthesied); 161 #endif 147 162 #if HHI_INTERVIEW_SKIP 148 163 TComPicYuv* getUsedPelsMap() { return m_pcUsedPelsMap; } … … 168 183 #if HHI_INTER_VIEW_RESIDUAL_PRED 169 184 TComPicYuv* getResidual() { return m_pcResidual; } 185 #endif 186 187 #if DEBUGIMGOUT 188 TComPicYuv* getPicYuvRecDbg() { return m_acPicYuvDebug; } 170 189 #endif 171 190
Note: See TracChangeset for help on using the changeset viewer.