Changeset 1116 in 3DVCSoftware


Ignore:
Timestamp:
8 Nov 2014, 06:33:18 (9 years ago)
Author:
hisilicon-htm
Message:

Integration of JCT3V-J0066

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  
    67106710
    67116711  iNumSPInOneLine = iPUWidth/iSubPUSize;
     6712#if !HS_SP_SIMP_J0066
    67126713  iNumSPInOneLine = iNumSPInOneLine < 1 ? 1: iNumSPInOneLine;
     6714#endif
    67136715  Int iNumSPInOneColumn = iPUHeight/iSubPUSize;
     6716#if !HS_SP_SIMP_J0066
    67146717  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
    67156722  iNumSP = iNumSPInOneLine * iNumSPInOneColumn;
    67166723
  • branches/HTM-12.2-dev1-Hisilicon/source/Lib/TLibCommon/TypeDef.h

    r1114 r1116  
    367367#endif
    368368
     369
     370#if H_3D_SPIVMP
     371#define HS_SP_SIMP_J0066                        1
     372#endif
     373
    369374/////////////////////////////////////////////////////////////////////////////////
    370375///////////////////////////////////   MV_HEVC HLS  //////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.