Changeset 876 in 3DVCSoftware for branches/HTM-10.1-dev0/source/App/TAppEncoder
- Timestamp:
- 27 Mar 2014, 18:52:26 (11 years ago)
- Location:
- branches/HTM-10.1-dev0/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.1-dev0/source/App/TAppEncoder/TAppEncCfg.cpp
r872 r876 521 521 #if H_3D_SPIVMP 522 522 ("SubPULog2Size", m_iSubPULog2Size, (Int)3, "Sub-PU size index: 2^n") 523 #endif524 #if QC_SPIVMP_MPI_G0119525 523 ("SubPUMPILog2Size", m_iSubPUMPILog2Size, (Int)3, "Sub-PU MPI size index: 2^n") 526 524 #endif … … 1552 1550 #endif 1553 1551 #if H_3D_SPIVMP 1554 #if SEC_SPIVMP_MCP_SIZE_G00771555 1552 xConfirmPara( m_iSubPULog2Size < 3, "SubPULog2Size must be 3 or greater."); 1556 #else1557 xConfirmPara( m_iSubPULog2Size < 2, "SubPULog2Size must be 2 or greater.");1558 #endif1559 1553 xConfirmPara( m_iSubPULog2Size > 6, "SubPULog2Size must be 6 or smaller."); 1560 1554 xConfirmPara( (1<<m_iSubPULog2Size) > m_uiMaxCUWidth, "SubPULog2Size must be log2(maxCUSize) or smaller."); 1561 #endif 1562 #if QC_SPIVMP_MPI_G0119 1555 1563 1556 xConfirmPara( m_iSubPUMPILog2Size < 3, "SubPUMPILog2Size must be 3 or greater."); 1564 1557 xConfirmPara( m_iSubPUMPILog2Size > 6, "SubPUMPILog2Size must be 6 or smaller."); … … 2499 2492 #if H_3D_SPIVMP 2500 2493 printf(" SubPULog2Size:%d " , m_iSubPULog2Size ); 2501 #endif2502 #endif2503 #if QC_SPIVMP_MPI_G01192504 2494 printf(" SubPUMPILog2Size:%d " , m_iSubPUMPILog2Size ); 2495 #endif 2505 2496 #endif 2506 2497 #if H_3D_ARP -
branches/HTM-10.1-dev0/source/App/TAppEncoder/TAppEncCfg.h
r872 r876 141 141 #if H_3D_SPIVMP 142 142 Int m_iSubPULog2Size; 143 #endif144 #endif145 #if QC_SPIVMP_MPI_G0119146 143 Int m_iSubPUMPILog2Size; 144 #endif 147 145 #endif 148 146 #if H_3D_ARP /// < flag and number of weighting factors in ARP -
branches/HTM-10.1-dev0/source/App/TAppEncoder/TAppEncTop.cpp
r872 r876 187 187 #if H_3D_SPIVMP 188 188 m_cTEncTop.setSubPULog2Size (( isDepth || 0==layerIdInVps ) ? 0 : m_iSubPULog2Size ); 189 #endif190 #if QC_SPIVMP_MPI_G0119191 189 m_cTEncTop.setSubPUMPILog2Size ( !isDepth ? 0 : m_iSubPUMPILog2Size ); 192 190 #endif … … 1970 1968 #endif 1971 1969 } 1972 #if QC_SPIVMP_MPI_G01191970 #if H_3D_SPIVMP 1973 1971 vps.setSubPUMPILog2Size( m_iSubPUMPILog2Size ); 1974 1972 #endif
Note: See TracChangeset for help on using the changeset viewer.