Changeset 28 in 3DVCSoftware for branches/0.3-poznan-univ/source/Lib/TLibEncoder/TEncTop.h
- Timestamp:
- 24 Feb 2012, 20:22:58 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.3-poznan-univ/source/Lib/TLibEncoder/TEncTop.h
r5 r28 64 64 #include "TEncAnalyze.h" 65 65 66 #if POZNAN_MP 67 #include "../TLibCommon/TComMP.h" 68 #endif 66 69 67 70 // ==================================================================================================================== … … 131 134 132 135 PicOrderCnt m_iFrameNumInCodingOrder; 136 #if POZNAN_TEXTURE_TU_DELTA_QP_PARAM_IN_CFG_FOR_ENC 137 Double m_dTexDqpAccordingToDepthOffset; 138 Double m_dTexDqpAccordingToDepthMul; 139 Int m_iTexDqpAccordingToDepthTopBottomRow; 140 #endif 141 142 #if POZNAN_MP 143 TComMP* m_pcMP; 144 #endif 133 145 134 146 protected: … … 217 229 Void encode ( bool bEos, std::map<PicOrderCnt, TComPicYuv*>& rcMapPicYuvRecOut, TComBitstream* pcBitstreamOut, Bool& bNewPicNeeded ); 218 230 Void receivePic( bool bEos, TComPicYuv* pcPicYuvOrg, TComPicYuv* pcPicYuvRec, TComPicYuv* pcOrgPdmDepth = 0 ); 231 232 #if POZNAN_TEXTURE_TU_DELTA_QP_PARAM_IN_CFG_FOR_ENC 233 Double getTexDqpAccordingToDepthOffset( ) { return m_dTexDqpAccordingToDepthOffset;} 234 Double getTexDqpAccordingToDepthMul( ) { return m_dTexDqpAccordingToDepthMul;} 235 Int getTexDqpAccordingToDepthTopBottomRow( ){ return m_iTexDqpAccordingToDepthTopBottomRow;} 236 Void setTexDqpAccordingToDepthOffset ( Double dTexDqpAccordingToDepthOffset ){ m_dTexDqpAccordingToDepthOffset = dTexDqpAccordingToDepthOffset; } 237 Void setTexDqpAccordingToDepthMul ( Double dTexDqpAccordingToDepthMul ){ m_dTexDqpAccordingToDepthMul = dTexDqpAccordingToDepthMul; } 238 Void setTexDqpAccordingToDepthTopBottomRow( Int iTexDqpAccordingToDepthTopBottomRow ){ m_iTexDqpAccordingToDepthTopBottomRow = iTexDqpAccordingToDepthTopBottomRow; } 239 #endif 219 240 }; 220 241
Note: See TracChangeset for help on using the changeset viewer.