Changeset 1116 in 3DVCSoftware
- Timestamp:
- 8 Nov 2014, 06:33:18 (10 years ago)
- Location:
- branches/HTM-12.2-dev1-Hisilicon
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.2-dev1-Hisilicon/source/Lib/TLibCommon/TComDataCU.cpp
r1114 r1116 6710 6710 6711 6711 iNumSPInOneLine = iPUWidth/iSubPUSize; 6712 #if !HS_SP_SIMP_J0066 6712 6713 iNumSPInOneLine = iNumSPInOneLine < 1 ? 1: iNumSPInOneLine; 6714 #endif 6713 6715 Int iNumSPInOneColumn = iPUHeight/iSubPUSize; 6716 #if !HS_SP_SIMP_J0066 6714 6717 iNumSPInOneColumn = iNumSPInOneColumn < 1 ? 1: iNumSPInOneColumn; 6718 #else 6719 iNumSPInOneLine = (iPUHeight % iSubPUSize != 0 || iPUWidth % iSubPUSize != 0 ) ? 1 : iNumSPInOneLine; 6720 iNumSPInOneColumn = (iPUHeight % iSubPUSize != 0 || iPUWidth % iSubPUSize != 0 ) ? 1 : iNumSPInOneColumn; 6721 #endif 6715 6722 iNumSP = iNumSPInOneLine * iNumSPInOneColumn; 6716 6723 -
branches/HTM-12.2-dev1-Hisilicon/source/Lib/TLibCommon/TypeDef.h
r1114 r1116 367 367 #endif 368 368 369 370 #if H_3D_SPIVMP 371 #define HS_SP_SIMP_J0066 1 372 #endif 373 369 374 ///////////////////////////////////////////////////////////////////////////////// 370 375 /////////////////////////////////// MV_HEVC HLS //////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.