Changeset 931 in 3DVCSoftware for branches/HTM-10.2-dev1-MediaTek
- Timestamp:
- 21 Apr 2014, 10:32:30 (11 years ago)
- Location:
- branches/HTM-10.2-dev1-MediaTek/source/Lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-10.2-dev1-MediaTek/source/Lib/TLibCommon/TComDataCU.cpp
r922 r931 4068 4068 #if H_3D_DBBP 4069 4069 Bool bDBBPFlag = getDBBPFlag(uiAbsPartIdx); 4070 #if MTK_DIS_SPBIP8X4_H0205 4071 assert(bDBBPFlag == getDBBPFlag(0)); 4072 #endif 4070 4073 #endif 4071 4074 … … 4504 4507 } 4505 4508 } 4509 #if MTK_DIS_SPBIP8X4_H0205 4510 if (iPUHeight + iPUWidth == 12) 4511 { 4512 if (puhInterDirSP[iPartition] == 3) 4513 { 4514 puhInterDirSP[iPartition] = 1; 4515 pcMvFieldSP[2*iPartition + 1].setMvField(TComMv(0,0), -1); 4516 } 4517 } 4518 #endif 4506 4519 #if !MPI_SUBPU_DEFAULT_MV_H0077_H0099_H0111_H0133 4507 4520 else … … 4916 4929 #if ETRIKHU_CLEANUP_H0083 4917 4930 Bool SPIVMPFlag = false; 4931 #if MTK_DIS_SPBIP8X4_H0205 4932 if(!m_pcSlice->getIsDepth()) 4933 #else 4918 4934 if(!m_pcSlice->getIsDepth() && getPartitionSize(0) == SIZE_2Nx2N ) 4935 #endif 4919 4936 { 4920 4937 SPIVMPFlag = true; … … 7312 7329 if(!m_pcSlice->getIsDepth()) 7313 7330 { 7331 #if MTK_DIS_SPBIP8X4_H0205 7332 if (!getDBBPFlag(0)) 7333 #else 7314 7334 if( getPartitionSize(0) == SIZE_2Nx2N ) 7335 #endif 7315 7336 { 7316 7337 Int iNumSPInOneLine, iNumSP, iSPWidth, iSPHeight; … … 7469 7490 7470 7491 } 7492 #if MTK_DIS_SPBIP8X4_H0205 7493 if (iSPHeight + iSPWidth == 12) 7494 { 7495 if (puhInterDirSP[iPartition] == 3) 7496 { 7497 puhInterDirSP[iPartition] = 1; 7498 pcMvFieldSP[2*iPartition + 1].setMvField(TComMv(0,0), -1); 7499 } 7500 } 7501 #endif 7471 7502 iPartition ++; 7472 7503 } … … 7490 7521 iCurrPosY += ( iHeight >> 1 ); 7491 7522 } 7523 #if MTK_DIS_SPBIP8X4_H0205 7524 for(Int iLoopCan = ( (m_pcSlice->getIsDepth() || getDBBPFlag(0)) ? 0 : 1 ); iLoopCan < ( 2 - m_pcSlice->getIsDepth() ); iLoopCan ++) 7525 #else 7492 7526 for(Int iLoopCan = ( (m_pcSlice->getIsDepth() || getPartitionSize(uiPartAddr) != SIZE_2Nx2N) ? 0 : 1 ); iLoopCan < ( 2 - m_pcSlice->getIsDepth() ); iLoopCan ++) 7527 #endif 7493 7528 #else 7494 7529 for(Int iLoopCan = 0; iLoopCan < 2; iLoopCan ++) -
branches/HTM-10.2-dev1-MediaTek/source/Lib/TLibCommon/TypeDef.h
r926 r931 231 231 #define ETRIKHU_CLEANUP_H0083 1 // cleaned-up source code for constructing merging candidate list 232 232 #define SHARP_SIMPLE_MERGE_H0062 1 // Restrict 3D-HEVC merge cand in small PUs 233 #define MTK_DIS_SPBIP8X4_H0205 1 // Disable bi-prediction for 8x4 and 4x8 sub PU and remove the SPIVMP 2Nx2N restriction 233 234 234 235 // Rate Control -
branches/HTM-10.2-dev1-MediaTek/source/Lib/TLibDecoder/TDecSbac.cpp
r884 r931 2153 2153 { 2154 2154 pcCU->setDBBPFlagSubParts(true, uiAbsPartIdx, 0, uiDepth); 2155 #if MTK_DIS_SPBIP8X4_H0205 2156 UInt uiCurrPartNumQ = (pcCU->getPic()->getNumPartInCU() >> (2 * uiDepth)) >> 2; 2157 pcCU->setDBBPFlagSubParts(true, uiAbsPartIdx + 2*uiCurrPartNumQ, 1, uiDepth); 2158 #endif 2155 2159 } 2156 2160 }
Note: See TracChangeset for help on using the changeset viewer.