Changeset 877 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon/TCom3DAsymLUT.cpp
- Timestamp:
- 28 Aug 2014, 06:22:48 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TCom3DAsymLUT.cpp
r852 r877 76 76 } 77 77 78 78 79 Void TCom3DAsymLUT::xUpdatePartitioning( Int nCurOctantDepth , Int nCurYPartNumLog2 79 80 #if R0151_CGS_3D_ASYMLUT_IMPROVE … … 101 102 #endif 102 103 m_nMappingOffset = 1 << ( m_nMappingShift - 1 ); 104 105 #if R0179_ENC_OPT_3DLUT_SIZE 106 m_nYSize = 1 << ( m_nCurOctantDepth + m_nCurYPartNumLog2 ); 107 m_nUSize = 1 << m_nCurOctantDepth; 108 m_nVSize = 1 << m_nCurOctantDepth; 109 #endif 103 110 } 104 111 … … 333 340 Void TCom3DAsymLUT::xSaveCuboids( SCuboid *** pSrcCuboid ) 334 341 { 342 #if R0179_ENC_OPT_3DLUT_SIZE 343 memcpy( m_pCuboid[0][0] , pSrcCuboid[0][0] , sizeof( SCuboid ) * getMaxYSize() * getMaxCSize() * getMaxCSize() ); 344 #else 335 345 memcpy( m_pCuboid[0][0] , pSrcCuboid[0][0] , sizeof( SCuboid ) * m_nYSize * m_nUSize * m_nVSize ); 346 #endif 336 347 } 337 348
Note: See TracChangeset for help on using the changeset viewer.