Changeset 193 in 3DVCSoftware for branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPic.h
- Timestamp:
- 19 Nov 2012, 21:15:40 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-4.0.1-VSP-dev0/source/Lib/TLibCommon/TComPic.h
r166 r193 91 91 TComPicYuv* m_pcResidual; // residual buffer (coded or inter-view predicted residual) 92 92 #endif 93 #if DEBUGIMGOUT94 TComPicYuv* m_acPicYuvDebug; // debug image95 #endif96 93 97 94 TComPicYuv* m_pcPicYuvPred; // Prediction … … 120 117 Int** m_aaiCodedScale; 121 118 Int** m_aaiCodedOffset; 119 120 #if OL_DEPTHLIMIT_A0044 121 UInt* m_texPartInfo; 122 UInt m_uiTexPartIndex; 123 #endif 122 124 123 125 public: … … 183 185 #if HHI_INTER_VIEW_RESIDUAL_PRED 184 186 TComPicYuv* getResidual() { return m_pcResidual; } 185 #endif186 187 #if DEBUGIMGOUT188 TComPicYuv* getPicYuvRecDbg() { return m_acPicYuvDebug; }189 187 #endif 190 188 … … 262 260 Void removeResidualBuffer (); 263 261 #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 264 271 Bool getValidSlice (Int sliceID) {return m_pbValidSlice[sliceID];} 265 272 Int getSliceGranularityForNDBFilter () {return m_sliceGranularityForNDBFilter;}
Note: See TracChangeset for help on using the changeset viewer.