Changeset 1074 in 3DVCSoftware for branches/HTM-12.1-dev0/source/Lib
- Timestamp:
- 21 Oct 2014, 20:39:50 (10 years ago)
- Location:
- branches/HTM-12.1-dev0/source/Lib
- Files:
-
- 39 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.1-dev0/source/Lib/TAppCommon/program_options_lite.h
r1039 r1074 378 378 std::string cDescBuffer; 379 379 380 #if !FIX_TICKET_62381 cNameBuffer .resize( name.size() + 10 );382 cDescBuffer.resize( desc.size() + 10 );383 #endif384 385 380 storage.resize(uiMaxNum); 386 381 for ( unsigned int uiK = 0; uiK < uiMaxNum; uiK++ ) 387 382 { 388 389 #if FIX_TICKET_62390 383 cNameBuffer .resize( name.size() + 10 ); 391 384 cDescBuffer.resize( desc.size() + 10 ); 392 #endif393 385 394 386 Bool duplicate = (uiK != 0); -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/ContextTables.h
r1039 r1074 51 51 #define NUM_SPLIT_FLAG_CTX 3 ///< number of context models for split flag 52 52 #define NUM_SKIP_FLAG_CTX 3 ///< number of context models for skip flag 53 #if MTK_SINGLE_DEPTH_MODE_I009553 #if H_3D_SINGLE_DEPTH 54 54 #define NUM_SINGLEDEPTH_FLAG_CTX 1 55 55 #define NUM_SINGLE_DEPTH_VALUE_DATA_CTX 1 … … 153 153 { CNU, CNU, CNU, }, 154 154 }; 155 #if MTK_SINGLE_DEPTH_MODE_I0095155 #if H_3D_SINGLE_DEPTH 156 156 static const UChar 157 157 INIT_SINGLEDEPTH_FLAG[3][NUM_SINGLEDEPTH_FLAG_CTX] = … … 450 450 static const UChar INIT_DBBP_FLAG[3][DBBP_NUM_FLAG_CTX] = 451 451 { 452 #if SEC_DBBP_EXPLICIT_SIG_I0077 453 { CNU }, 454 { CNU }, 455 { CNU }, 456 #else 457 { 161 }, 458 { 161 }, 459 { 161 }, 460 #endif 461 }; 462 #endif 463 464 #endif 452 { CNU }, 453 { CNU }, 454 { CNU }, 455 }; 456 #endif 457 458 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComDataCU.cpp
r1066 r1074 60 60 61 61 m_skipFlag = NULL; 62 #if MTK_SINGLE_DEPTH_MODE_I009562 #if H_3D_SINGLE_DEPTH 63 63 m_singleDepthFlag = NULL; 64 64 m_apSingleDepthValue = NULL; … … 185 185 186 186 m_skipFlag = new Bool[ uiNumPartition ]; 187 #if MTK_SINGLE_DEPTH_MODE_I0095187 #if H_3D_SINGLE_DEPTH 188 188 m_singleDepthFlag = new Bool[ uiNumPartition ]; 189 189 m_apSingleDepthValue = (Pel*)xMalloc(Pel, uiNumPartition); … … 335 335 336 336 if ( m_skipFlag ) { delete[] m_skipFlag; m_skipFlag = NULL; } 337 #if MTK_SINGLE_DEPTH_MODE_I0095337 #if H_3D_SINGLE_DEPTH 338 338 if ( m_singleDepthFlag ) { delete[] m_singleDepthFlag; m_singleDepthFlag = NULL; } 339 339 if ( m_apSingleDepthValue ) { xFree(m_apSingleDepthValue); m_apSingleDepthValue = NULL; } … … 503 503 TComDataCU * pcFrom = pcPic->getCU(getAddr()); 504 504 m_skipFlag[ui] = pcFrom->getSkipFlag(ui); 505 #if MTK_SINGLE_DEPTH_MODE_I0095505 #if H_3D_SINGLE_DEPTH 506 506 m_singleDepthFlag[ui] = pcFrom->getSingleDepthFlag(ui); 507 507 m_apSingleDepthValue[ui] = pcFrom->getSingleDepthValue(ui); … … 563 563 { 564 564 memset( m_skipFlag + firstElement, false, numElements * sizeof( *m_skipFlag ) ); 565 #if MTK_SINGLE_DEPTH_MODE_I0095565 #if H_3D_SINGLE_DEPTH 566 566 memset( m_singleDepthFlag + firstElement, false, numElements * sizeof( *m_singleDepthFlag ) ); 567 567 memset( m_apSingleDepthValue + firstElement, 0, numElements * sizeof( *m_apSingleDepthValue ) ); … … 754 754 m_puhTransformSkip[2][ui] = 0; 755 755 m_skipFlag[ui] = false; 756 #if MTK_SINGLE_DEPTH_MODE_I0095756 #if H_3D_SINGLE_DEPTH 757 757 m_singleDepthFlag[ui] = false; 758 758 m_apSingleDepthValue[ui] = 0; … … 933 933 { 934 934 m_skipFlag[ui] = false; 935 #if MTK_SINGLE_DEPTH_MODE_I0095935 #if H_3D_SINGLE_DEPTH 936 936 m_singleDepthFlag[ui] = false; 937 937 m_apSingleDepthValue[ui]= 0; … … 958 958 m_puhTransformSkip[2][ui] = pcCU->getTransformSkip(uiPartOffset+ui,TEXT_CHROMA_V); 959 959 m_skipFlag[ui] = pcCU->getSkipFlag(uiPartOffset+ui); 960 #if MTK_SINGLE_DEPTH_MODE_I0095960 #if H_3D_SINGLE_DEPTH 961 961 m_singleDepthFlag[ui] = pcCU->getSingleDepthFlag(uiPartOffset+ui); 962 962 m_apSingleDepthValue[ui] = pcCU->getSingleDepthValue(uiPartOffset+ui); … … 1111 1111 1112 1112 m_skipFlag=pcCU->getSkipFlag() + uiPart; 1113 #if MTK_SINGLE_DEPTH_MODE_I00951113 #if H_3D_SINGLE_DEPTH 1114 1114 m_singleDepthFlag = pcCU->getSingleDepthFlag() + uiPart; 1115 1115 m_apSingleDepthValue = pcCU->getSingleDepthValue() + uiPart; … … 1252 1252 1253 1253 m_skipFlag = pcCU->getSkipFlag () + uiAbsPartIdx; 1254 #if MTK_SINGLE_DEPTH_MODE_I00951254 #if H_3D_SINGLE_DEPTH 1255 1255 m_singleDepthFlag = pcCU->getSingleDepthFlag () + uiAbsPartIdx; 1256 1256 m_apSingleDepthValue = pcCU->getSingleDepthValue () + uiAbsPartIdx; … … 1331 1331 Int sizeInChar = sizeof( Char ) * uiNumPartition; 1332 1332 memcpy( m_skipFlag + uiOffset, pcCU->getSkipFlag(), sizeof( *m_skipFlag ) * uiNumPartition ); 1333 #if MTK_SINGLE_DEPTH_MODE_I00951333 #if H_3D_SINGLE_DEPTH 1334 1334 memcpy( m_singleDepthFlag + uiOffset, pcCU->getSingleDepthFlag(), sizeof( *m_singleDepthFlag ) * uiNumPartition ); 1335 1335 memcpy( m_apSingleDepthValue + uiOffset, pcCU->getSingleDepthValue(), sizeof( *m_apSingleDepthValue ) * uiNumPartition); … … 1455 1455 1456 1456 memcpy( rpcCU->getSkipFlag() + m_uiAbsIdxInLCU, m_skipFlag, sizeof( *m_skipFlag ) * m_uiNumPartition ); 1457 #if MTK_SINGLE_DEPTH_MODE_I00951457 #if H_3D_SINGLE_DEPTH 1458 1458 memcpy( rpcCU->getSingleDepthFlag() + m_uiAbsIdxInLCU, m_singleDepthFlag, sizeof( *m_singleDepthFlag ) * m_uiNumPartition ); 1459 1459 memcpy( rpcCU->getSingleDepthValue() + m_uiAbsIdxInLCU, m_apSingleDepthValue, sizeof( *m_apSingleDepthValue ) * m_uiNumPartition); … … 1574 1574 Int sizeInChar = sizeof( Char ) * uiQNumPart; 1575 1575 memcpy( rpcCU->getSkipFlag() + uiPartOffset, m_skipFlag, sizeof( *m_skipFlag ) * uiQNumPart ); 1576 #if MTK_SINGLE_DEPTH_MODE_I00951576 #if H_3D_SINGLE_DEPTH 1577 1577 memcpy( rpcCU->getSingleDepthFlag() + uiPartOffset, m_singleDepthFlag, sizeof( *m_singleDepthFlag ) * uiQNumPart ); 1578 1578 memcpy( rpcCU->getSingleDepthValue() + uiPartOffset, m_apSingleDepthValue, sizeof( *m_apSingleDepthValue ) * uiQNumPart); … … 2497 2497 memset( m_skipFlag + absPartIdx, skip, m_pcPic->getNumPartInCU() >> ( 2 * depth ) ); 2498 2498 } 2499 #if MTK_SINGLE_DEPTH_MODE_I00952499 #if H_3D_SINGLE_DEPTH 2500 2500 Void TComDataCU::setSingleDepthFlagSubParts( Bool singleDepth, UInt absPartIdx, UInt depth ) 2501 2501 { … … 2677 2677 } 2678 2678 2679 #if HS_DMM_SIGNALLING_I01202680 2679 if( isDimMode( getLumaIntraDir( uiAbsPartIdx ) ) ) 2681 #else2682 if( isDimMode( getLumaIntraDir( uiAbsPartIdx ) ) && !isDimDeltaDC( getLumaIntraDir( uiAbsPartIdx ) ) )2683 #endif2684 2680 { 2685 2681 return true; … … 2694 2690 // check prediction mode 2695 2691 UInt uiLumaPredMode = getLumaIntraDir( uiAbsPartIdx ); 2696 #if HS_DMM_SIGNALLING_I01202697 2692 if( uiLumaPredMode == PLANAR_IDX || ( getDimType( uiLumaPredMode ) == DMM1_IDX ) ) 2698 #else2699 if( uiLumaPredMode == PLANAR_IDX || ( getDimType( uiLumaPredMode ) == DMM1_IDX && !isDimDeltaDC( uiLumaPredMode ) ) )2700 #endif2701 2693 return true; 2702 2694 … … 3373 3365 for(Int iLoop = 0; iLoop < 2; iLoop ++ ) 3374 3366 { 3375 #if !SEC_SIMP_SHIFTED_DV_I00863376 // IvDcShift (Derived from spatial Iv neighboring blocks)3377 if( iLoop == 1 )3378 {3379 Int iFirDispCand = -1;3380 TComMvField mvIvDcShift[2];3381 UChar dirIvDcShift;3382 3383 if (xGetPosFirstAvailDmvCand(MRG_IVSHIFT, iFirDispCand))3384 {3385 TComMv cMv;3386 cMv = m_mergCands[iFirDispCand].m_cMvField[0].getMv();3387 cMv.setHor(cMv.getHor()+4);3388 if(m_pcSlice->getVPS()->getViewSynthesisPredFlag(m_pcSlice->getLayerIdInVps()))3389 {3390 cMv.setVer(0);3391 }3392 #if !(NTT_BUG_FIX_TK54)3393 clipMv( cMv );3394 #endif3395 3396 dirIvDcShift = m_mergCands[iFirDispCand].m_uDir;3397 mvIvDcShift[0].setMvField(cMv, m_mergCands[iFirDispCand].m_cMvField[0].getRefIdx() );3398 mvIvDcShift[1].setMvField(m_mergCands[iFirDispCand].m_cMvField[1].getMv(), m_mergCands[iFirDispCand].m_cMvField[1].getRefIdx() );3399 m_mergCands[MRG_IVSHIFT].setCand(mvIvDcShift, dirIvDcShift, false, false);3400 3401 if( mrgCandIdx == iCount )3402 {3403 return true;3404 }3405 iCount++;3406 break;3407 }3408 }3409 #endif3410 3411 3367 /// iLoop = 0 --> IvMCShift 3412 3368 /// iLoop = 1 --> IvDCShift (Derived from IvDC) … … 3455 3411 } 3456 3412 3457 #if !SEC_SIMP_SHIFTED_DV_I00863458 inline Bool TComDataCU::xGetPosFirstAvailDmvCand(Int iCount, Int& posFirstAvailDmvCand )3459 {3460 for ( Int currListPos = 0; currListPos < iCount; currListPos++ )3461 {3462 if ( !m_mergCands[currListPos].m_bAvailable || ( currListPos == MRG_IVMC ) || ( currListPos == MRG_IVDC ) || ( m_mergCands[currListPos].m_iVspFlag != 0 ))3463 {3464 continue;3465 }3466 else if((m_mergCands[currListPos].m_bAvailable) && (m_mergCands[currListPos].m_cMvField[0].getRefIdx() != -1 ) && (getSlice()->getViewIndex() != getSlice()->getRefPic(RefPicList(0), m_mergCands[currListPos].m_cMvField[0].getRefIdx())->getViewIndex()))3467 {3468 posFirstAvailDmvCand = currListPos;3469 return true;3470 }3471 }3472 return false;3473 }3474 #endif3475 3476 3413 #endif 3477 3414 … … 3921 3858 Void TComDataCU::getInterMergeCandidates( UInt uiAbsPartIdx, UInt uiPUIdx, TComMvField* pcMvFieldNeighbours, UChar* puhInterDirNeighbours 3922 3859 #endif 3923 #if H_3D_VSP && !FIX_TICKET_793924 , InheritedVSPDisInfo* inheritedVSPDisInfo3925 #endif3926 3860 #if H_3D_SPIVMP 3927 3861 , TComMvField* pcMvFieldSP, UChar* puhInterDirSP … … 3951 3885 ////////////////////////////////// 3952 3886 DisInfo cDisInfo = getDvInfo(uiAbsPartIdx); 3953 #if !FIX_TICKET_793954 for(Int i = 0; i < MRG_MAX_NUM_CANDS_MEM; i++)3955 {3956 inheritedVSPDisInfo[i].m_acDvInfo = cDisInfo; // To prevent run-time error, this code must be executed always for merging process.3957 }3958 #endif3959 3887 m_cDefaultDisInfo = cDisInfo; 3960 3888 … … 4177 4105 TComPic * pcTexPic = m_pcSlice->getTexturePic(); 4178 4106 #if H_3D_FCO 4179 #if LGE_FCO_I01164107 #if H_3D_FCO 4180 4108 if (pcTexPic && pcTexPic->getReconMark()) 4181 4109 #else … … 4251 4179 TComMv cMv = cDefaultMvField.getMv() + cMvRounding; 4252 4180 cMv >>= 2; 4253 #if !FIX_TICKET_684254 clipMv( cMv );4255 #endif4256 4181 cMvFieldSaved[eCurrRefPicList].setMvField(cMv, iRefPicList) ; 4257 4182 break; … … 5325 5250 #endif 5326 5251 5327 #if !FIX_TICKET_765328 #if H_3D_VSP5329 inline Void TComDataCU::xInheritVSPDisInfo(TComDataCU* pcCURef, UInt uiAbsPartIdx, Int iCount, InheritedVSPDisInfo* inheritedVSPDisInfo)5330 {5331 inheritedVSPDisInfo[iCount].m_acDvInfo.m_acNBDV = pcCURef->getDvInfo(uiAbsPartIdx).m_acNBDV;5332 inheritedVSPDisInfo[iCount].m_acDvInfo.m_aVIdxCan = pcCURef->getDvInfo(uiAbsPartIdx).m_aVIdxCan;5333 }5334 #endif5335 #endif5336 5252 /** Check whether the current PU and a spatial neighboring PU are in a same ME region. 5337 5253 * \param xN, xN location of the upper-left corner pixel of a neighboring PU … … 5976 5892 Int iColRefViewId = pColCU->getSlice()->getRefPic( eColRefPicList, pColCU->getCUMvField(eColRefPicList)->getRefIdx(uiAbsPartAddr))->getViewIndex(); 5977 5893 iScale = xGetDistScaleFactor( iCurrViewId, iCurrRefViewId, iColViewId, iColRefViewId ); 5978 #if SEC_HLS_CLEANUP_I0100 5894 5979 5895 if ( iScale != 4096 && m_pcSlice->getVPS()->getIvMvScalingFlag(getSlice()->getLayerIdInVps()) ) 5980 #else5981 if ( iScale != 4096 && m_pcSlice->getVPS()->getIvMvScalingFlag() )5982 #endif5983 5896 { 5984 5897 rcMv = cColMv.scaleMv( iScale ); … … 6164 6077 TComMv cMv; 6165 6078 #if MTK_I0093 6166 #if H_3D_FIX_64BIT_SHIFT6167 6079 Int iDisp = getSlice()->getDepthToDisparityB( 0 )[ (Int64) (1 << ( getSlice()->getSPS()->getBitDepthY() - 1 )) ]; 6168 #else6169 Int iDisp = getSlice()->getDepthToDisparityB( 0 )[ 1 << ( getSlice()->getSPS()->getBitDepthY() - 1 ) ];6170 #endif6171 6080 #else 6172 6081 Int iDisp = getSlice()->getDepthToDisparityB( 0 )[ 128 ]; … … 6181 6090 #endif 6182 6091 6183 #if MTK_SINGLE_DEPTH_MODE_I00956092 #if H_3D_SINGLE_DEPTH 6184 6093 Bool TComDataCU::getNeighDepth (UInt uiPartIdx, UInt uiPartAddr, Pel* pNeighDepth, Int index) 6185 6094 { … … 6795 6704 if( getSlice()->getIsDepth() ) 6796 6705 { 6797 #if MTK_I0099_VPS_EX26798 6706 iSubPUSize = 1<<getSlice()->getVPS()->getSubPUMPILog2Size(getSlice()->getLayerId()); 6799 #else6800 iSubPUSize = 1 << getSlice()->getVPS()->getSubPUMPILog2Size();6801 #endif6802 6707 } 6803 6708 -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComDataCU.h
r1039 r1074 110 110 // ------------------------------------------------------------------------------------------------------------------- 111 111 Bool* m_skipFlag; ///< array of skip flags 112 #if MTK_SINGLE_DEPTH_MODE_I0095112 #if H_3D_SINGLE_DEPTH 113 113 Bool* m_singleDepthFlag; ///< array of single depth flags 114 114 Pel* m_apSingleDepthValue; … … 250 250 #if H_3D_IV_MERGE 251 251 Bool xAddIvMRGCand( Int mrgCandIdx, Int& iCount, Int* ivCandDir, TComMv* ivCandMv, Int* ivCandRefIdx ); 252 #if! SEC_SIMP_SHIFTED_DV_I0086253 Bool xGetPosFirstAvailDmvCand( Int iCount, Int& iFirDispCand );254 #endif255 252 #endif 256 253 … … 353 350 Void setSkipFlag ( UInt idx, Bool skip) { m_skipFlag[idx] = skip; } 354 351 Void setSkipFlagSubParts ( Bool skip, UInt absPartIdx, UInt depth ); 355 #if MTK_SINGLE_DEPTH_MODE_I0095352 #if H_3D_SINGLE_DEPTH 356 353 Bool* getSingleDepthFlag () { return m_singleDepthFlag; } 357 354 Bool getSingleDepthFlag (UInt idx) { return m_singleDepthFlag[idx]; } … … 505 502 Bool getDispMvPredCan(UInt uiPartIdx, RefPicList eRefPicList, Int iRefIdx, Int* paiPdmRefIdx, TComMv* pacPdmMv, DisInfo* pDis, Int* iPdm ); 506 503 #endif 507 #if MTK_SINGLE_DEPTH_MODE_I0095504 #if H_3D_SINGLE_DEPTH 508 505 Bool getNeighDepth (UInt uiPartIdx, UInt uiPartAddr, Pel* pNeighDepth, Int index); 509 506 #endif … … 670 667 Void getInterMergeCandidates ( UInt uiAbsPartIdx, UInt uiPUIdx, TComMvField* pcMFieldNeighbours, UChar* puhInterDirNeighbours 671 668 #endif 672 #if H_3D_VSP && !FIX_TICKET_79673 , InheritedVSPDisInfo* inheritedVSPDisInfo674 #endif675 669 #if H_3D_SPIVMP 676 670 , TComMvField* pcMvFieldSP, UChar* puhInterDirSP … … 680 674 681 675 #if H_3D_VSP 682 #if !FIX_TICKET_76683 inline Void xInheritVSPDisInfo(TComDataCU* pcCURef, UInt uiAbsPartIdx, Int iCount, InheritedVSPDisInfo* inheritedVSPDisInfo);684 #endif685 686 676 #if H_3D_SPIVMP 687 677 Bool* getSPIVMPFlag () { return m_pbSPIVMPFlag; } … … 771 761 #endif 772 762 773 #if SHARP_DMM1_I0110763 #if H_3D_DIM 774 764 Bool isDMM1UpscaleMode ( UInt uiWidth ){ Bool bDMM1UpsampleModeFlag = true; UInt uiBaseWidth = 16; if( uiBaseWidth >= uiWidth ){ bDMM1UpsampleModeFlag = false; } return bDMM1UpsampleModeFlag; }; 775 765 UInt getDMM1BasePatternWidth ( UInt uiWidth ){ UInt uiBaseWidth = 16; if( uiBaseWidth >= uiWidth ){ uiBaseWidth = uiWidth; } return uiBaseWidth; } -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComMotionInfo.h
r1039 r1074 79 79 } IDVInfo; 80 80 #endif 81 #if H_3D_VSP && !FIX_TICKET_79 82 typedef struct _InheritedVSPDisCand 83 { 84 DisInfo m_acDvInfo; 85 } InheritedVSPDisInfo; 86 #endif 81 87 82 // ==================================================================================================================== 88 83 // Class definition -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComPrediction.cpp
r1039 r1074 423 423 424 424 UInt dimType = getDimType ( uiIntraMode ); 425 #if !HS_DMM_SIGNALLING_I0120426 Bool dimDeltaDC = isDimDeltaDC( uiIntraMode );427 #endif428 425 Bool isDmmMode = (dimType < DMM_NUM_TYPE); 429 426 … … 440 437 case( DMM1_IDX ): 441 438 { 442 #if SHARP_DMM1_I0110443 439 dmmSegmentation = pcCU->isDMM1UpscaleMode((UInt)iWidth) ? 444 440 &(g_dmmWedgeLists[ g_aucConvertToBit[pcCU->getDMM1BasePatternWidth((UInt)iWidth)] ][ pcCU->getDmmWedgeTabIdx( dimType, uiAbsPartIdx ) ]) : 445 441 &(g_dmmWedgeLists[ g_aucConvertToBit[iWidth] ][ pcCU->getDmmWedgeTabIdx( dimType, uiAbsPartIdx ) ]); 446 #else447 dmmSegmentation = &(g_dmmWedgeLists[ g_aucConvertToBit[iWidth] ][ pcCU->getDmmWedgeTabIdx( dimType, uiAbsPartIdx ) ]);448 #endif449 442 } break; 450 443 case( DMM4_IDX ): … … 464 457 } 465 458 assert( dmmSegmentation ); 466 #if SHARP_DMM1_I0110467 459 if( dimType == DMM1_IDX && pcCU->isDMM1UpscaleMode((UInt)iWidth) ) 468 460 { … … 475 467 patternStride = dmmSegmentation->getStride (); 476 468 } 477 #else478 biSegPattern = dmmSegmentation->getPattern();479 patternStride = dmmSegmentation->getStride ();480 #endif481 469 } 482 470 #endif … … 495 483 Pel segDC1 = 0; 496 484 Pel segDC2 = 0; 497 #if HS_DMM_SIGNALLING_I0120498 485 if( !pcCU->getSDCFlag( uiAbsPartIdx ) ) 499 #else500 if( dimDeltaDC )501 #endif502 486 { 503 487 Pel deltaDC1 = pcCU->getDimDeltaDC( dimType, 0, uiAbsPartIdx ); … … 568 552 pcCU->getSPAbsPartIdx(uiPartAddr, iSPWidth, iSPHeight, i, iNumSPInOneLine, uiSPAddr[i]); 569 553 } 570 #if SHARP_ARP_CHROMA_I0104571 554 if( pcCU->getARPW( uiPartAddr ) != 0 ) 572 555 { 573 556 return; 574 557 } 575 #endif 558 576 559 // horizontal sub-PU merge 577 560 for (Int i=0; i<iNumSP; i++) … … 745 728 Int uiMinDepth = MAX_INT; 746 729 Int uiMaxDepth = 0; 747 #if SEC_DBBP_DMM4_THRESHOLD_I0076 730 748 731 iSumDepth = pDepthPels[ 0 ]; 749 732 iSumDepth += pDepthPels[ uiWidth - 1 ]; … … 760 743 uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) ]); 761 744 uiMaxDepth = std::max( uiMaxDepth, (Int)pDepthPels[ uiDepthStride * (uiHeight - 1) + uiWidth - 1 ]); 762 #else 763 for (Int y=0; y<uiHeight; y++) 764 { 765 for (Int x=0; x<uiWidth; x++) 766 { 767 Int depthPel = pDepthPels[x]; 768 iSumDepth += depthPel; 769 770 if( depthPel > uiMaxDepth ) 771 { 772 uiMaxDepth = depthPel; 773 } 774 if( depthPel < uiMinDepth ) 775 { 776 uiMinDepth = depthPel; 777 } 778 } 779 780 // next row 781 pDepthPels += uiDepthStride; 782 } 783 #endif 745 784 746 785 747 // don't generate mask for blocks with small depth range (encoder decision) … … 790 752 791 753 AOF(uiWidth==uiHeight); 792 #if SEC_DBBP_DMM4_THRESHOLD_I0076793 754 Int iMean = iSumDepth >> 2; 794 #else795 Int iSizeInBits = g_aucConvertToBit[uiWidth]+2;796 Int iMean = iSumDepth >> iSizeInBits*2; // iMean /= (uiWidth*uiHeight);797 #endif798 755 799 756 // start again for segmentation … … 842 799 } 843 800 844 #if SHARP_DBBP_SIMPLE_FLTER_I0109845 801 Void TComPrediction::combineSegmentsWithMask( TComYuv* pInYuv[2], TComYuv* pOutYuv, Bool* pMask, UInt uiWidth, UInt uiHeight, UInt uiPartAddr, UInt partSize ) 846 #else847 Void TComPrediction::combineSegmentsWithMask( TComYuv* pInYuv[2], TComYuv* pOutYuv, Bool* pMask, UInt uiWidth, UInt uiHeight, UInt uiPartAddr )848 #endif849 802 { 850 803 Pel* piSrc[2] = {pInYuv[0]->getLumaAddr(uiPartAddr), pInYuv[1]->getLumaAddr(uiPartAddr)}; … … 854 807 855 808 UInt uiMaskStride= MAX_CU_SIZE; 856 #if !SHARP_DBBP_SIMPLE_FLTER_I0109857 Pel filSrc = 0;858 #endif859 809 Pel* tmpTar = 0; 860 810 tmpTar = (Pel *)xMalloc(Pel, uiWidth*uiHeight); … … 880 830 } 881 831 882 #if SHARP_DBBP_SIMPLE_FLTER_I0109883 832 if (partSize == SIZE_Nx2N) 884 833 { … … 917 866 } 918 867 } 919 #else920 for (Int y=0; y<uiHeight; y++)921 {922 for (Int x=0; x<uiWidth; x++)923 {924 Bool t = (y==0)?pMaskStart[y*uiMaskStride+x]:pMaskStart[(y-1)*uiMaskStride+x];925 Bool l = (x==0)?pMaskStart[y*uiMaskStride+x]:pMaskStart[y*uiMaskStride+x-1];926 Bool b = (y==uiHeight-1)?pMaskStart[y*uiMaskStride+x]:pMaskStart[(y+1)*uiMaskStride+x];927 Bool r = (x==uiWidth-1)?pMaskStart[y*uiMaskStride+x]:pMaskStart[y*uiMaskStride+x+1];928 Bool c =pMaskStart[y*uiMaskStride+x];929 930 Pel left, right, top, bottom;931 left = (x==0) ? tmpTar[y*uiWidth+x] : tmpTar[y*uiWidth+x-1];932 right = (x==uiWidth-1) ? tmpTar[y*uiWidth+x] : tmpTar[y*uiWidth+x+1];933 top = (y==0) ? tmpTar[y*uiWidth+x] : tmpTar[(y-1)*uiWidth+x];934 bottom = (y==uiHeight-1) ? tmpTar[y*uiWidth+x] : tmpTar[(y+1)*uiWidth+x];935 936 if(!((l&&r&&c) || (!l&&!r&&!c)))937 {938 filSrc = Clip3( Pel( 0 ), Pel( 255 ), Pel(( left + (tmpTar[y*uiWidth+x] << 1) + right ) >> 2 ));939 }940 else941 {942 filSrc = tmpTar[y*uiWidth+x];943 }944 945 if(!((t&&b&&c) || (!t&&!b&&!c)))946 {947 filSrc = Clip3( Pel( 0 ), Pel( 255 ), Pel(( top + (filSrc << 1) + bottom ) >> 2 ));948 }949 piDst[x] = filSrc;950 }951 piDst += uiDstStride;952 }953 #endif954 868 955 869 if ( tmpTar ) { xFree(tmpTar); tmpTar = NULL; } … … 989 903 } 990 904 991 #if SHARP_DBBP_SIMPLE_FLTER_I0109992 905 if (partSize == SIZE_Nx2N) 993 906 { … … 1056 969 } 1057 970 } 1058 #else 1059 for (Int y=0; y<uiHeightC; y++) 1060 { 1061 for (Int x=0; x<uiWidthC; x++) 1062 { 1063 Bool t = (y==0)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[(y-1)*2*uiMaskStride+x*2]; 1064 Bool l = (x==0)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[y*2*uiMaskStride+(x-1)*2]; 1065 Bool b = (y==uiHeightC-1)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[(y+1)*2*uiMaskStride+x*2]; 1066 Bool r = (x==uiWidthC-1)?pMaskStart[y*2*uiMaskStride+x*2]:pMaskStart[y*2*uiMaskStride+(x+1)*2]; 1067 Bool c =pMaskStart[y*2*uiMaskStride+x*2]; 1068 1069 Pel leftU, rightU, topU, bottomU; 1070 leftU = (x==0) ? tmpTarU[y*uiWidthC+x] : tmpTarU[y*uiWidthC+x-1]; 1071 rightU = (x==uiWidthC-1) ? tmpTarU[y*uiWidthC+x] : tmpTarU[y*uiWidthC+x+1]; 1072 topU = (y==0) ? tmpTarU[y*uiWidthC+x] : tmpTarU[(y-1)*uiWidthC+x]; 1073 bottomU = (y==uiHeightC-1) ? tmpTarU[y*uiWidthC+x] : tmpTarU[(y+1)*uiWidthC+x]; 1074 1075 Pel leftV, rightV, topV, bottomV; 1076 leftV = (x==0) ? tmpTarV[y*uiWidthC+x] : tmpTarV[y*uiWidthC+x-1]; 1077 rightV = (x==uiWidthC-1) ? tmpTarV[y*uiWidthC+x] : tmpTarV[y*uiWidthC+x+1]; 1078 topV = (y==0) ? tmpTarV[y*uiWidthC+x] : tmpTarV[(y-1)*uiWidthC+x]; 1079 bottomV = (y==uiHeightC-1) ? tmpTarV[y*uiWidthC+x] : tmpTarV[(y+1)*uiWidthC+x]; 1080 1081 if(!((l&&r&&c) || (!l&&!r&&!c))) 1082 { 1083 filSrcU = Clip3( Pel( 0 ), Pel( 255 ), Pel(( leftU + (tmpTarU[y*uiWidthC+x] << 1) + rightU ) >> 2 )); 1084 filSrcV = Clip3( Pel( 0 ), Pel( 255 ), Pel(( leftV + (tmpTarV[y*uiWidthC+x] << 1) + rightV ) >> 2 )); 1085 } 1086 else 1087 { 1088 filSrcU = tmpTarU[y*uiWidthC+x]; 1089 filSrcV = tmpTarV[y*uiWidthC+x]; 1090 } 1091 1092 if(!((t&&b&&c) || (!t&&!b&&!c))) 1093 { 1094 filSrcU = Clip3( Pel( 0 ), Pel( 255 ), Pel(( topU + (filSrcU << 1) + bottomU ) >> 2 )); 1095 filSrcV = Clip3( Pel( 0 ), Pel( 255 ), Pel(( topV + (filSrcV << 1) + bottomV ) >> 2 )); 1096 } 1097 1098 piDstU[x] = filSrcU; 1099 piDstV[x] = filSrcV; 1100 } 1101 piDstU += uiDstStrideC; 1102 piDstV += uiDstStrideC; 1103 } 1104 #endif 971 1105 972 if ( tmpTarU ) { xFree(tmpTarU); tmpTarU = NULL; } 1106 973 if ( tmpTarV ) { xFree(tmpTarV); tmpTarV = NULL; } … … 1475 1342 pcCU->clipMv(cMv); 1476 1343 TComPicYuv* pcPicYuvRef = pcCU->getSlice()->getRefPic( eRefPicList, iRefIdx )->getPicYuvRec(); 1477 #if QC_I0129_ARP_FIX1478 1344 xPredInterLumaBlk ( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi || ( dW > 0 ), true ); 1479 1345 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi || ( dW > 0 ), true ); 1480 #else 1481 xPredInterLumaBlk ( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi, true ); 1482 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMv, iWidth, iHeight, rpcYuvPred, bi, true ); 1483 #endif 1346 1484 1347 if( dW > 0 ) 1485 1348 { … … 1489 1352 TComMv cMVwithDisparity = cMv + cDistparity.m_acNBDV; 1490 1353 pcCU->clipMv(cMVwithDisparity); 1491 #if SHARP_ARP_CHROMA_I01041492 1354 if (iWidth <= 8) 1493 1355 { 1494 1356 pYuvB0->clear(); pYuvB1->clear(); 1495 1357 } 1496 #endif1497 1358 1498 1359 assert ( cDistparity.bDV ); 1499 1360 1500 #if NTT_BUG_FIX_TK541501 1361 TComMv cNBDV = cDistparity.m_acNBDV; 1502 1362 pcCU->clipMv( cNBDV ); 1503 1363 1504 1364 pcPicYuvRef = pcPicYuvBaseCol->getPicYuvRec(); 1505 #if QC_I0129_ARP_FIX1506 1365 xPredInterLumaBlk ( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, true, true ); 1507 #if SHARP_ARP_CHROMA_I01041508 1366 if (iWidth > 8) 1509 #endif 1510 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, true, true ); 1511 #else 1512 xPredInterLumaBlk ( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, bi, true ); 1513 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, bi, true ); 1514 #endif 1515 #else 1516 pcPicYuvRef = pcPicYuvBaseCol->getPicYuvRec(); 1517 xPredInterLumaBlk ( pcCU, pcPicYuvRef, uiPartAddr, &cDistparity.m_acNBDV, iWidth, iHeight, pYuvB0, bi, true ); 1518 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cDistparity.m_acNBDV, iWidth, iHeight, pYuvB0, bi, true ); 1519 #endif 1367 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cNBDV, iWidth, iHeight, pYuvB0, true, true ); 1520 1368 1521 1369 pcPicYuvRef = pcPicYuvBaseRef->getPicYuvRec(); 1522 #if QC_I0129_ARP_FIX1523 1370 xPredInterLumaBlk ( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, true, true ); 1524 #if SHARP_ARP_CHROMA_I0104 1371 1525 1372 if (iWidth > 8) 1526 #endif 1527 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, true, true ); 1528 #else 1529 xPredInterLumaBlk ( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, bi, true ); 1530 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, bi, true ); 1531 #endif 1373 xPredInterChromaBlk( pcCU, pcPicYuvRef, uiPartAddr, &cMVwithDisparity, iWidth, iHeight, pYuvB1, true, true ); 1374 1532 1375 pYuvB0->subtractARP( pYuvB0 , pYuvB1 , uiPartAddr , iWidth , iHeight ); 1533 1376 … … 1540 1383 } 1541 1384 1542 #if QC_I0051_ARP_SIMP1543 1385 Bool TComPrediction::xCheckBiInterviewARP( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eBaseRefPicList, TComPic*& pcPicYuvCurrTRef, TComMv& cBaseTMV, Int& iCurrTRefPoc ) 1544 1386 { … … 1572 1414 Int iCurrRefPOC = pcPicYuvBaseTRef->getPOC(); 1573 1415 Int iCurrRef = pcCU->getSlice()->getFirstTRefIdx(eRefPicListCurr); 1574 #if MTK_I0072_IVARP_SCALING_FIX 1416 1575 1417 if( iCurrRef >= 0 && iCurrPOC != iCurrRefPOC) 1576 #else1577 if( iCurrRef >= 0)1578 #endif1579 1418 { 1580 1419 pcPicYuvCurrTRef = pcCU->getSlice()->getRefPic(eRefPicListCurr,iCurrRef); … … 1608 1447 return false; 1609 1448 } 1610 #endif1611 1449 1612 1450 Void TComPrediction::xPredInterUniARPviewRef( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, TComMvField * pNewMvFiled ) … … 1643 1481 pcYuvBaseCol->getCUAddrAndPartIdx( irefPUX, irefPUY, uiLCUAddr, uiAbsPartAddr); 1644 1482 TComDataCU *pColCU = pcPicYuvBaseCol->getCU( uiLCUAddr ); 1645 #if QC_I0051_ARP_SIMP1646 1483 if( pcCU->getSlice()->isInterB() && !pcCU->getSlice()->getIsDepth() ) 1647 1484 { … … 1708 1545 1709 1546 if( !pColCU->isIntra( uiAbsPartAddr ) && !bTMVAvai ) 1710 #else1711 if(!pColCU->isIntra(uiAbsPartAddr))1712 #endif1713 1547 { 1714 1548 TComMvField puMVField; … … 1723 1557 Int iCurrRefPOC = pcPicYuvBaseTRef->getPOC(); 1724 1558 Int iCurrRef = pcCU->getSlice()->getFirstTRefIdx(eRefPicListCurr); 1725 #if MTK_I0072_IVARP_SCALING_FIX1726 1559 if (iCurrRef >= 0 && iCurrRefPOC != iCurrPOC) 1727 #else1728 if( iCurrRef >= 0)1729 #endif1730 1560 { 1731 1561 pcPicYuvCurrTRef = pcCU->getSlice()->getRefPic(eRefPicListCurr,iCurrRef); … … 1754 1584 pcPicYuvCurrTRef = pcCU->getSlice()->getRefPic (eRefPicList, pcCU->getSlice()->getFirstTRefIdx(eRefPicList)); 1755 1585 } 1756 #if QC_I0129_ARP_FIX 1586 1757 1587 xPredInterLumaBlk ( pcCU, pcYuvBaseCol, uiPartAddr, &cTempDMv, iWidth, iHeight, rpcYuvPred, bi || ( dW > 0 && bTMVAvai ), bTMVAvai); 1758 1588 xPredInterChromaBlk( pcCU, pcYuvBaseCol, uiPartAddr, &cTempDMv, iWidth, iHeight, rpcYuvPred, bi || ( dW > 0 && bTMVAvai ), bTMVAvai); 1759 #else 1760 xPredInterLumaBlk ( pcCU, pcYuvBaseCol, uiPartAddr, &cTempDMv, iWidth, iHeight, rpcYuvPred, bi, bTMVAvai); 1761 xPredInterChromaBlk( pcCU, pcYuvBaseCol, uiPartAddr, &cTempDMv, iWidth, iHeight, rpcYuvPred, bi, bTMVAvai); 1762 #endif 1589 1763 1590 if( dW > 0 && bTMVAvai ) 1764 1591 { … … 1771 1598 pcCU->clipMv(cBaseTMV); 1772 1599 pcCU->clipMv(cTempMv); 1773 #if SHARP_ARP_CHROMA_I0104 1600 1774 1601 if (iWidth <= 8) 1775 1602 { 1776 1603 pYuvCurrTRef->clear(); pYuvBaseTRef->clear(); 1777 1604 } 1778 #endif1779 #if QC_I0129_ARP_FIX1780 1605 xPredInterLumaBlk ( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, true, true); 1781 #if SHARP_ARP_CHROMA_I0104 1606 1782 1607 if (iWidth > 8) 1783 #endif 1784 xPredInterChromaBlk( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, true, true); 1608 xPredInterChromaBlk( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, true, true); 1609 1785 1610 xPredInterLumaBlk ( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv, iWidth, iHeight, pYuvBaseTRef, true, true); 1786 #if SHARP_ARP_CHROMA_I0104 1611 1787 1612 if (iWidth > 8) 1788 #endif 1789 xPredInterChromaBlk( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv, iWidth, iHeight, pYuvBaseTRef, true, true); 1790 #else 1791 xPredInterLumaBlk ( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, bi, true); 1792 xPredInterChromaBlk( pcCU, pcYuvCurrTref, uiPartAddr, &cBaseTMV, iWidth, iHeight, pYuvCurrTRef, bi, true); 1793 xPredInterLumaBlk ( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv, iWidth, iHeight, pYuvBaseTRef, bi, true); 1794 xPredInterChromaBlk( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv, iWidth, iHeight, pYuvBaseTRef, bi, true); 1795 1796 #endif 1613 xPredInterChromaBlk( pcCU, pcYuvBaseTref, uiPartAddr, &cTempMv, iWidth, iHeight, pYuvBaseTRef, true, true); 1614 1797 1615 pYuvCurrTRef->subtractARP( pYuvCurrTRef , pYuvBaseTRef , uiPartAddr , iWidth , iHeight ); 1798 1616 if(dW == 2) … … 1803 1621 } 1804 1622 } 1805 1806 1623 #endif 1807 1624 … … 2328 2145 Int iRecStride = ( eType == TEXT_LUMA ) ? pRecPic->getStride() : pRecPic->getCStride(); 2329 2146 Int iRefStride = ( eType == TEXT_LUMA ) ? pRefPic->getStride() : pRefPic->getCStride(); 2330 #if SEC_IC_NEIGHBOR_CLIP_I00802331 2147 Int iRefOffset, iHor, iVer; 2332 #else2333 Int iCUPelX, iCUPelY, iRefX, iRefY, iRefOffset, iHor, iVer;2334 2335 iCUPelX = pcCU->getCUPelX() + g_auiRasterToPelX[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];2336 iCUPelY = pcCU->getCUPelY() + g_auiRasterToPelY[g_auiZscanToRaster[pcCU->getZorderIdxInCU()]];2337 #endif2338 2148 iHor = pcCU->getSlice()->getIsDepth() ? pMv->getHor() : ( ( pMv->getHor() + 2 ) >> 2 ); 2339 2149 iVer = pcCU->getSlice()->getIsDepth() ? pMv->getVer() : ( ( pMv->getVer() + 2 ) >> 2 ); 2340 #if !SEC_IC_NEIGHBOR_CLIP_I00802341 iRefX = iCUPelX + iHor;2342 iRefY = iCUPelY + iVer;2343 #endif2344 2150 if( eType != TEXT_LUMA ) 2345 2151 { … … 2357 2163 Int precShift = std::max(0, (( eType == TEXT_LUMA ) ? g_bitDepthY : g_bitDepthC) - 12); 2358 2164 2359 #if SEC_IC_NEIGHBOR_CLIP_I00802360 2165 if( pcCU->getPUAbove( uiTmpPartIdx, pcCU->getZorderIdxInCU() ) ) 2361 #else2362 if( pcCU->getPUAbove( uiTmpPartIdx, pcCU->getZorderIdxInCU() ) && iCUPelY > 0 && iRefY > 0 )2363 #endif2364 2166 { 2365 2167 iRefOffset = iHor + iVer * iRefStride - iRefStride; … … 2391 2193 } 2392 2194 2393 #if SEC_IC_NEIGHBOR_CLIP_I00802394 2195 if( pcCU->getPULeft( uiTmpPartIdx, pcCU->getZorderIdxInCU() ) ) 2395 #else2396 if( pcCU->getPULeft( uiTmpPartIdx, pcCU->getZorderIdxInCU() ) && iCUPelX > 0 && iRefX > 0 )2397 #endif2398 2196 { 2399 2197 iRefOffset = iHor + iVer * iRefStride - 1; … … 2429 2227 } 2430 2228 2431 #if FIX_TICKET_712432 2229 if( iCountShift == 0 ) 2433 2230 { … … 2436 2233 return; 2437 2234 } 2438 #endif2439 2235 2440 2236 xy += xx >> IC_REG_COST_SHIFT; … … 2553 2349 // find contour for texture luma block 2554 2350 UInt iDC = 0; 2555 #if SEC_DBBP_DMM4_THRESHOLD_I0076 2351 2556 2352 iDC = piRefBlkY[ 0 ]; 2557 2353 iDC += piRefBlkY[ uiWidth - 1 ]; … … 2559 2355 iDC += piRefBlkY[ uiWidth * (uiHeight - 1) + uiWidth - 1 ]; 2560 2356 iDC = iDC >> 2; 2561 #else2562 for( UInt k = 0; k < (uiWidth*uiHeight); k++ )2563 {2564 iDC += piRefBlkY[k];2565 }2566 2567 Int cuMaxLog2Size = g_aucConvertToBit[g_uiMaxCUWidth]+2; //2568 iDC = iDC >> (cuMaxLog2Size - pcCU->getDepth(0))*2; // iDC /= (uiWidth*uiHeight);2569 #endif2570 2357 2571 2358 piRefBlkY = cTempYuv.getLumaAddr(); -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComPrediction.h
r1039 r1074 90 90 #if H_3D_ARP 91 91 Void xPredInterUniARP ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi=false, TComMvField * pNewMvFiled = NULL ); 92 #if QC_I0051_ARP_SIMP93 92 Bool xCheckBiInterviewARP ( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eBaseRefPicList, TComPic*& pcPicYuvCurrTRef, TComMv& cBaseTMV, Int& iCurrTRefPoc ); 94 #endif95 93 Void xPredInterUniARPviewRef( TComDataCU* pcCU, UInt uiPartAddr, Int iWidth, Int iHeight, RefPicList eRefPicList, TComYuv*& rpcYuvPred, Bool bi, TComMvField * pNewMvFiled = NULL ); 96 94 #endif … … 179 177 PartSize getPartitionSizeFromDepth(Pel* pDepthPels, UInt uiDepthStride, UInt uiSize); 180 178 Bool getSegmentMaskFromDepth( Pel* pDepthPels, UInt uiDepthStride, UInt uiWidth, UInt uiHeight, Bool* pMask ); 181 #if SHARP_DBBP_SIMPLE_FLTER_I0109182 179 Void combineSegmentsWithMask( TComYuv* pInYuv[2], TComYuv* pOutYuv, Bool* pMask, UInt uiWidth, UInt uiHeight, UInt uiPartAddr, UInt partSize ); 183 #else184 Void combineSegmentsWithMask( TComYuv* pInYuv[2], TComYuv* pOutYuv, Bool* pMask, UInt uiWidth, UInt uiHeight, UInt uiPartAddr = 0 );185 #endif186 180 #endif 187 181 -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComRom.cpp
r1066 r1074 355 355 HALF_PEL, // 8x8 356 356 FULL_PEL, // 16x16 357 #if SHARP_DMM1_I0110358 357 FULL_PEL, // 32x32 359 358 FULL_PEL, // 64x64 360 359 FULL_PEL // 128x128 361 #else362 DOUBLE_PEL, // 32x32363 DOUBLE_PEL, // 64x64364 DOUBLE_PEL // 128x128365 #endif366 360 }; 367 361 … … 374 368 0, 4, 7, 8, 8, 0 }; 375 369 376 #if SHARP_DMM1_I0110377 370 Bool g_wedgePattern[32*32]; 378 #endif379 371 380 372 extern std::vector< std::vector<TComWedgelet> > g_dmmWedgeLists; … … 388 380 389 381 Char g_aucConvertToBit [ MAX_CU_SIZE+1 ]; 390 #if !MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX391 #if H_3D_IC392 UInt g_aICEnableCANDIDATE[10] = { 0, };393 UInt g_aICEnableNUM[ 10 ] = { 0, };394 Int g_lastlayer=0;395 #endif396 #endif397 382 #if ENC_DEC_TRACE 398 383 FILE* g_hTrace = NULL; … … 676 661 if( !g_dmmWedgeLists.empty() ) return; 677 662 678 #if SHARP_DMM1_I0110679 663 for( UInt ui = g_aucConvertToBit[DIM_MIN_SIZE]; ui < (g_aucConvertToBit[DIM_MAX_SIZE]); ui++ ) 680 #else681 for( UInt ui = g_aucConvertToBit[DIM_MIN_SIZE]; ui < (g_aucConvertToBit[DIM_MAX_SIZE]+1); ui++ )682 #endif683 664 { 684 665 UInt uiWedgeBlockSize = ((UInt)DIM_MIN_SIZE)<<ui; … … 764 745 switch( eWedgeRes ) 765 746 { 766 #if !SHARP_DMM1_I0110767 case( DOUBLE_PEL ): { uiBlockSize = (uiWidth>>1); break; }768 #endif769 747 case( FULL_PEL ): { uiBlockSize = uiWidth; break; } 770 748 case( HALF_PEL ): { uiBlockSize = (uiWidth<<1); break; } -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComRom.h
r1066 r1074 166 166 extern const UChar g_dmm3IntraTabIdxBits[6]; 167 167 168 #if SHARP_DMM1_I0110169 168 extern Bool g_wedgePattern[32*32]; 170 #endif171 169 172 170 extern std::vector< std::vector<TComWedgelet> > g_dmmWedgeLists; … … 230 228 231 229 extern Char g_aucConvertToBit [ MAX_CU_SIZE+1 ]; // from width to log2(width)-2 232 #if !MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX233 #if H_3D_IC234 extern UInt g_aICEnableCANDIDATE[10];235 extern UInt g_aICEnableNUM[ 10 ]; //10 layers236 extern Int g_lastlayer;237 #endif238 #endif239 230 240 231 #ifndef ENC_DEC_TRACE -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComSlice.cpp
r1066 r1074 142 142 , m_depthToDisparityF ( NULL ) 143 143 #endif 144 #if MTK_SINGLE_DEPTH_MODE_I0095144 #if H_3D_SINGLE_DEPTH 145 145 , m_bApplySingleDepthMode (false) 146 146 #endif … … 650 650 651 651 TComPic** refPicSetStCurr [2] = { RefPicSetStCurr0, RefPicSetStCurr1 }; 652 #if FIX_WARNING653 652 Int numPocStCurr[2] = { (Int)NumPocStCurr0, (Int)NumPocStCurr1 }; 654 #else655 Int numPocStCurr[2] = { NumPocStCurr0, NumPocStCurr1 };656 #endif657 653 658 654 for (Int li = 0; li < ((m_eSliceType==B_SLICE) ? 2 : 1); li++) … … 1105 1101 } 1106 1102 #endif 1107 #if MTK_SINGLE_DEPTH_MODE_I00951103 #if H_3D_SINGLE_DEPTH 1108 1104 m_bApplySingleDepthMode = pSrc->m_bApplySingleDepthMode; 1109 1105 #endif … … 1970 1966 m_viewIndex [i] = -1; 1971 1967 m_vpsDepthModesFlag [i] = false; 1972 #if SEC_HLS_CLEANUP_I01001973 1968 m_ivMvScalingFlag[i] = true; 1974 #else1975 m_ivMvScalingFlag = true;1976 #endif1977 #if SEPARATE_FLAG_I00851978 1969 m_bIVPFlag [i] = false; 1979 #endif1980 1970 #endif 1981 1971 … … 2016 2006 #endif 2017 2007 #endif 2018 #if MTK_I0099_VPS_EX22008 #if H_3D_QTLPC 2019 2009 m_bLimQtPredFlag [ i ] = false; 2020 2010 #endif … … 2028 2018 m_bInterSDCFlag [ i ] = false; 2029 2019 #endif 2030 #if SEPARATE_FLAG_I00852020 #if H_3D 2031 2021 m_bIVPFlag [ i ] = false; 2032 2022 #endif … … 2309 2299 for ( i = 0; i < iNumViews ; i++ ) 2310 2300 { 2311 #if H_3D_FIX_UNINIT2312 2301 m_bCamParPresent[i] = false; 2313 #endif2314 2302 m_bCamParInSliceHeader[i] = false; 2315 2303 m_aaaiCodedScale[i] = new Int*[ 2 ]; … … 2910 2898 , m_pcmLog2MaxSize ( 5) 2911 2899 , m_uiPCMLog2MinSize ( 7) 2912 #if !MTK_I0099_VPS_EX22913 #if H_3D_QTLPC2914 , m_bUseQTL (false)2915 , m_bUsePC (false)2916 #endif2917 #endif2918 2900 , m_bitDepthY ( 8) 2919 2901 , m_bitDepthC ( 8) … … 3186 3168 // allocate some memory and initialize with default mapping 3187 3169 m_iNumDepthmapValues[i] = ((1 << m_uiDepthViewBitDepth)-1)+1; 3188 #if !FIX_TICKET_773189 m_iBitsPerDepthValue[i] = numBitsForValue(m_iNumDepthmapValues[i]);3190 #endif3191 3170 m_iDepthValue2Idx[i] = (Int*) xMalloc(Int, m_iNumDepthmapValues[i]); 3192 3171 m_iIdx2DepthValue[i] = (Int*) xMalloc(Int, m_iNumDepthmapValues[i]); … … 3277 3256 // update DLT variables 3278 3257 m_iNumDepthmapValues[layerIdInVps] = iNumDepthValues; 3279 #if !FIX_TICKET_77 3280 m_iBitsPerDepthValue[layerIdInVps] = numBitsForValue(m_iNumDepthmapValues[layerIdInVps]); 3281 #endif 3282 } 3283 3284 #if H_3D_DELTA_DLT 3258 } 3259 3285 3260 Void TComDLT::getDeltaDLT( Int layerIdInVps, Int* piDLTInRef, UInt uiDLTInRefNum, Int* piDeltaDLTOut, UInt *puiDeltaDLTOutNum ) 3286 3261 { … … 3347 3322 setDepthLUTs(layerIdInVps, aiIdx2DepthValue, uiNumDepthValues); 3348 3323 } 3349 #endif3350 3324 3351 3325 #endif … … 4065 4039 m_bApplyIC = true; 4066 4040 Int refLayer = curLayer-1; 4067 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX 4041 4068 4042 Int ICEnableCandidate = getICEnableCandidate(refLayer); 4069 4043 Int ICEnableNum = getICEnableNum(refLayer); … … 4083 4057 setICEnableCandidate(curLayer, 0); 4084 4058 setICEnableNum(curLayer, 0); 4085 #else4086 if( (refLayer>=0) && (g_aICEnableCANDIDATE[refLayer]>0) )4087 {4088 Double ratio=Double(g_aICEnableNUM[refLayer])/Double(g_aICEnableCANDIDATE[refLayer]);4089 4090 if( ratio > IC_LOW_LATENCY_ENCODING_THRESHOLD)4091 {4092 m_bApplyIC=true;4093 }4094 else4095 {4096 m_bApplyIC=false;4097 }4098 }4099 g_aICEnableNUM[curLayer]=0;4100 g_aICEnableCANDIDATE[curLayer]=0;4101 g_lastlayer=getDepth();4102 #endif4103 4059 } 4104 4060 } … … 4210 4166 4211 4167 #if H_3D_DDD 4212 #if LGE_FCO_I01164168 #if H_3D_FCO 4213 4169 if( getIsDepth() && getViewIndex() > 0 && getVPS()->getMPIFlag(layerIdInVPS)) 4214 4170 #else -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComSlice.h
r1066 r1074 1009 1009 #if H_3D_IV_MERGE 1010 1010 Bool m_ivMvPredFlag [ MAX_NUM_LAYERS ]; 1011 #if SEC_HLS_CLEANUP_I01001012 1011 Bool m_ivMvScalingFlag [ MAX_NUM_LAYERS ]; 1013 #endif1014 1012 #if H_3D_SPIVMP 1015 1013 Int m_iSubPULog2Size [MAX_NUM_LAYERS ]; 1016 #if MTK_I0099_VPS_EX21017 1014 Int m_iSubPUMPILog2Size [MAX_NUM_LAYERS ]; 1018 #else 1019 Int m_iSubPUMPILog2Size; 1020 #endif 1021 #endif 1022 #endif 1023 #if MTK_I0099_VPS_EX2 1015 #endif 1016 #endif 1017 #if H_3D_QTLPC 1024 1018 Bool m_bLimQtPredFlag [ MAX_NUM_LAYERS ]; 1025 1019 #endif … … 1031 1025 #endif 1032 1026 Bool m_vpsDepthModesFlag [MAX_NUM_LAYERS ]; 1033 #if SEPARATE_FLAG_I00851027 #if H_3D 1034 1028 Bool m_bIVPFlag [MAX_NUM_LAYERS ]; 1035 1029 #endif 1036 1037 1030 #if H_3D 1038 1031 UInt m_uiCamParPrecision; … … 1041 1034 Int ***m_aaaiCodedScale ; 1042 1035 Int ***m_aaaiCodedOffset; 1043 1044 #if !SEC_HLS_CLEANUP_I01001045 Bool m_ivMvScalingFlag;1046 #endif1047 1048 1036 #endif 1049 1037 #if H_3D_INTER_SDC … … 1470 1458 Int getSubPULog2Size(Int layerIdInVps) { return m_iSubPULog2Size[layerIdInVps]; } 1471 1459 Void setSubPULog2Size(Int layerIdInVps, Int u) { m_iSubPULog2Size[layerIdInVps] = u;} 1472 #if MTK_I0099_VPS_EX21473 1460 Int getSubPUMPILog2Size(Int layerIdInVps) { return m_iSubPUMPILog2Size[layerIdInVps]; } 1474 1461 Void setSubPUMPILog2Size(Int layerIdInVps, Int u) { m_iSubPUMPILog2Size[layerIdInVps] = u;} 1475 #else 1476 Int getSubPUMPILog2Size( ) { return m_iSubPUMPILog2Size; } 1477 Void setSubPUMPILog2Size( Int u ) { m_iSubPUMPILog2Size = u; } 1478 #endif 1479 #endif 1480 #endif 1481 #if MTK_I0099_VPS_EX2 1462 #endif 1463 #endif 1464 #if H_3D_QTLPC 1482 1465 Void setLimQtPredFlag ( Int layerIdInVps, Bool val ) { m_bLimQtPredFlag[ layerIdInVps ] = val; } 1483 1466 Bool getLimQtPredFlag ( Int layerIdInVps ) { return m_bLimQtPredFlag[layerIdInVps];} … … 1493 1476 Void setVpsDepthModesFlag( Int layerIdInVps, Bool val ) { m_vpsDepthModesFlag[ layerIdInVps ] = val; } 1494 1477 Bool getVpsDepthModesFlag( Int layerIdInVps ) { return m_vpsDepthModesFlag[ layerIdInVps ]; } 1495 #if SEPARATE_FLAG_I0085 1478 1496 1479 Void setIVPFlag( Int layerIdInVps, Bool val ) { m_bIVPFlag[ layerIdInVps ] = val; } 1497 1480 Bool getIVPFlag( Int layerIdInVps ) { return m_bIVPFlag[ layerIdInVps ]; } 1498 #endif 1499 1500 #if SEC_HLS_CLEANUP_I0100 1481 1501 1482 Bool getIvMvScalingFlag ( Int layerIdInVps ) { return m_ivMvScalingFlag[ layerIdInVps ]; } 1502 1483 Void setIvMvScalingFlag (Int layerIdInVps, Bool b ) { m_ivMvScalingFlag[ layerIdInVps ] = b; } 1503 #else1504 Bool getIvMvScalingFlag ( ) { return m_ivMvScalingFlag; }1505 Void setIvMvScalingFlag ( Bool b ) { m_ivMvScalingFlag = b; }1506 #endif1507 1484 1508 1485 #if H_3D_INTER_SDC … … 1530 1507 Bool m_bInterViewDltPredEnableFlag[ MAX_NUM_LAYERS ]; 1531 1508 1532 #if !FIX_TICKET_771533 Int m_iBitsPerDepthValue [ MAX_NUM_LAYERS ];1534 #endif1535 1509 Int m_iNumDepthmapValues [ MAX_NUM_LAYERS ]; 1536 1510 Int* m_iDepthValue2Idx [ MAX_NUM_LAYERS ]; … … 1559 1533 UInt getDepthViewBitDepth() { return m_uiDepthViewBitDepth; } 1560 1534 1561 #if !FIX_TICKET_771562 Int getBitsPerDepthValue( Int layerIdInVps ) { return getUseDLTFlag(layerIdInVps)?m_iBitsPerDepthValue[layerIdInVps]:g_bitDepthY; }1563 #endif1564 1535 Int getNumDepthValues( Int layerIdInVps ) { return getUseDLTFlag(layerIdInVps)?m_iNumDepthmapValues[layerIdInVps]:((1 << g_bitDepthY)-1); } 1565 1536 Int depthValue2idx( Int layerIdInVps, Pel value ) { return getUseDLTFlag(layerIdInVps)?m_iDepthValue2Idx[layerIdInVps][value]:value; } 1566 #if RWTH_DLT_CLIP_I00571567 1537 Pel idx2DepthValue( Int layerIdInVps, UInt uiIdx ) { return getUseDLTFlag(layerIdInVps)?m_iIdx2DepthValue[layerIdInVps][ClipY(uiIdx)]:uiIdx; } 1568 #else1569 Pel idx2DepthValue( Int layerIdInVps, UInt uiIdx ) { return getUseDLTFlag(layerIdInVps)?m_iIdx2DepthValue[layerIdInVps][uiIdx]:uiIdx; }1570 #endif1571 1538 Void setDepthLUTs( Int layerIdInVps, Int* idx2DepthValue = NULL, Int iNumDepthValues = 0 ); 1572 #if H_3D_DELTA_DLT1573 1539 Int* idx2DepthValue( Int layerIdInVps ) { return m_iIdx2DepthValue[layerIdInVps]; } 1574 1540 Void getDeltaDLT( Int layerIdInVps, Int* piDLTInRef, UInt uiDLTInRefNum, Int* piDeltaDLTOut, UInt *puiDeltaDLTOutNum ); 1575 1541 Void setDeltaDLT( Int layerIdInVps, Int* piDLTInRef, UInt uiDLTInRefNum, Int* piDeltaDLTIn, UInt uiDeltaDLTInNum ); 1576 #endif1577 1542 }; 1578 1543 #endif … … 1833 1798 Bool m_useAMP; 1834 1799 1835 #if !MTK_I0099_VPS_EX21836 #if H_3D_QTLPC1837 Bool m_bUseQTL;1838 Bool m_bUsePC;1839 #endif1840 #endif1841 1800 // Parameter 1842 1801 Int m_bitDepthY; … … 2120 2079 2121 2080 #endif 2122 #if !MTK_I0099_VPS_EX22123 #if H_3D_QTLPC2124 Void setUseQTL( Bool b ) { m_bUseQTL = b; }2125 Bool getUseQTL() { return m_bUseQTL; }2126 Void setUsePC ( Bool b ) { m_bUsePC = b; }2127 Bool getUsePC () { return m_bUsePC; }2128 #endif2129 #endif2130 2081 #if H_MV 2131 2082 Int getLayerId () { return m_layerId; } … … 2599 2550 UInt m_aiDDDShift [MAX_NUM_LAYERS]; 2600 2551 #endif 2601 #if MTK_SINGLE_DEPTH_MODE_I00952552 #if H_3D_SINGLE_DEPTH 2602 2553 Bool m_bApplySingleDepthMode; 2603 2554 #endif 2604 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX2555 #if H_3D_IC 2605 2556 Int *m_aICEnableCandidate; 2606 2557 Int *m_aICEnableNum; … … 2676 2627 TComPic* getTexturePic () { return m_ivPicsCurrPoc[0][ m_viewIndex ]; } 2677 2628 #endif 2678 #if MTK_SINGLE_DEPTH_MODE_I00952629 #if H_3D_SINGLE_DEPTH 2679 2630 Void setApplySingleDepthMode( Bool b ) { m_bApplySingleDepthMode = b; } 2680 2631 Bool getApplySingleDepthMode() { return m_bApplySingleDepthMode; } … … 2917 2868 Int* getDepthToDisparityF( Int refViewIdx ) { return m_depthToDisparityF[ refViewIdx ]; }; 2918 2869 Bool getVpsDepthModesFlag () { return getVPS()->getVpsDepthModesFlag( getVPS()->getLayerIdInVps( m_layerId ) ); } 2919 #if SEPARATE_FLAG_I00852920 2870 Bool getIVPFlag () { return getVPS()->getIVPFlag( getVPS()->getLayerIdInVps( m_layerId ) ); } 2921 2871 #endif 2922 #endif 2923 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX 2872 #if H_3D_IC 2924 2873 Void setICEnableCandidate( Int* ICEnableCandidate) { m_aICEnableCandidate = ICEnableCandidate; }; 2925 2874 Void setICEnableNum( Int* ICEnableNum) { m_aICEnableNum = ICEnableNum; }; -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComWedgelet.cpp
r1039 r1074 68 68 m_uiHeight ( rcWedge.m_uiHeight ), 69 69 m_pbPattern( (Bool*)xMalloc( Bool, (m_uiWidth * m_uiHeight) ) ) 70 #if SHARP_DMM1_I011071 70 ,m_pbScaledPattern( g_wedgePattern ) 72 #endif73 71 { 74 72 ::memcpy( m_pbPattern, rcWedge.m_pbPattern, sizeof(Bool) * (m_uiWidth * m_uiHeight)); … … 88 86 89 87 m_pbPattern = (Bool*)xMalloc( Bool, (m_uiWidth * m_uiHeight) ); 90 #if SHARP_DMM1_I011091 88 m_pbScaledPattern = g_wedgePattern; 92 #endif93 89 } 94 90 … … 187 183 switch( m_eWedgeRes ) 188 184 { 189 #if !SHARP_DMM1_I0110190 case( DOUBLE_PEL ): { uiTempBlockSize = m_uiWidth; uhXs = (m_uhXs<<1); uhYs = (m_uhYs<<1); uhXe = (m_uhXe<<1); uhYe = (m_uhYe<<1); } break;191 #endif192 185 case( FULL_PEL ): { uiTempBlockSize = m_uiWidth; uhXs = m_uhXs; uhYs = m_uhYs; uhXe = m_uhXe; uhYe = m_uhYe; } break; 193 186 case( HALF_PEL ): { uiTempBlockSize = (m_uiWidth<<1); uhXs = m_uhXs; uhYs = m_uhYs; uhXe = m_uhXe; uhYe = m_uhYe; } break; 194 187 } 195 196 #if !SHARP_DMM1_I0110197 if( m_eWedgeRes == DOUBLE_PEL) // adjust line-end for DOUBLE_PEL resolution198 {199 if( m_uhOri == 1 ) { uhXs = uiTempBlockSize-1; }200 if( m_uhOri == 2 ) { uhXe = uiTempBlockSize-1; uhYs = uiTempBlockSize-1; }201 if( m_uhOri == 3 ) { uhYe = uiTempBlockSize-1; }202 if( m_uhOri == 4 ) { uhYe = uiTempBlockSize-1; }203 if( m_uhOri == 5 ) { uhXs = uiTempBlockSize-1; }204 }205 #endif206 188 207 189 Bool* pbTempPattern = new Bool[ (uiTempBlockSize * uiTempBlockSize) ]; … … 233 215 switch( m_eWedgeRes ) 234 216 { 235 #if !SHARP_DMM1_I0110236 case( DOUBLE_PEL ): { for( UInt k = 0; k < (m_uiWidth * m_uiHeight); k++ ) { m_pbPattern[k] = pbTempPattern[k]; }; } break;237 #endif238 217 case( FULL_PEL ): { for( UInt k = 0; k < (m_uiWidth * m_uiHeight); k++ ) { m_pbPattern[k] = pbTempPattern[k]; }; } break; 239 218 case( HALF_PEL ): // sub-sampling by factor 2 … … 327 306 } 328 307 329 #if SHARP_DMM1_I0110330 308 Bool* TComWedgelet::getScaledPattern(UInt uiDstSize) 331 309 { 332 Bool *pbSrcPat = this->getPattern(); 333 UInt uiSrcSize = this->getStride(); 334 335 Int scale = (g_aucConvertToBit[uiDstSize] - g_aucConvertToBit[uiSrcSize]); 336 assert(scale>=0); 337 for (Int y=0; y<uiDstSize; y++) 338 { 339 for (Int x=0; x<uiDstSize; x++) 340 { 341 Int srcX = x>>scale; 342 Int srcY = y>>scale; 343 m_pbScaledPattern[y*uiDstSize + x] = pbSrcPat[ srcY*uiSrcSize + srcX ]; 344 } 345 } 346 return m_pbScaledPattern; 347 } 348 #endif 310 Bool *pbSrcPat = this->getPattern(); 311 UInt uiSrcSize = this->getStride(); 312 313 Int scale = (g_aucConvertToBit[uiDstSize] - g_aucConvertToBit[uiSrcSize]); 314 assert(scale>=0); 315 for (Int y=0; y<uiDstSize; y++) 316 { 317 for (Int x=0; x<uiDstSize; x++) 318 { 319 Int srcX = x>>scale; 320 Int srcY = y>>scale; 321 m_pbScaledPattern[y*uiDstSize + x] = pbSrcPat[ srcY*uiSrcSize + srcX ]; 322 } 323 } 324 return m_pbScaledPattern; 325 } 349 326 350 327 TComWedgeNode::TComWedgeNode() -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComWedgelet.h
r1039 r1074 58 58 #define DIM_NO_IDX MAX_UINT 59 59 60 #if HS_DMM_SIGNALLING_I012061 60 __inline UInt getDimType ( Int intraMode ) 62 61 { … … 64 63 return (dimType >= 0 && dimType < DIM_NUM_TYPE) ? (UInt)dimType : DIM_NO_IDX; 65 64 } 66 #else67 __inline UInt getDimType ( Int intraMode ) { Int dimType = (intraMode-DIM_OFFSET)/2; return (dimType >= 0 && dimType < DIM_NUM_TYPE) ? (UInt)dimType : DIM_NO_IDX; }68 #endif69 65 __inline Bool isDimMode ( Int intraMode ) { return (getDimType( intraMode ) < DIM_NUM_TYPE); } 70 #if !HS_DMM_SIGNALLING_I012071 __inline Bool isDimDeltaDC( Int intraMode ) { return (isDimMode( intraMode ) && ((intraMode-DIM_OFFSET)%2) == 1); }72 #endif73 66 #endif 74 67 … … 79 72 enum WedgeResolution 80 73 { 81 #if !SHARP_DMM1_I011082 DOUBLE_PEL,83 #endif84 74 FULL_PEL, 85 75 HALF_PEL … … 106 96 107 97 Bool* m_pbPattern; 108 #if SHARP_DMM1_I0110109 98 Bool* m_pbScaledPattern; 110 #endif111 99 112 100 Void xGenerateWedgePattern(); … … 134 122 Bool getIsCoarse() { return m_bIsCoarse; } 135 123 UInt getAng () { return m_uiAng; } 136 #if SHARP_DMM1_I0110137 124 Bool* getScaledPattern(UInt uiWidth); 138 #endif139 125 140 126 Void setWedgelet( UChar uhXs, UChar uhYs, UChar uhXe, UChar uhYe, UChar uhOri, WedgeResolution eWedgeRes, Bool bIsCoarse = false ); -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TComYuv.cpp
r1039 r1074 689 689 UInt iSrc1Stride = pcYuvSrc1->getStride(); 690 690 UInt iDstStride = getStride(); 691 #if QC_I0129_ARP_FIX692 691 Int iIFshift = IF_INTERNAL_PREC - g_bitDepthY; 693 692 Int iOffSet = ( 1 << ( iIFshift - 1 ) ) + IF_INTERNAL_OFFS; 694 #endif695 693 for ( y = uiHeight-1; y >= 0; y-- ) 696 694 { … … 700 698 if( bClip ) 701 699 { 702 #if QC_I0129_ARP_FIX703 700 pDst[x] = ClipY( ( pDst[x] + iOffSet ) >> iIFshift ); 704 #else705 pDst[x] = ClipY( pDst[x] );706 #endif707 701 } 708 702 } … … 727 721 UInt iSrc1Stride = pcYuvSrc1->getCStride(); 728 722 UInt iDstStride = getCStride(); 729 #if QC_I0129_ARP_FIX 723 730 724 Int iIFshift = IF_INTERNAL_PREC - g_bitDepthC; 731 725 Int iOffSet = ( 1 << ( iIFshift - 1 ) ) + IF_INTERNAL_OFFS; 732 #endif 726 733 727 for ( y = uiHeight-1; y >= 0; y-- ) 734 728 { … … 739 733 if( bClip ) 740 734 { 741 #if QC_I0129_ARP_FIX742 735 pDstU[x] = ClipC( ( pDstU[x] + iOffSet ) >> iIFshift ); 743 736 pDstV[x] = ClipC( ( pDstV[x] + iOffSet ) >> iIFshift ); 744 #else745 pDstU[x] = ClipC( pDstU[x] );746 pDstV[x] = ClipC( pDstV[x] );747 #endif748 737 } 749 738 } … … 761 750 { 762 751 subtractARPLuma ( pcYuvSrc0, pcYuvSrc1, uiAbsPartIdx, uiWidth , uiHeight ); 763 #if SHARP_ARP_CHROMA_I0104 752 764 753 if (uiWidth > 8) 765 #endif 766 subtractARPChroma( pcYuvSrc0, pcYuvSrc1, uiAbsPartIdx, uiWidth>>1 , uiHeight>>1 ); 754 subtractARPChroma( pcYuvSrc0, pcYuvSrc1, uiAbsPartIdx, uiWidth>>1 , uiHeight>>1 ); 767 755 } 768 756 … … 823 811 { 824 812 multiplyARPLuma( uiAbsPartIdx , uiWidth , uiHeight , dW ); 825 #if SHARP_ARP_CHROMA_I0104 813 826 814 if (uiWidth > 8) 827 #endif 828 multiplyARPChroma( uiAbsPartIdx , uiWidth >> 1 , uiHeight >> 1 , dW ); 815 multiplyARPChroma( uiAbsPartIdx , uiWidth >> 1 , uiHeight >> 1 , dW ); 829 816 } 830 817 -
branches/HTM-12.1-dev0/source/Lib/TLibCommon/TypeDef.h
r1066 r1074 111 111 // MTK_ARP_REF_SELECTION_G0053 ARP Reference picture selection in JCT3V-G0053 112 112 // MTK_ALIGN_SW_WD_BI_PRED_ARP_H0085 Align the SW and WD for the bi-prediction ARP PUs by disallowing non-normative fast bi-prediction for ARP PUs, JCT3V-H0085 113 113 // QC_I0051_ARP_SIMP 114 // SHARP_ARP_CHROMA_I0104 115 // MTK_I0072_IVARP_SCALING_FIX 114 116 115 117 #define H_3D_IC 1 // Illumination Compensation, JCT3V-B0045, JCT3V-C0046, JCT3V-D0060 … … 123 125 // SEC_IC_ARP_SIG_G0072, Disabling IC when ARP is enabled, option 1 in JCT3V-G0072, part 2 in JCT3V-G0121 124 126 // MTK_LOW_LATENCY_IC_ENCODING_H0086 Low-latency IC encoding in JCT3V-H0086 125 126 #define MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX 1 // Remove the global variables used in JCT3V-H0086 127 128 129 #define SEC_IC_NEIGHBOR_CLIP_I0080 1 // Clipping of neighboring sample position, JCT3V-I0080 130 127 // MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX 1 // Remove the global variables used in JCT3V-H0086 128 // SEC_IC_NEIGHBOR_CLIP_I0080 // Clipping of neighboring sample position, JCT3V-I0080 131 129 132 130 #if H_3D_NBDV … … 177 175 // SHARP_SIMPLE_MERGE_H0062 Restrict 3D-HEVC merge cand in small PUs 178 176 // MTK_DIS_SPBIP8X4_H0205 Disable bi-prediction for 8x4 and 4x8 sub PU and remove the SPIVMP 2Nx2N restriction 179 // SEC_ADAPT_DISABLE_IVMP Disalbing IVMP merge candidates when IC is enabled, JCT3V-H0070 180 181 #define SEC_SIMP_SHIFTED_DV_I0086 1 // Simplification of Shifted DV candidate, JCT3V-I0086 177 // SEC_ADAPT_DISABLE_IVMP Disabling IVMP merge candidates when IC is enabled, JCT3V-H0070 178 // SEC_SIMP_SHIFTED_DV_I0086 Simplification of Shifted DV candidate, JCT3V-I0086 179 180 182 181 183 182 #define H_3D_TMVP 1 // QC_TMVP_C0047 … … 222 221 // SEC_NO_RESI_DLT_H0105 223 222 // MTK_DLT_CODING_FIX_H0091 224 225 #define MTK_SINGLE_DEPTH_MODE_I0095 1 // Single depth mode proposed in JCT3V-I0095 226 #if MTK_SINGLE_DEPTH_MODE_I0095 227 #define MTK_SINGLE_DEPTH_MODE_CANDIDATE_LIST_SIZE 2 // size of the sample candidate list 228 #endif 229 230 #define H_3D_FIX_UNINIT 1 // Fix uninitialized flag 223 // HS_DMM_SIGNALLING_I0120 224 // SHARP_DMM1_I0110 // LUT size reduction for DMM1 proposed in JCT3V-I0110 225 // FAST_SDC_OFFSET_DECISION_I0084 226 // SEPARATE_FLAG_I0085 227 // H_3D_DELTA_DLT 228 // RWTH_DLT_CLIP_I0057 1 229 230 231 232 #define H_3D_SINGLE_DEPTH 1 // Single depth mode proposed in JCT3V-I0095 233 234 231 235 #define H_3D_INTER_SDC 1 // INTER SDC, Inter simplified depth coding 232 236 // LGE_INTER_SDC_E0156 Enable inter SDC for depth coding … … 245 249 // MTK_DBBP_SIGNALING_H0094 246 250 // H_3D_FIX_DBBP_IVMP Fix . Enable IVMP is always disabled, when DBBP is enabled. The original intention is to disable Sub-PU IVMP when DBBP is enabled, not to disable IVMP itself. 247 248 #define SEC_DBBP_EXPLICIT_SIG_I0077 1 // Remove the partition derivation and signal dbbp_flag only when the partion mode is 2NxN/Nx2N, JCT3V-I0077 249 #define SEC_DBBP_DISALLOW_8x8_I0078 1 // Disallow DBBP in 8x8 CU, JCT3V-I0078 250 #define SHARP_DBBP_SIMPLE_FLTER_I0109 1 // Simple condition and one dimensional dilter for DBBP 251 #define SEC_DBBP_DMM4_THRESHOLD_I0076 1 // Simplification of threshold derivation for DBBP and DMM4, JCT3V-I0076 251 // SEC_DBBP_EXPLICIT_SIG_I0077 1 // Remove the partition derivation and signal dbbp_flag only when the partition mode is 2NxN/Nx2N, JCT3V-I0077 252 // Disallow DBBP in 8x8 CU, JCT3V-I0078 253 // SHARP_DBBP_SIMPLE_FLTER_I0109 1 // Simple condition and one dimensional filter for DBBP 254 // SEC_DBBP_DMM4_THRESHOLD_I0076 Simplification of threshold derivation for DBBP and DMM4, JCT3V-I0076 252 255 253 256 … … 256 259 #define H_3D_FCO 0 // Flexible coding order for 3D 257 260 #if H_3D_FCO 258 #define LGE_FCO_I01161259 #endif 260 261 #define SCU_HS_FAST_INTRA_SDC_I0123 1261 #define H_3D_FCO 1 262 #endif 263 264 #define H_3D_FAST_INTRA_SDC 1 // I0123 262 265 263 266 // OTHERS … … 271 274 #endif 272 275 273 #define MTK_I0099_VPS_EX2 1 ///< JCT3V-I0099, sub-PU size signaling and lim_qt_pred_flag in VPS extension 2274 #define MTK_I0099_FIX 1 ///< Fix the problem of removing encoder only QTL275 276 276 // Rate Control 277 277 #define KWU_FIX_URQ 1 278 278 #define KWU_RC_VIEWRC_E0227 0 ///< JCT3V-E0227, view-wise target bitrate allocation 279 279 #define KWU_RC_MADPRED_E0227 0 ///< JCT3V-E0227, inter-view MAD prediction 280 281 #define SEC_VPS_CLEANUP_I0090 1282 #define SEC_HLS_CLEANUP_I0100 1283 284 #define H_3D_FIX_64BIT_SHIFT 1285 280 #endif // H_3D 286 281 … … 292 287 293 288 // Fixes 294 #define FIX_TICKET_79 1 // Unused VSP code 295 #define FIX_TICKET_75 1 // Bi-pred restriction bug in VSP 296 #define FIX_TICKET_68 1 // MV clipping bug in the sub-PU MPI default MV generation 297 #define FIX_TICKET_71 1 // IC parameters is meaningless in HTM when no training samples are available 298 #define FIX_TICKET_77 1 // Unused variable m_iBitsPerDepthValue 299 #define FIX_TICKET_76 1 // unused functions 300 #define FIX_TICKET_62 1 // buffer overflow for print 301 #define FIX_TICKET_61 1 // layerIdsInSets size check 289 290 ///// ***** SINGLE DEPTH MODE ********* 291 #if H_3D_SINGLE_DEPTH 292 #define SINGLE_DEPTH_MODE_CAND_LIST_SIZE 2 // size of the sample candidate list 293 #endif 302 294 303 295 ///// ***** VIEW SYNTHESIS OPTIMIZAION ********* … … 308 300 #define H_3D_VSO_RM_ASSERTIONS 0 // Output VSO assertions 309 301 #define H_3D_VSO_SYNTH_DIST_OUT 0 // Output of synthesized view distortion instead of depth distortion in encoder output 310 #define H_3D_VSO_FIX 1 // This fix should be enabled after verification311 302 #endif 312 303 … … 321 312 #if H_3D_ARP 322 313 #define H_3D_ARP_WFNR 3 323 #define QC_I0129_ARP_FIX 1324 #define QC_I0051_ARP_SIMP 1325 #define SHARP_ARP_CHROMA_I0104 1326 #define MTK_I0072_IVARP_SCALING_FIX 1327 314 #endif 328 315 329 316 ///// ***** DEPTH INTRA MODES ********* 330 317 #if H_3D_DIM 318 // HHI_DMM4_ENC_I0066 331 319 #define H_3D_DIM_DMM 1 // Depth Modeling Modes 332 320 #define H_3D_DIM_SDC 1 // Simplified Depth Coding method 333 321 #define H_3D_DIM_DLT 1 // Depth Lookup Table 334 #define HS_DMM_SIGNALLING_I0120 1 335 #define SHARP_DMM1_I0110 1 // LUT size reduction for DMM1 proposed in JCT3V-I0110 336 #define FIX_WARNING 1 // fix narrowing conversion of NumPocStCurr0,NumPocStCurr1 at TComSlice.cpp 337 #define FAST_SDC_OFFSET_DECISION_I0084 1 338 #define SEPARATE_FLAG_I0085 1 339 340 #if H_3D_DIM_DLT 341 #define H_3D_DELTA_DLT 1 342 #define RWTH_DLT_CLIP_I0057 1 343 #endif 322 344 323 #define H_3D_DIM_ENC 1 // Depth Intra encoder optimizations, includes: 345 324 // HHI_DEPTH_INTRA_SEARCH_RAU_C0160 346 325 // LG_ZEROINTRADEPTHRESI_A0087 347 #define HHI_DMM4_ENC_I0066 1348 326 #endif 349 327 ///// ***** VIEW SYNTHESIS PREDICTION ********* … … 370 348 #if H_3D_DBBP 371 349 #define DBBP_INVALID_SHORT (-4) 372 #define RWTH_DBBP_PACK_MODE SIZE_2NxN350 #define DBBP_PACK_MODE SIZE_2NxN 373 351 #endif 374 352 -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1066 r1074 505 505 READ_CODE(8, uiNumDepthValues, "num_depth_values_in_dlt[i]"); // num_entry 506 506 507 #if !H_3D_DELTA_DLT508 if ( pcDLT->getInterViewDltPredEnableFlag( i ) == false ) // Single-view DLT Diff Coding509 #endif510 507 { 511 508 // The condition if( pcVPS->getNumDepthValues(i) > 0 ) is always true since for Single-view Diff Coding, there is at least one depth value in depth component. … … 555 552 } 556 553 557 #if H_3D_DELTA_DLT558 554 if( pcDLT->getInterViewDltPredEnableFlag( i ) ) 559 555 { … … 571 567 pcDLT->setDepthLUTs(i, aiIdx2DepthValue, uiNumDepthValues); 572 568 } 573 #else 574 // store final DLT 575 pcDLT->setDepthLUTs(i, aiIdx2DepthValue, uiNumDepthValues); 576 #endif 569 577 570 } 578 571 } … … 1107 1100 Void TDecCavlc::parseSPSExtension2( TComSPS* pcSPS, Int viewIndex, Bool depthFlag ) 1108 1101 { 1109 #if !MTK_I0099_VPS_EX2 1110 UInt uiCode; 1111 #if H_3D_QTLPC 1112 //GT: This has to go to VPS 1113 if( depthFlag ) 1114 { 1115 READ_FLAG( uiCode, "use_qtl_flag" ); 1116 pcSPS->setUseQTL( uiCode ); 1117 READ_FLAG( uiCode, "use_pc_flag" ); 1118 pcSPS->setUsePC( uiCode ); 1119 } 1120 #endif 1121 #endif 1102 1122 1103 } 1123 1104 #endif … … 2106 2087 { 2107 2088 UInt uiCode; 2108 #if SEC_VPS_CLEANUP_I00902109 2089 for( Int i = 1; i <= pcVPS->getMaxLayersMinus1(); i++ ) 2110 #else2111 for( Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ )2112 #endif2113 2090 { 2114 2091 #if H_3D_ARP … … 2119 2096 pcVPS->setSubPULog2Size(i, 0); 2120 2097 #endif 2121 #if !SEC_VPS_CLEANUP_I0090 2122 if ( i != 0 ) 2123 #endif 2124 { 2125 #if MTK_I0099_VPS_EX2 2098 { 2099 #if H_3D_IV_MERGE 2126 2100 READ_FLAG( uiCode, "iv_mv_pred_flag[i]"); pcVPS->setIvMvPredFlag ( i, uiCode == 1 ? true : false ); 2127 #if SEC_HLS_CLEANUP_I01002128 2101 READ_FLAG( uiCode, "iv_mv_scaling_flag[i]"); pcVPS->setIvMvScalingFlag ( i, uiCode == 1 ? true : false ); 2129 2102 #endif 2130 #endif2131 2103 if( !( pcVPS->getDepthId( i ) == 1 ) ) 2132 2104 { 2133 2105 #if H_3D_IV_MERGE 2134 #if !MTK_I0099_VPS_EX22135 READ_FLAG( uiCode, "iv_mv_pred_flag[i]"); pcVPS->setIvMvPredFlag ( i, uiCode == 1 ? true : false );2136 #endif2137 2106 if( !pcVPS->getNumDirectRefLayers(i) ) 2138 2107 { … … 2166 2135 else 2167 2136 { 2168 #if !MTK_I0099_VPS_EX22169 #if H_3D_IV_MERGE2170 if(i!=1)2171 {2172 READ_FLAG( uiCode, "iv_mv_pred_flag[i]"); pcVPS->setIvMvPredFlag ( i, uiCode == 1 ? true : false );2173 if( !pcVPS->getNumDirectRefLayers(i) )2174 {2175 assert( !uiCode );2176 }2177 }2178 #endif2179 #if H_3D_SPIVMP2180 if (i!=1)2181 {2182 READ_UVLC (uiCode, "log2_sub_PU_size_minus3[i]"); pcVPS->setSubPULog2Size(i, uiCode+3);2183 }2184 #endif2185 #endif2186 2137 #if H_3D_IV_MERGE 2187 2138 READ_FLAG( uiCode, "mpi_flag[i]" ); pcVPS->setMPIFlag( i, uiCode == 1 ? true : false ); 2188 #endif2189 #if MTK_I0099_VPS_EX22190 2139 READ_UVLC (uiCode, "log2_mpi_sub_PU_size_minus3[i]"); pcVPS->setSubPUMPILog2Size(i, uiCode+3); 2191 2140 #endif 2192 2141 READ_FLAG( uiCode, "vps_depth_modes_flag[i]" ); pcVPS->setVpsDepthModesFlag( i, uiCode == 1 ? true : false ); 2193 #if SEPARATE_FLAG_I00852142 #if H_3D 2194 2143 READ_FLAG( uiCode, "ivp_flag[i]" ); pcVPS->setIVPFlag( i, uiCode == 1 ? true : false ); 2195 2144 #endif 2196 #if MTK_I0099_VPS_EX22145 #if H_3D_QTLPC 2197 2146 READ_FLAG( uiCode, "lim_qt_pred_flag[i]"); pcVPS->setLimQtPredFlag ( i, uiCode == 1 ? true : false ); 2198 2147 #endif … … 2209 2158 2210 2159 READ_UVLC( uiCamParPrecision, "cp_precision" ); 2211 #if SEC_VPS_CLEANUP_I00902212 2160 for (UInt viewIndex=1; viewIndex<pcVPS->getNumViews(); viewIndex++) 2213 #else2214 for (UInt viewIndex=0; viewIndex<pcVPS->getNumViews(); viewIndex++)2215 #endif2216 2161 { 2217 2162 pcVPS->setCamParPresent ( viewIndex, false ); … … 2235 2180 } 2236 2181 } 2237 #if !MTK_I0099_VPS_EX22238 READ_UVLC (uiCode, "log2_sub_PU_MPI_size_minus3"); pcVPS->setSubPUMPILog2Size( uiCode + 3 );2239 #endif2240 #if !SEC_HLS_CLEANUP_I01002241 READ_FLAG( uiCode, "iv_mv_scaling_flag"); pcVPS->setIvMvScalingFlag( uiCode == 1 ? true : false );2242 #endif2243 2182 } 2244 2183 #endif … … 2865 2804 } 2866 2805 #if H_3D_IC 2867 #if SEC_HLS_CLEANUP_I01002868 2806 else if( rpcSlice->getViewIndex() && ( rpcSlice->getSliceType() == P_SLICE || rpcSlice->getSliceType() == B_SLICE ) && !rpcSlice->getIsDepth() && vps->getNumDirectRefLayers( layerId ) > 0 ) 2869 #else2870 else if( rpcSlice->getViewIndex() && ( rpcSlice->getSliceType() == P_SLICE || rpcSlice->getSliceType() == B_SLICE ) && !rpcSlice->getIsDepth())2871 #endif2872 2807 { 2873 2808 UInt uiCodeTmp = 0; … … 2883 2818 } 2884 2819 #endif 2885 #if MTK_SINGLE_DEPTH_MODE_I00952820 #if H_3D_SINGLE_DEPTH 2886 2821 if(rpcSlice->getIsDepth()) 2887 2822 { … … 3009 2944 3010 2945 #if H_3D 3011 #if LGE_FCO_I01162946 #if H_3D_FCO 3012 2947 if( rpcSlice->getVPS()->hasCamParInSliceHeader( rpcSlice->getViewIndex() ) && rpcSlice->getIsDepth() ) 3013 2948 #else … … 3331 3266 assert(0); 3332 3267 } 3333 #if MTK_SINGLE_DEPTH_MODE_I00953268 #if H_3D_SINGLE_DEPTH 3334 3269 Void TDecCavlc::parseSingleDepthMode( TComDataCU* /*pcCU*/, UInt /*uiAbsPartIdx*/, UInt /*uiDepth*/ ) 3335 3270 { -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecCAVLC.h
r1066 r1074 126 126 127 127 Void parseSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 128 #if MTK_SINGLE_DEPTH_MODE_I0095128 #if H_3D_SINGLE_DEPTH 129 129 Void parseSingleDepthMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 130 130 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecCu.cpp
r1066 r1074 420 420 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 421 421 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 422 #if !FIX_TICKET_79423 InheritedVSPDisInfo inheritedVSPDisInfo[MRG_MAX_NUM_CANDS_MEM];424 #endif425 422 #if H_3D_SPIVMP 426 423 Bool bSPIVMPFlag[MRG_MAX_NUM_CANDS_MEM]; … … 434 431 m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 435 432 m_ppcCU[uiDepth]->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours 436 #if !FIX_TICKET_79437 , inheritedVSPDisInfo438 #endif439 433 #if H_3D_SPIVMP 440 434 , pcMvFieldSP, puhInterDirSP … … 456 450 m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 457 451 #endif 458 #endif459 #if H_3D_VSP && !FIX_TICKET_79460 if(vspFlag[uiMergeIndex])461 {462 pcCU->setDvInfoSubParts(inheritedVSPDisInfo[uiMergeIndex].m_acDvInfo, uiAbsPartIdx, 0, uiDepth);463 }464 452 #endif 465 453 pcCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeIndex], uiAbsPartIdx, 0, uiDepth ); … … 546 534 return; 547 535 } 548 #if MTK_SINGLE_DEPTH_MODE_I0095536 #if H_3D_SINGLE_DEPTH 549 537 m_pcEntropyDecoder->decodeSingleDepthMode( pcCU, uiAbsPartIdx, uiDepth ); 550 538 if(!pcCU->getSingleDepthFlag(uiAbsPartIdx)) … … 580 568 m_pcEntropyDecoder->decodeCoeff( pcCU, uiAbsPartIdx, uiDepth, uiCurrWidth, uiCurrHeight, bCodeDQP ); 581 569 setdQPFlag( bCodeDQP ); 582 #if MTK_SINGLE_DEPTH_MODE_I0095570 #if H_3D_SINGLE_DEPTH 583 571 } 584 572 #endif … … 682 670 break; 683 671 case MODE_INTRA: 684 #if MTK_SINGLE_DEPTH_MODE_I0095672 #if H_3D_SINGLE_DEPTH 685 673 if( m_ppcCU[uiDepth]->getSingleDepthFlag(0) ) 686 674 xReconIntraSingleDepth( m_ppcCU[uiDepth], 0, uiDepth ); … … 730 718 } 731 719 } 732 #if MTK_SINGLE_DEPTH_MODE_I0095720 #if H_3D_SINGLE_DEPTH 733 721 Void TDecCu::xReconIntraSingleDepth( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 734 722 { … … 749 737 Pel DepthNeighbours[5]; 750 738 Int index =0; 751 for( Int i = 0; (i < 5) && (index< MTK_SINGLE_DEPTH_MODE_CANDIDATE_LIST_SIZE) ; i++ )739 for( Int i = 0; (i < 5) && (index<SINGLE_DEPTH_MODE_CAND_LIST_SIZE) ; i++ ) 752 740 { 753 741 if(!pcCU->getNeighDepth (0, uiAbsPartIdx, &testDepth, i)) … … 859 847 // get collocated depth block 860 848 UInt uiDepthStride = 0; 861 #if LGE_FCO_I0116849 #if H_3D_FCO 862 850 Pel* pDepthPels = pcCU->getVirtualDepthBlock(pcCU->getZorderIdxInCU(), pcCU->getWidth(0), pcCU->getHeight(0), uiDepthStride); 863 851 #else … … 932 920 933 921 // reconstruct final prediction signal by combining both segments 934 #if SHARP_DBBP_SIMPLE_FLTER_I0109935 922 m_pcPrediction->combineSegmentsWithMask(apSegPredYuv, m_ppcYuvReco[uiDepth], pMask, pcCU->getWidth(0), pcCU->getHeight(0), 0, ePartSize); 936 #else 937 m_pcPrediction->combineSegmentsWithMask(apSegPredYuv, m_ppcYuvReco[uiDepth], pMask, pcCU->getWidth(0), pcCU->getHeight(0)); 938 #endif 939 923 940 924 // inter recon 941 925 xDecodeInterTexture( pcCU, 0, uiDepth ); … … 1311 1295 Int uiTabIdx = pcCU->getDmmWedgeTabIdx(DMM1_IDX, uiAbsPartIdx); 1312 1296 1313 #if SHARP_DMM1_I01101314 1297 WedgeList* pacWedgeList = pcCU->isDMM1UpscaleMode(uiWidth) ? &g_dmmWedgeLists[(g_aucConvertToBit[pcCU->getDMM1BasePatternWidth(uiWidth)])] : &g_dmmWedgeLists[(g_aucConvertToBit[uiWidth])]; 1315 #else1316 WedgeList* pacWedgeList = &g_dmmWedgeLists[(g_aucConvertToBit[uiWidth])];1317 #endif1318 1298 TComWedgelet* pcWedgelet = &(pacWedgeList->at( uiTabIdx )); 1319 1299 1320 1300 uiNumSegments = 2; 1321 1301 1322 #if SHARP_DMM1_I01101323 1302 pbMask = pcCU->isDMM1UpscaleMode( uiWidth ) ? pcWedgelet->getScaledPattern(uiWidth) : pcWedgelet->getPattern(); 1324 1303 uiMaskStride = pcCU->isDMM1UpscaleMode( uiWidth ) ? uiWidth : pcWedgelet->getStride(); 1325 #else1326 pbMask = pcWedgelet->getPattern();1327 uiMaskStride = pcWedgelet->getStride();1328 #endif1329 1304 } 1330 1305 if( getDimType( uiLumaPredMode ) == DMM4_IDX ) -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecCu.h
r1039 r1074 123 123 Void setdQPFlag ( Bool b ) { m_bDecodeDQP = b; } 124 124 Void xFillPCMBuffer (TComDataCU* pCU, UInt depth); 125 #if MTK_SINGLE_DEPTH_MODE_I0095125 #if H_3D_SINGLE_DEPTH 126 126 Void xReconIntraSingleDepth( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 127 127 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecEntropy.cpp
r1039 r1074 52 52 m_pcEntropyDecoderIf->parseSkipFlag( pcCU, uiAbsPartIdx, uiDepth ); 53 53 } 54 #if MTK_SINGLE_DEPTH_MODE_I009554 #if H_3D_SINGLE_DEPTH 55 55 Void TDecEntropy::decodeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 56 56 { … … 152 152 153 153 #if H_3D_DBBP 154 155 #if SEC_DBBP_EXPLICIT_SIG_I0077156 #if SEC_DBBP_DISALLOW_8x8_I0078157 154 if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) && (pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2NxN || pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_Nx2N) && pcCU->getWidth(uiAbsPartIdx) > 8 ) 158 #else159 if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) && (pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2NxN || pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_Nx2N) )160 #endif161 #else162 #if SEC_DBBP_DISALLOW_8x8_I0078163 if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) && pcCU->getWidth(uiAbsPartIdx) > 8 )164 #else165 if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) )166 #endif167 #endif168 155 { 169 156 decodeDBBPFlag(pcCU, uiAbsPartIdx, uiDepth); 170 #if !SEC_DBBP_EXPLICIT_SIG_I0077171 if( pcCU->getDBBPFlag(uiAbsPartIdx) )172 {173 174 // get collocated depth block175 UInt uiDepthStride = 0;176 Pel* pDepthPels = NULL;177 pDepthPels = pcCU->getVirtualDepthBlock(uiAbsPartIdx, pcCU->getWidth(uiAbsPartIdx), pcCU->getHeight(uiAbsPartIdx), uiDepthStride);178 179 AOF( pDepthPels != NULL );180 AOF( uiDepthStride != 0 );181 182 // derive true partitioning for this CU based on depth183 // (needs to be done in parsing process as motion vector predictors are also derived during parsing)184 PartSize eVirtualPartSize = m_pcPrediction->getPartitionSizeFromDepth(pDepthPels, uiDepthStride, pcCU->getWidth(uiAbsPartIdx));185 AOF( eVirtualPartSize != SIZE_NONE );186 187 pcCU->setPartSizeSubParts(eVirtualPartSize, uiAbsPartIdx, uiDepth);188 189 // make sure that DBBP flag is set for both segments190 UInt uiPUOffset = ( g_auiPUOffset[UInt( eVirtualPartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxCUDepth() - uiDepth ) << 1 ) ) >> 4;191 pcCU->setDBBPFlagSubParts(true, uiAbsPartIdx, 0, uiDepth);192 pcCU->setDBBPFlagSubParts(true, uiAbsPartIdx+uiPUOffset, 1, uiDepth);193 }194 #endif195 157 } 196 158 #endif … … 311 273 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 312 274 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 313 #if !FIX_TICKET_79314 InheritedVSPDisInfo inheritedVSPDisInfo[MRG_MAX_NUM_CANDS_MEM];315 #endif316 275 #if H_3D_SPIVMP 317 276 memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM); … … 320 279 pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand); 321 280 pcSubCU->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours 322 #if !FIX_TICKET_79323 , inheritedVSPDisInfo324 #endif325 281 #if H_3D_SPIVMP 326 282 , pcMvFieldSP, puhInterDirSP … … 334 290 pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 335 291 336 #if !FIX_TICKET_79337 if(vspFlag[uiMergeIndex])338 {339 pcCU->setDvInfoSubParts(inheritedVSPDisInfo[uiMergeIndex].m_acDvInfo, uiSubPartIdx, uiPartIdx, uiDepth);340 }341 #endif342 292 #else 343 293 #if H_3D … … 360 310 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 361 311 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 362 #if !FIX_TICKET_79363 InheritedVSPDisInfo inheritedVSPDisInfo[MRG_MAX_NUM_CANDS_MEM];364 #endif365 312 #if H_3D_SPIVMP 366 313 memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM); … … 369 316 pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 370 317 pcSubCU->xGetInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours 371 #if !FIX_TICKET_79372 , inheritedVSPDisInfo373 #endif374 318 #if H_3D_SPIVMP 375 319 , pcMvFieldSP, puhInterDirSP … … 382 326 ,numValidMergeCand ); 383 327 pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 384 #if !FIX_TICKET_79385 if(vspFlag[uiMergeIndex])386 {387 pcCU->setDvInfoSubParts(inheritedVSPDisInfo[uiMergeIndex].m_acDvInfo, uiSubPartIdx, uiPartIdx, uiDepth);388 }389 #endif390 328 #else 391 329 #if H_3D … … 485 423 #endif 486 424 } 487 #if H_3D_VSP && !FIX_TICKET_75488 if ( (pcCU->getInterDir(uiSubPartIdx) == 3) && pcSubCU->isBipredRestriction(uiPartIdx) && (pcCU->getVSPFlag(uiSubPartIdx) == 0))489 #else490 425 if ( (pcCU->getInterDir(uiSubPartIdx) == 3) && pcSubCU->isBipredRestriction(uiPartIdx) ) 491 #endif492 426 { 493 427 pcCU->getCUMvField( REF_PIC_LIST_1 )->setAllMv( TComMv(0,0), ePartSize, uiSubPartIdx, uiDepth, uiPartIdx); -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecEntropy.h
r1039 r1074 89 89 public: 90 90 virtual Void parseSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0; 91 #if MTK_SINGLE_DEPTH_MODE_I009591 #if H_3D_SINGLE_DEPTH 92 92 virtual Void parseSingleDepthMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0; 93 93 #endif … … 179 179 Void decodeSplitFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 180 180 Void decodeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 181 #if MTK_SINGLE_DEPTH_MODE_I0095181 #if H_3D_SINGLE_DEPTH 182 182 Void decodeSingleDepthMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) ; 183 183 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecSbac.cpp
r1066 r1074 52 52 , m_cCUSplitFlagSCModel ( 1, 1, NUM_SPLIT_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels ) 53 53 , m_cCUSkipFlagSCModel ( 1, 1, NUM_SKIP_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels) 54 #if MTK_SINGLE_DEPTH_MODE_I009554 #if H_3D_SINGLE_DEPTH 55 55 , m_cCUSingleDepthFlagSCModel ( 1, 1, NUM_SINGLEDEPTH_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels) 56 56 , m_cSingleDepthValueSCModel ( 1, 1, NUM_SINGLE_DEPTH_VALUE_DATA_CTX , m_contextModels + m_numContextModels, m_numContextModels) … … 136 136 m_cCUSplitFlagSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_SPLIT_FLAG ); 137 137 m_cCUSkipFlagSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_SKIP_FLAG ); 138 #if MTK_SINGLE_DEPTH_MODE_I0095138 #if H_3D_SINGLE_DEPTH 139 139 m_cCUSingleDepthFlagSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_SINGLEDEPTH_FLAG ); 140 140 m_cSingleDepthValueSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_SINGLE_DEPTH_VALUE_DATA ); … … 207 207 m_cCUSplitFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SPLIT_FLAG ); 208 208 m_cCUSkipFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SKIP_FLAG ); 209 #if MTK_SINGLE_DEPTH_MODE_I0095209 #if H_3D_SINGLE_DEPTH 210 210 m_cCUSingleDepthFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SINGLEDEPTH_FLAG ); 211 211 m_cSingleDepthValueSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SINGLE_DEPTH_VALUE_DATA ); … … 432 432 #endif 433 433 434 #if !FIX_TICKET_76 435 #if H_3D_DIM_SDC 436 Void TDecSbac::xParseSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiSegment ) 437 { 438 assert( pcCU->getSlice()->getIsDepth() ); 439 assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N ); 440 assert( pcCU->getSDCFlag(uiAbsPartIdx) ); 441 assert( uiSegment < 2 ); 442 443 UInt uiResidual = 0; 444 UInt uiBit = 0; 445 UInt uiAbsIdx = 0; 446 UInt uiSign = 0; 447 Int iIdx = 0; 448 449 #if H_3D_DIM_DLT 450 UInt uiMaxResidualBits = pcCU->getSlice()->getPPS()->getDLT()->getBitsPerDepthValue( pcCU->getSlice()->getLayerIdInVps() ); 451 #else 452 UInt uiMaxResidualBits = g_bitDepthY; 453 #endif 454 assert( uiMaxResidualBits <= g_bitDepthY ); 455 456 m_pcTDecBinIf->decodeBin(uiResidual, m_cSDCResidualFlagSCModel.get( 0, 0, 0 ) ); 457 458 #if H_MV_ENC_DEC_TRAC 459 DTRACE_CU("sdc_residual_flag[i]", uiResidual) 460 #endif 461 462 if (uiResidual) 463 { 464 // decode residual sign bit 465 m_pcTDecBinIf->decodeBinEP(uiSign); 466 #if H_MV_ENC_DEC_TRAC 467 DTRACE_CU("sdc_residual_sign_flag[i]", uiSign) 468 #endif 469 470 // decode residual magnitude 471 // prefix part 472 UInt uiCount = 0; 473 #if H_3D_DIM_DLT 474 UInt uiNumDepthValues = pcCU->getSlice()->getPPS()->getDLT()->getNumDepthValues( pcCU->getSlice()->getLayerIdInVps() ); 475 #else 476 UInt uiNumDepthValues = ((1 << g_bitDepthY)-1); 477 #endif 478 UInt uiPrefixThreshold = ((uiNumDepthValues * 3) >> 2); 479 for ( UInt ui = 0; ui < uiPrefixThreshold; ui++) 480 { 481 m_pcTDecBinIf->decodeBin( uiBit, m_cSDCResidualSCModel.get(0, 0, 0) ); 482 if ( uiBit == 0 ) 483 break; 484 else 485 uiCount++; 486 } 487 // suffix part 488 if ( uiCount == uiPrefixThreshold ) 489 { 490 for ( UInt ui = 0; ui < numBitsForValue(uiNumDepthValues - uiPrefixThreshold); ui++ ) 491 { 492 m_pcTDecBinIf->decodeBinEP( uiBit ); 493 uiAbsIdx |= uiBit << ui; 494 } 495 uiAbsIdx += uiCount; 496 } 497 else 498 { 499 uiAbsIdx = uiCount; 500 } 501 502 #if H_MV_ENC_DEC_TRAC 503 DTRACE_CU("sdc_residual_abs_minus1[i]", uiAbsIdx) 504 #endif 505 506 uiAbsIdx += 1; 507 iIdx =(Int)(uiSign ? -1 : 1)*uiAbsIdx; 508 } 509 510 pcCU->setSDCSegmentDCOffset(iIdx, uiSegment, uiAbsPartIdx); 511 } 512 #endif 513 #endif 434 514 435 #endif 515 436 /** Parse I_PCM information. … … 649 570 #endif 650 571 } 651 #if MTK_SINGLE_DEPTH_MODE_I0095572 #if H_3D_SINGLE_DEPTH 652 573 Void TDecSbac::parseSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 653 574 { … … 671 592 672 593 UInt uiUnaryIdx = 0; 673 UInt uiNumCand = MTK_SINGLE_DEPTH_MODE_CANDIDATE_LIST_SIZE;594 UInt uiNumCand = SINGLE_DEPTH_MODE_CAND_LIST_SIZE; 674 595 if ( uiNumCand > 1 ) 675 596 { … … 778 699 779 700 UInt uiSymbol; 701 Bool bParseSplitFlag = true; 702 780 703 #if H_3D_QTLPC 781 Bool bParseSplitFlag = true; 782 783 #if MTK_I0099_VPS_EX2 704 784 705 TComVPS *vps = pcCU->getPic()->getSlice(0)->getVPS(); 785 706 Bool bLimQtPredFlag = vps->getLimQtPredFlag(pcCU->getPic()->getSlice(0)->getLayerId()); 786 #else787 TComSPS *sps = pcCU->getPic()->getSlice(0)->getSPS();788 #endif789 707 TComPic *pcTexture = pcCU->getSlice()->getTexturePic(); 790 708 Bool bDepthMapDetect = (pcTexture != NULL); … … 793 711 Bool rapPic = (pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP || pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA); 794 712 795 #if MTK_I0099_VPS_EX2 796 #if LGE_FCO_I0116 713 #if H_3D_FCO 797 714 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && bLimQtPredFlag && pcTexture->getReconMark()) 798 715 #else 799 716 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && bLimQtPredFlag) 800 #endif801 #else802 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && sps->getUseQTL() && sps->getUsePC())803 717 #endif 804 718 { … … 843 757 #if H_3D_QTLPC 844 758 Bool bParsePartSize = true; 845 #if MTK_I0099_VPS_EX2846 759 TComVPS *vps = pcCU->getPic()->getSlice(0)->getVPS(); 847 760 Bool bLimQtPredFlag = vps->getLimQtPredFlag(pcCU->getPic()->getSlice(0)->getLayerId()); 848 #else849 TComSPS *sps = pcCU->getPic()->getSlice(0)->getSPS();850 #endif851 761 TComPic *pcTexture = pcCU->getSlice()->getTexturePic(); 852 762 Bool bDepthMapDetect = (pcTexture != NULL); … … 857 767 Bool depthDependent = false; 858 768 UInt uiTexturePart = uiMode; 859 #if MTK_I0099_VPS_EX2 860 #if LGE_FCO_I0116769 770 #if H_3D_FCO 861 771 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && bLimQtPredFlag && pcTexture->getReconMark()) 862 772 #else 863 773 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && bLimQtPredFlag ) 864 #endif865 #else866 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && sps->getUseQTL() && sps->getUsePC())867 774 #endif 868 775 { … … 1076 983 { 1077 984 #if H_3D_DIM 1078 #if SEPARATE_FLAG_I00851079 985 if( pcCU->getSlice()->getVpsDepthModesFlag() || pcCU->getSlice()->getIVPFlag() ) 1080 #else1081 if( pcCU->getSlice()->getVpsDepthModesFlag() )1082 #endif1083 986 { 1084 987 parseIntraDepth( pcCU, absPartIdx+partOffset*j, depth ); … … 1222 1125 if( uiIsDimMode ) 1223 1126 { 1224 #if SEPARATE_FLAG_I00851225 1127 if( pcCU->getSlice()->getVpsDepthModesFlag() && pcCU->getSlice()->getIVPFlag() ) 1226 1128 { … … 1228 1130 if( !uiSymbol ) 1229 1131 { 1230 #if HS_DMM_SIGNALLING_I01201231 1132 pcCU->setLumaIntraDirSubParts( DIM_OFFSET, absPartIdx, depth ); 1232 #else1233 pcCU->setLumaIntraDirSubParts( ( 2 * DMM1_IDX + DIM_OFFSET ), absPartIdx, depth );1234 #endif1235 1133 } 1236 1134 else 1237 1135 { 1238 #if HS_DMM_SIGNALLING_I01201239 1136 pcCU->setLumaIntraDirSubParts( ( 1+ DIM_OFFSET ), absPartIdx, depth ); 1240 #else1241 pcCU->setLumaIntraDirSubParts( ( 2 * DMM4_IDX + DIM_OFFSET ), absPartIdx, depth );1242 #endif1243 1137 } 1244 1138 } 1245 1139 else if ( pcCU->getSlice()->getVpsDepthModesFlag() ) 1246 1140 { 1247 #if HS_DMM_SIGNALLING_I01201248 1141 pcCU->setLumaIntraDirSubParts( DIM_OFFSET, absPartIdx, depth ); 1249 #else1250 pcCU->setLumaIntraDirSubParts( ( 2 * DMM1_IDX + DIM_OFFSET ), absPartIdx, depth );1251 #endif1252 1142 } 1253 1143 else if( pcCU->getSlice()->getIVPFlag() ) 1254 1144 { 1255 #if HS_DMM_SIGNALLING_I01201256 1145 pcCU->setLumaIntraDirSubParts( ( 1+ DIM_OFFSET ), absPartIdx, depth ); 1257 #else 1258 pcCU->setLumaIntraDirSubParts( ( 2 * DMM4_IDX + DIM_OFFSET ), absPartIdx, depth ); 1259 #endif 1260 } 1261 #else 1262 m_pcTDecBinIf->decodeBin( uiSymbol, m_cDepthIntraModeSCModel.get( 0, 0, 0 ) ); 1263 if( !uiSymbol ) 1264 { 1265 #if HS_DMM_SIGNALLING_I0120 1266 pcCU->setLumaIntraDirSubParts( DIM_OFFSET, absPartIdx, depth ); 1267 #else 1268 pcCU->setLumaIntraDirSubParts( ( 2 * DMM1_IDX + DIM_OFFSET ), absPartIdx, depth ); 1269 #endif 1270 } 1271 else 1272 { 1273 #if HS_DMM_SIGNALLING_I0120 1274 pcCU->setLumaIntraDirSubParts( ( 1+ DIM_OFFSET ), absPartIdx, depth ); 1275 #else 1276 pcCU->setLumaIntraDirSubParts( ( 2 * DMM4_IDX + DIM_OFFSET ), absPartIdx, depth ); 1277 #endif 1278 } 1279 #endif 1146 } 1280 1147 } 1281 1148 } … … 2190 2057 } 2191 2058 2192 #if HS_DMM_SIGNALLING_I01202193 2059 UInt symbol = 1; 2194 2060 UInt uiNumSegments = isDimMode( pcCU->getLumaIntraDir( absPartIdx ) ) ? 2 : 1; 2195 #else 2196 UInt symbol = 0; 2197 UInt uiNumSegments = 0; 2198 #endif 2199 2200 #if HS_DMM_SIGNALLING_I0120 2061 2201 2062 if( pcCU->isIntra( absPartIdx ) && pcCU->getSDCFlag( absPartIdx )) 2202 2063 { 2203 #else 2204 if( pcCU->isIntra( absPartIdx ) ) 2205 { 2206 UInt dir = pcCU->getLumaIntraDir( absPartIdx ); 2207 uiNumSegments = isDimMode( dir ) ? 2 : 1; 2208 #endif 2064 2209 2065 m_pcTDecBinIf->decodeBin( symbol, m_cDdcFlagSCModel.get( 0, 0, 0 ) ); 2210 #if !HS_DMM_SIGNALLING_I01202211 if( pcCU->getSDCFlag( absPartIdx ) )2212 {2213 #endif2214 2066 assert( pcCU->getPartitionSize( absPartIdx ) == SIZE_2Nx2N ); 2215 2067 pcCU->setTrIdxSubParts( 0, absPartIdx, depth ); 2216 2068 pcCU->setCbfSubParts( 1, 1, 1, absPartIdx, depth ); 2217 2069 } 2218 #if !HS_DMM_SIGNALLING_I01202219 else2220 {2221 pcCU->setLumaIntraDirSubParts( dir + symbol, absPartIdx, depth );2222 }2223 }2224 else2225 {2226 uiNumSegments = 1;2227 symbol = 1;2228 }2229 #endif2230 2231 2070 2232 2071 for( UInt segment = 0; segment < uiNumSegments; segment++ ) … … 2289 2128 m_pcTDecBinIf->decodeBin( uiSymbol, m_cDBBPFlagSCModel.get( 0, 0, 0 ) ); 2290 2129 2291 #if SEC_DBBP_EXPLICIT_SIG_I00772292 2130 PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx ); 2293 2131 AOF( ePartSize == SIZE_2NxN || ePartSize == SIZE_Nx2N ); … … 2295 2133 pcCU->setDBBPFlagSubParts(uiSymbol, uiAbsPartIdx, 0, uiDepth); 2296 2134 pcCU->setDBBPFlagSubParts(uiSymbol, uiAbsPartIdx+uiPUOffset, 1, uiDepth); 2297 #else2298 if( uiSymbol )2299 {2300 pcCU->setDBBPFlagSubParts(true, uiAbsPartIdx, 0, uiDepth);2301 UInt uiCurrPartNumQ = (pcCU->getPic()->getNumPartInCU() >> (2 * uiDepth)) >> 2;2302 pcCU->setDBBPFlagSubParts(true, uiAbsPartIdx + 2*uiCurrPartNumQ, 1, uiDepth);2303 }2304 #endif2305 2135 } 2306 2136 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecSbac.h
r1039 r1074 129 129 130 130 Void parseSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 131 #if MTK_SINGLE_DEPTH_MODE_I0095131 #if H_3D_SINGLE_DEPTH 132 132 Void parseSingleDepthMode ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 133 133 #endif … … 182 182 ContextModel3DBuffer m_cCUSplitFlagSCModel; 183 183 ContextModel3DBuffer m_cCUSkipFlagSCModel; 184 #if MTK_SINGLE_DEPTH_MODE_I0095184 #if H_3D_SINGLE_DEPTH 185 185 ContextModel3DBuffer m_cCUSingleDepthFlagSCModel; 186 186 ContextModel3DBuffer m_cSingleDepthValueSCModel; -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecTop.cpp
r1066 r1074 229 229 } 230 230 231 #if ! LGE_FCO_I0116231 #if !H_3D_FCO 232 232 if ( pcSlice->getIsDepth()) 233 233 { … … 1272 1272 1273 1273 #if H_3D_IV_MERGE 1274 #if LGE_FCO_I01161274 #if H_3D_FCO 1275 1275 if( !pcSlice->getIsDepth() && m_pcCamParsCollector ) 1276 1276 #else -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp
r1066 r1074 385 385 } 386 386 387 #if H_3D_DELTA_DLT388 387 if( pcDLT->getInterViewDltPredEnableFlag( i ) ) 389 388 { … … 395 394 pcDLT->getDeltaDLT(i, piRefDLT, uiRefNum, aiIdx2DepthValue_coded, &uiNumDepthValues_coded); 396 395 } 397 #endif398 396 399 397 if ( NULL == (puiDltDiffValues = (UInt *)calloc(uiNumDepthValues_coded, sizeof(UInt))) ) 400 398 { 399 // This should be changed to an assertion. 401 400 exit(-1); 402 401 } … … 477 476 { 478 477 WRITE_CODE(uiNumDepthValues_coded, 8, "num_depth_values_in_dlt[i]"); // num_entry 479 480 #if !H_3D_DELTA_DLT481 if ( pcDLT->getInterViewDltPredEnableFlag( i ) == false ) // Single-view DLT Diff Coding482 #endif483 478 { 484 479 // The condition if( uiNumDepthValues_coded > 0 ) is always true since for Single-view Diff Coding, there is at least one depth value in depth component. … … 951 946 Void TEncCavlc::codeSPSExtension2( TComSPS* pcSPS, Int viewIndex, Bool depthFlag ) 952 947 { 953 #if H_3D_QTLPC 954 #if !MTK_I0099_VPS_EX2 955 //GT: This has to go to VPS 956 if( depthFlag ) 957 { 958 WRITE_FLAG( pcSPS->getUseQTL() ? 1 : 0, "use_qtl_flag"); 959 WRITE_FLAG( pcSPS->getUsePC() ? 1 : 0, "use_pc_flag"); 960 } 961 #endif 962 #endif 963 } 964 965 948 949 } 966 950 #endif 967 951 … … 1805 1789 Void TEncCavlc::codeVPSExtension2( TComVPS* pcVPS ) 1806 1790 { 1807 #if SEC_VPS_CLEANUP_I00901808 1791 for( Int i = 1; i <= pcVPS->getMaxLayersMinus1(); i++ ) 1809 #else 1810 for( Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ ) 1811 #endif 1812 { 1813 #if !SEC_VPS_CLEANUP_I0090 1814 if (i!= 0) 1815 #endif 1816 { 1817 #if MTK_I0099_VPS_EX2 1792 { 1793 { 1818 1794 WRITE_FLAG( pcVPS->getIvMvPredFlag ( i ) ? 1 : 0 , "iv_mv_pred_flag[i]"); 1819 #if SEC_HLS_CLEANUP_I01001820 1795 WRITE_FLAG( pcVPS->getIvMvScalingFlag( i ) ? 1 : 0 , "iv_mv_scaling_flag[i]" ); 1821 #endif 1822 1823 #endif 1796 1824 1797 if ( !( pcVPS->getDepthId( i ) == 1 ) ) 1825 1798 { 1826 1799 #if H_3D_IV_MERGE 1827 #if !MTK_I0099_VPS_EX21828 WRITE_FLAG( pcVPS->getIvMvPredFlag ( i ) ? 1 : 0 , "iv_mv_pred_flag[i]");1829 #endif1830 1800 #if H_3D_SPIVMP 1831 1801 WRITE_UVLC( pcVPS->getSubPULog2Size(i)-3, "log2_sub_PU_size_minus3[i]"); … … 1847 1817 else 1848 1818 { 1849 #if !MTK_I0099_VPS_EX21850 if(i!=1)1851 {1852 WRITE_FLAG( pcVPS->getIvMvPredFlag ( i ) ? 1 : 0 , "iv_mv_pred_flag[i]");1853 }1854 #if H_3D_SPIVMP1855 if (i!=1)1856 {1857 WRITE_UVLC( pcVPS->getSubPULog2Size(i)-3, "log2_sub_PU_size_minus3[i]");1858 }1859 #endif1860 #endif1861 1819 #if H_3D_IV_MERGE 1862 1820 WRITE_FLAG( pcVPS->getMPIFlag( i ) ? 1 : 0 , "mpi_flag[i]" ); 1863 1821 #endif 1864 #if MTK_I0099_VPS_EX21865 1822 WRITE_UVLC( pcVPS->getSubPUMPILog2Size(i)-3, "log2_mpi_sub_PU_size_minus3[i]"); 1866 #endif 1823 1867 1824 WRITE_FLAG( pcVPS->getVpsDepthModesFlag( i ) ? 1 : 0 , "vps_depth_modes_flag[i]" ); 1868 #if SEPARATE_FLAG_I00851825 #if H_3D 1869 1826 WRITE_FLAG( pcVPS->getIVPFlag( i ) ? 1 : 0 , "IVP_flag[i]" ); 1870 1827 #endif 1871 #if MTK_I0099_VPS_EX21872 1828 WRITE_FLAG( pcVPS->getLimQtPredFlag ( i ) ? 1 : 0 , "lim_qt_pred_flag[i]" ); 1873 #endif1874 1829 1875 1830 #if H_3D_INTER_SDC … … 1880 1835 } 1881 1836 WRITE_UVLC( pcVPS->getCamParPrecision(), "cp_precision" ); 1882 #if SEC_VPS_CLEANUP_I00901883 1837 for (UInt viewIndex=1; viewIndex<pcVPS->getNumViews(); viewIndex++) 1884 #else1885 for (UInt viewIndex=0; viewIndex<pcVPS->getNumViews(); viewIndex++)1886 #endif1887 1838 { 1888 1839 WRITE_FLAG( pcVPS->getCamParPresent(viewIndex) ? 1 : 0, "cp_present_flag[i]" ); … … 1902 1853 } 1903 1854 } 1904 #if !MTK_I0099_VPS_EX21905 WRITE_UVLC( pcVPS->getSubPUMPILog2Size( ) - 3, "log2_sub_PU_MPI_size_minus3");1906 #endif1907 #if H_3D_TMVP1908 #if !SEC_HLS_CLEANUP_I01001909 WRITE_FLAG( pcVPS->getIvMvScalingFlag( ) ? 1 : 0 , "iv_mv_scaling_flag" );1910 #endif1911 #endif1912 1855 } 1913 1856 #endif … … 2308 2251 } 2309 2252 #if H_3D_IC 2310 #if SEC_HLS_CLEANUP_I01002311 2253 else if( pcSlice->getViewIndex() && ( pcSlice->getSliceType() == P_SLICE || pcSlice->getSliceType() == B_SLICE ) && !pcSlice->getIsDepth() && vps->getNumDirectRefLayers( layerId ) > 0 ) 2312 #else2313 else if( pcSlice->getViewIndex() && ( pcSlice->getSliceType() == P_SLICE || pcSlice->getSliceType() == B_SLICE ) && !pcSlice->getIsDepth())2314 #endif2315 2254 { 2316 2255 WRITE_FLAG( pcSlice->getApplyIC() ? 1 : 0, "slice_ic_enable_flag" ); … … 2321 2260 } 2322 2261 #endif 2323 #if MTK_SINGLE_DEPTH_MODE_I00952262 #if H_3D_SINGLE_DEPTH 2324 2263 if(pcSlice->getIsDepth()) 2325 2264 { … … 2385 2324 } 2386 2325 #if H_3D 2387 #if LGE_FCO_I01162326 #if H_3D_FCO 2388 2327 if( pcSlice->getVPS()->hasCamParInSliceHeader( pcSlice->getViewIndex() ) && pcSlice->getIsDepth() ) 2389 2328 #else … … 2762 2701 assert(0); 2763 2702 } 2764 #if MTK_SINGLE_DEPTH_MODE_I00952703 #if H_3D_SINGLE_DEPTH 2765 2704 Void TEncCavlc::codeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx ) 2766 2705 { -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncCavlc.h
r1066 r1074 129 129 Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ); 130 130 Void codeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); 131 #if MTK_SINGLE_DEPTH_MODE_I0095131 #if H_3D_SINGLE_DEPTH 132 132 Void codeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx ); 133 133 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncCfg.h
r1039 r1074 414 414 #if H_3D_DIM 415 415 Bool m_useDMM; 416 #if SEPARATE_FLAG_I0085417 416 Bool m_useIVP; 418 #endif419 417 Bool m_useSDC; 420 418 Bool m_useDLT; 421 419 #endif 422 #if MTK_SINGLE_DEPTH_MODE_I0095420 #if H_3D_SINGLE_DEPTH 423 421 Bool m_useSingleDepthMode; 424 422 #endif … … 426 424 Bool m_useMPI; 427 425 #endif 428 #if !MTK_I0099_VPS_EX2 || MTK_I0099_FIX429 426 #if H_3D_QTLPC 430 427 Bool m_bUseQTL; 431 #if !MTK_I0099_VPS_EX2432 Bool m_bUsePC;433 #endif434 #endif435 428 #endif 436 429 #endif … … 1013 1006 Bool getUseDMM () { return m_useDMM; } 1014 1007 Void setUseDMM ( Bool b) { m_useDMM = b; } 1015 #if SEPARATE_FLAG_I00851016 1008 Bool getUseIVP () { return m_useIVP; } 1017 1009 Void setUseIVP ( Bool b) { m_useIVP = b; } 1018 #endif1019 1010 Bool getUseSDC () { return m_useSDC; } 1020 1011 Void setUseSDC ( Bool b) { m_useSDC = b; } … … 1022 1013 Void setUseDLT ( Bool b) { m_useDLT = b; } 1023 1014 #endif 1024 #if MTK_SINGLE_DEPTH_MODE_I00951015 #if H_3D_SINGLE_DEPTH 1025 1016 Void setUseSingleDepthMode ( Bool bVal ) { m_useSingleDepthMode = bVal; } 1026 1017 Bool getUseSingleDepthMode () { return m_useSingleDepthMode; } 1027 1018 #endif 1028 #if !MTK_I0099_VPS_EX2 || MTK_I0099_FIX1029 1019 #if H_3D_QTLPC 1030 1020 Void setUseQTL ( Bool b ) { m_bUseQTL = b; } 1031 1021 Bool getUseQTL () { return m_bUseQTL; } 1032 #if !MTK_I0099_VPS_EX21033 Void setUsePC ( Bool b ) { m_bUsePC = b; }1034 Bool getUsePC () { return m_bUsePC; }1035 #endif1036 #endif1037 1022 #endif 1038 1023 #if H_3D_IV_MERGE -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncCu.cpp
r1066 r1074 409 409 410 410 #if H_3D_QTLPC 411 #if MTK_I0099_VPS_EX2412 411 TComVPS *vps = pcPic->getSlice(0)->getVPS(); 413 412 Bool bLimQtPredFalg = vps->getLimQtPredFlag(pcPic->getSlice(0)->getLayerId()); 414 #else415 TComSPS *sps = pcPic->getSlice(0)->getSPS();416 #endif417 413 TComPic *pcTexture = rpcBestCU->getSlice()->getTexturePic(); 418 414 … … 535 531 #if H_3D_QTLPC 536 532 //logic for setting bTrySplit using the partition information that is stored of the texture colocated CU 537 538 #if MTK_I0099_VPS_EX2 539 #if MTK_I0099_FIX 540 #if LGE_FCO_I0116 533 #if H_3D_FCO 541 534 if(depthMapDetect && !bIntraSliceDetect && !rapPic && ( m_pcEncCfg->getUseQTL() || bLimQtPredFalg ) && pcTexture->getReconMark()) 542 535 #else 543 536 if(depthMapDetect && !bIntraSliceDetect && !rapPic && ( m_pcEncCfg->getUseQTL() || bLimQtPredFalg )) 544 #endif545 #else546 if(depthMapDetect && !bIntraSliceDetect && !rapPic && bLimQtPredFalg)547 #endif548 #else549 if(depthMapDetect && !bIntraSliceDetect && !rapPic && sps->getUseQTL())550 537 #endif 551 538 { … … 702 689 703 690 #if H_3D_QTLPC 704 #if MTK_I0099_VPS_EX2705 #if MTK_I0099_FIX706 691 if(depthMapDetect && !bIntraSliceDetect && !rapPic && ( m_pcEncCfg->getUseQTL() || bLimQtPredFalg )) 707 #else708 if(depthMapDetect && !bIntraSliceDetect && !rapPic && bLimQtPredFalg)709 #endif710 #else711 if(depthMapDetect && !bIntraSliceDetect && !rapPic && sps->getUseQTL())712 #endif713 692 { 714 693 bTrySplitDQP = bTrySplit; … … 734 713 } 735 714 #endif 736 #if MTK_SINGLE_DEPTH_MODE_I0095715 #if H_3D_SINGLE_DEPTH 737 716 rpcTempCU->initEstData( uiDepth, iMinQP, isAddLowestQP ); 738 717 if(rpcBestCU->getSlice()->getApplySingleDepthMode()) … … 1057 1036 rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0 1058 1037 #if H_3D_DIM_ENC 1059 #if HHI_DMM4_ENC_I00661060 1038 || rpcBestCU->getSlice()->getIsDepth() 1061 #else1062 || ( rpcBestCU->getSlice()->getIsDepth() && rpcBestCU->getSlice()->isIRAP() )1063 #endif1064 1039 #endif 1065 1040 ) // avoid very complex intra if it is unlikely 1066 1041 { 1067 #if H HI_DMM4_ENC_I00661042 #if H_3D_DIM 1068 1043 Bool bOnlyIVP = false; 1069 1044 if( rpcBestCU->getSlice()->getIsDepth() && !(rpcBestCU->getSlice()->isIRAP()) && … … 1098 1073 if( rpcTempCU->getWidth(0) > ( 1 << rpcTempCU->getSlice()->getSPS()->getQuadtreeTULog2MinSize() ) ) 1099 1074 { 1100 #if H HI_DMM4_ENC_I00661075 #if H_3D_DIM 1101 1076 xCheckRDCostIntra( rpcBestCU, rpcTempCU, SIZE_NxN, bOnlyIVP ); 1102 1077 #else … … 1590 1565 return; 1591 1566 } 1592 #if MTK_SINGLE_DEPTH_MODE_I00951567 #if H_3D_SINGLE_DEPTH 1593 1568 m_pcEntropyCoder->encodeSingleDepthMode( pcCU, uiAbsPartIdx ); 1594 1569 if(!pcCU->getSingleDepthFlag(uiAbsPartIdx)) … … 1627 1602 m_pcEntropyCoder->encodeCoeff( pcCU, uiAbsPartIdx, uiDepth, pcCU->getWidth (uiAbsPartIdx), pcCU->getHeight(uiAbsPartIdx), bCodeDQP ); 1628 1603 setdQPFlag( bCodeDQP ); 1629 #if MTK_SINGLE_DEPTH_MODE_I00951604 #if H_3D_SINGLE_DEPTH 1630 1605 } 1631 1606 #endif … … 1863 1838 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 1864 1839 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 1865 #if !FIX_TICKET_791866 InheritedVSPDisInfo inheritedVSPDisInfo[MRG_MAX_NUM_CANDS_MEM];1867 #endif1868 1840 #if H_3D_SPIVMP 1869 1841 Bool bSPIVMPFlag[MRG_MAX_NUM_CANDS_MEM]; … … 1878 1850 rpcTempCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand ); 1879 1851 rpcTempCU->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours,uhInterDirNeighbours 1880 #if !FIX_TICKET_791881 , inheritedVSPDisInfo1882 #endif1883 1852 #if H_3D_SPIVMP 1884 1853 , pcMvFieldSP, puhInterDirSP … … 1895 1864 1896 1865 #else 1897 #if FIX_TICKET_791898 1866 rpcTempCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours,uhInterDirNeighbours, vspFlag, numValidMergeCand ); 1899 #else1900 rpcTempCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours,uhInterDirNeighbours, vspFlag, inheritedVSPDisInfo, numValidMergeCand );1901 #endif1902 1867 #endif 1903 1868 … … 1942 1907 #if H_3D_VSP 1943 1908 rpcTempCU->setVSPFlagSubParts( vspFlag[uiMergeCand], 0, 0, uhDepth ); 1944 #if !FIX_TICKET_791945 rpcTempCU->setDvInfoSubParts(inheritedVSPDisInfo[uiMergeCand].m_acDvInfo, 0, 0, uhDepth );1946 #endif1947 1909 #endif 1948 1910 #if H_3D_DDD … … 2043 2005 2044 2006 rpcTempCU->setSkipFlagSubParts( rpcTempCU->getQtRootCbf(0) == 0, 0, uhDepth ); 2045 #if MTK_SINGLE_DEPTH_MODE_I00952007 #if H_3D_SINGLE_DEPTH 2046 2008 rpcTempCU->setSingleDepthFlagSubParts( false, 0, uhDepth ); 2047 2009 #endif … … 2061 2023 if( rpcTempCU->getSlice()->getVPS()->getInterSDCFlag( rpcTempCU->getSlice()->getLayerIdInVps() ) && rpcTempCU->getSlice()->getIsDepth() && !uiNoResidual ) 2062 2024 { 2063 #if FAST_SDC_OFFSET_DECISION_I00842064 2025 Double dOffsetCost[3] = {MAX_DOUBLE,MAX_DOUBLE,MAX_DOUBLE}; 2065 2026 for( Int uiOffest = 1 ; uiOffest <= 5 ; uiOffest++ ) 2066 #else2067 for( Int uiOffest = -2 ; uiOffest <= 2 ; uiOffest++ )2068 #endif2069 2027 { 2070 #if FAST_SDC_OFFSET_DECISION_I00842071 2028 if( uiOffest > 3) 2072 2029 { … … 2084 2041 } 2085 2042 } 2086 #endif2087 2043 if( rpcTempCU != rpcTempCUPre ) 2088 2044 { … … 2091 2047 } 2092 2048 rpcTempCU->setSkipFlagSubParts( false, 0, uhDepth ); 2093 #if MTK_SINGLE_DEPTH_MODE_I00952049 #if H_3D_SINGLE_DEPTH 2094 2050 rpcTempCU->setSingleDepthFlagSubParts( false, 0, uhDepth ); 2095 2051 #endif … … 2106 2062 } 2107 2063 #endif 2108 #if FAST_SDC_OFFSET_DECISION_I00842109 2064 Int iSdcOffset = 0; 2110 2065 if(uiOffest % 2 == 0) … … 2127 2082 dOffsetCost [uiOffest -1] = rpcTempCU->getTotalCost(); 2128 2083 } 2129 #else2130 m_pcPredSearch->encodeResAndCalcRdInterSDCCU( rpcTempCU,2131 m_ppcOrigYuv[uhDepth],2132 ( rpcTempCU != rpcTempCUPre ) ? m_ppcPredYuvBest[uhDepth] : m_ppcPredYuvTemp[uhDepth],2133 m_ppcResiYuvTemp[uhDepth],2134 m_ppcRecoYuvTemp[uhDepth],2135 uiOffest,2136 uhDepth );2137 #endif2138 2084 2139 2085 xCheckDQP( rpcTempCU ); … … 2253 2199 2254 2200 rpcTempCU->setSkipFlagSubParts( false, 0, uhDepth ); 2255 #if MTK_SINGLE_DEPTH_MODE_I00952201 #if H_3D_SINGLE_DEPTH 2256 2202 rpcTempCU->setSingleDepthFlagSubParts( false, 0, uhDepth ); 2257 2203 #endif … … 2342 2288 if( rpcTempCU->getSlice()->getVPS()->getInterSDCFlag( rpcTempCU->getSlice()->getLayerIdInVps() ) && rpcTempCU->getSlice()->getIsDepth() && ePartSize == SIZE_2Nx2N) 2343 2289 { 2344 #if FAST_SDC_OFFSET_DECISION_I00842345 2290 Double dOffsetCost[3] = {MAX_DOUBLE,MAX_DOUBLE,MAX_DOUBLE}; 2346 2291 for( Int uiOffest = 1 ; uiOffest <= 5 ; uiOffest++ ) 2347 #else 2348 for( Int uiOffest = -2 ; uiOffest <= 2 ; uiOffest++ ) 2349 #endif 2350 { 2351 #if FAST_SDC_OFFSET_DECISION_I0084 2292 { 2352 2293 if( uiOffest > 3) 2353 2294 { … … 2365 2306 } 2366 2307 } 2367 #endif 2308 2368 2309 if( rpcTempCU != rpcTempCUPre ) 2369 2310 { … … 2373 2314 } 2374 2315 rpcTempCU->setSkipFlagSubParts( false, 0, uhDepth ); 2375 #if MTK_SINGLE_DEPTH_MODE_I00952316 #if H_3D_SINGLE_DEPTH 2376 2317 rpcTempCU->setSingleDepthFlagSubParts( false, 0, uhDepth ); 2377 2318 #endif … … 2389 2330 #endif 2390 2331 2391 #if FAST_SDC_OFFSET_DECISION_I00842392 2332 Int iSdcOffset = 0; 2393 2333 if(uiOffest % 2 == 0) … … 2410 2350 dOffsetCost [uiOffest -1] = rpcTempCU->getTotalCost(); 2411 2351 } 2412 #else2413 m_pcPredSearch->encodeResAndCalcRdInterSDCCU( rpcTempCU,2414 m_ppcOrigYuv[uhDepth],2415 ( rpcTempCU != rpcTempCUPre ) ? m_ppcPredYuvBest[uhDepth] : m_ppcPredYuvTemp[uhDepth],2416 m_ppcResiYuvTemp[uhDepth],2417 m_ppcRecoYuvTemp[uhDepth],2418 uiOffest,2419 uhDepth );2420 #endif2421 2352 2422 2353 xCheckDQP( rpcTempCU ); … … 2493 2424 } 2494 2425 } 2495 #if MTK_SINGLE_DEPTH_MODE_I00952426 #if H_3D_SINGLE_DEPTH 2496 2427 Void TEncCu::xCheckRDCostSingleDepth( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize eSize ) 2497 2428 { … … 2560 2491 } 2561 2492 #endif 2493 2562 2494 Void TEncCu::xCheckRDCostInterDBBP( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, Bool bUseMRG ) 2563 2495 { … … 2581 2513 AOF( uiWidth == uiHeight ); 2582 2514 2583 #if SEC_DBBP_DISALLOW_8x8_I0078 2515 #if H_3D_DBBP 2516 // Is this correct here, was under the macro SEC_DBBP_DISALLOW_8x8_I0078, however the function is related to Single Depth Mode 2584 2517 if(uiWidth <= 8) 2585 2518 { … … 2592 2525 // fetch virtual depth block 2593 2526 UInt uiDepthStride = 0; 2594 #if LGE_FCO_I01162527 #if H_3D_FCO 2595 2528 Pel* pDepthPels = rpcTempCU->getVirtualDepthBlock(rpcTempCU->getZorderIdxInCU(), uiWidth, uiHeight, uiDepthStride); 2596 2529 #else … … 2688 2621 2689 2622 // reconstruct final prediction signal by combining both segments 2690 #if SHARP_DBBP_SIMPLE_FLTER_I01092691 2623 m_pcPredSearch->combineSegmentsWithMask(apPredYuv, m_ppcPredYuvTemp[uhDepth], pMask, uiWidth, uiHeight, 0, eVirtualPartSize); 2692 #else2693 m_pcPredSearch->combineSegmentsWithMask(apPredYuv, m_ppcPredYuvTemp[uhDepth], pMask, uiWidth, uiHeight);2694 #endif2695 2696 2624 m_pcPredSearch->encodeResAndCalcRdInterCU( rpcTempCU, m_ppcOrigYuv[uhDepth], m_ppcPredYuvTemp[uhDepth], m_ppcResiYuvTemp[uhDepth], m_ppcResiYuvBest[uhDepth], m_ppcRecoYuvTemp[uhDepth], false ); 2697 2625 … … 2701 2629 #endif 2702 2630 2703 #if H HI_DMM4_ENC_I00662631 #if H_3D_DIM 2704 2632 Void TEncCu::xCheckRDCostIntra( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize eSize, Bool bOnlyIVP ) 2705 2633 #else … … 2721 2649 2722 2650 rpcTempCU->setSkipFlagSubParts( false, 0, uiDepth ); 2723 #if MTK_SINGLE_DEPTH_MODE_I00952651 #if H_3D_SINGLE_DEPTH 2724 2652 rpcTempCU->setSingleDepthFlagSubParts( false, 0, uiDepth ); 2725 2653 #endif … … 2733 2661 m_pcPredSearch->preestChromaPredMode( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth] ); 2734 2662 } 2735 #if H HI_DMM4_ENC_I00662663 #if H_3D_DIM 2736 2664 m_pcPredSearch ->estIntraPredQT ( rpcTempCU, m_ppcOrigYuv[uiDepth], m_ppcPredYuvTemp[uiDepth], m_ppcResiYuvTemp[uiDepth], m_ppcRecoYuvTemp[uiDepth], uiPreCalcDistC, bSeparateLumaChroma, bOnlyIVP ); 2737 2665 #else … … 2751 2679 } 2752 2680 m_pcEntropyCoder->encodeSkipFlag ( rpcTempCU, 0, true ); 2753 #if MTK_SINGLE_DEPTH_MODE_I00952681 #if H_3D_SINGLE_DEPTH 2754 2682 m_pcEntropyCoder->encodeSingleDepthMode( rpcTempCU, 0, true ); 2755 2683 if(!rpcTempCU->getSingleDepthFlag(0)) … … 2768 2696 m_pcEntropyCoder->encodeCoeff( rpcTempCU, 0, uiDepth, rpcTempCU->getWidth (0), rpcTempCU->getHeight(0), bCodeDQP ); 2769 2697 setdQPFlag( bCodeDQP ); 2770 #if MTK_SINGLE_DEPTH_MODE_I00952698 #if H_3D_SINGLE_DEPTH 2771 2699 } 2772 2700 #endif … … 2798 2726 2799 2727 rpcTempCU->setSkipFlagSubParts( false, 0, uiDepth ); 2800 #if MTK_SINGLE_DEPTH_MODE_I00952728 #if H_3D_SINGLE_DEPTH 2801 2729 rpcTempCU->setSingleDepthFlagSubParts( false, 0, uiDepth ); 2802 2730 #endif … … 2817 2745 } 2818 2746 m_pcEntropyCoder->encodeSkipFlag ( rpcTempCU, 0, true ); 2819 #if MTK_SINGLE_DEPTH_MODE_I00952747 #if H_3D_SINGLE_DEPTH 2820 2748 m_pcEntropyCoder->encodeSingleDepthMode( rpcTempCU, 0, true ); 2821 2749 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncCu.h
r1039 r1074 159 159 Void xCheckRDCostInterDBBP( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, Bool bUseMRG = false ); 160 160 #endif 161 #if MTK_SINGLE_DEPTH_MODE_I0095161 #if H_3D_SINGLE_DEPTH 162 162 Void xCheckRDCostSingleDepth ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize ); 163 163 #endif 164 #if H HI_DMM4_ENC_I0066164 #if H_3D_DIM 165 165 Void xCheckRDCostIntra ( TComDataCU*& rpcBestCU, TComDataCU*& rpcTempCU, PartSize ePartSize, Bool bOnlyIVP ); 166 166 #else -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncEntropy.cpp
r1066 r1074 119 119 m_pcEntropyCoderIf->codeSkipFlag( pcCU, uiAbsPartIdx ); 120 120 } 121 #if MTK_SINGLE_DEPTH_MODE_I0095121 #if H_3D_SINGLE_DEPTH 122 122 Void TEncEntropy::encodeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD ) 123 123 { … … 185 185 else 186 186 { 187 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX188 187 Int ICEnableCandidate = pcCU->getSlice()->getICEnableCandidate(pcCU->getSlice()->getDepth()); 189 188 Int ICEnableNum = pcCU->getSlice()->getICEnableNum(pcCU->getSlice()->getDepth()); … … 195 194 pcCU->getSlice()->setICEnableCandidate(pcCU->getSlice()->getDepth(), ICEnableCandidate); 196 195 pcCU->getSlice()->setICEnableNum(pcCU->getSlice()->getDepth(), ICEnableNum); 197 #else198 g_aICEnableCANDIDATE[pcCU->getSlice()->getDepth()]++;199 if(pcCU->getICFlag(uiAbsPartIdx))200 {201 g_aICEnableNUM[pcCU->getSlice()->getDepth()]++;202 }203 #endif204 196 } 205 197 if( pcCU->isICFlagRequired( uiAbsPartIdx ) ) … … 273 265 } 274 266 267 m_pcEntropyCoderIf->codePartSize( pcCU, uiAbsPartIdx, uiDepth ); 268 275 269 #if H_3D_DBBP 276 #if! SEC_DBBP_EXPLICIT_SIG_I0077277 PartSize eVirtualPartSize = pcCU->getPartitionSize(uiAbsPartIdx);278 if( pcCU->getDBBPFlag(uiAbsPartIdx) )279 {280 AOF( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) );281 282 // temporarily change partition size for DBBP blocks283 pcCU->setPartSizeSubParts(RWTH_DBBP_PACK_MODE, uiAbsPartIdx, uiDepth);284 }285 #endif286 #endif287 288 m_pcEntropyCoderIf->codePartSize( pcCU, uiAbsPartIdx, uiDepth );289 290 #if H_3D_DBBP291 #if SEC_DBBP_EXPLICIT_SIG_I0077292 #if SEC_DBBP_DISALLOW_8x8_I0078293 270 if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) && (pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2NxN || pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_Nx2N) && pcCU->getWidth(uiAbsPartIdx) > 8 ) 294 #else295 if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) && (pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2NxN || pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_Nx2N) )296 #endif297 #else298 #if SEC_DBBP_DISALLOW_8x8_I0078299 if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) && pcCU->getWidth(uiAbsPartIdx) > 8 )300 #else301 if( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) )302 #endif303 #endif304 271 { 305 272 encodeDBBPFlag(pcCU, uiAbsPartIdx, bRD); 306 #if !SEC_DBBP_EXPLICIT_SIG_I0077307 if( pcCU->getDBBPFlag(uiAbsPartIdx) )308 {309 // restore virtual partition size for DBBP blocks310 pcCU->setPartSizeSubParts(eVirtualPartSize, uiAbsPartIdx, uiDepth);311 }312 #endif313 273 } 314 274 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncEntropy.h
r1039 r1074 86 86 virtual Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; 87 87 virtual Void codeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; 88 #if MTK_SINGLE_DEPTH_MODE_I009588 #if H_3D_SINGLE_DEPTH 89 89 virtual Void codeSingleDepthMode ( TComDataCU* pcCU, UInt uiAbsPartIdx ) = 0; 90 90 #endif … … 174 174 Void encodeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); 175 175 Void encodeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD = false ); 176 #if MTK_SINGLE_DEPTH_MODE_I0095176 #if H_3D_SINGLE_DEPTH 177 177 Void encodeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool bRD=false ); 178 178 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncGOP.cpp
r1066 r1074 160 160 #endif 161 161 #endif 162 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX163 m_aICEnableCandidate 164 m_aICEnableNum 162 #if H_3D_IC 163 m_aICEnableCandidate = pcTEncTop->getICEnableCandidate(); 164 m_aICEnableNum = pcTEncTop->getICEnableNum(); 165 165 #endif 166 166 #if KWU_FIX_URQ … … 937 937 pcSlice->setRefPicList ( rcListPic ); 938 938 #endif 939 #if MTK_SINGLE_DEPTH_MODE_I0095939 #if H_3D_SINGLE_DEPTH 940 940 TEncTop* pcEncTop = (TEncTop*) m_pcCfg; 941 941 bool enableSingleDepthMode=false; … … 971 971 #endif 972 972 #endif 973 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX973 #if H_3D_IC 974 974 pcSlice->setICEnableCandidate( m_aICEnableCandidate ); 975 975 pcSlice->setICEnableNum( m_aICEnableNum ); -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncGOP.h
r1066 r1074 116 116 #endif 117 117 #endif 118 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX119 Int *m_aICEnableCandidate;120 Int *m_aICEnableNum;118 #if H_3D_IC 119 Int* m_aICEnableCandidate; 120 Int* m_aICEnableNum; 121 121 #endif 122 122 //--Adaptive Loop filter -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncSbac.cpp
r1066 r1074 58 58 , m_cCUSplitFlagSCModel ( 1, 1, NUM_SPLIT_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels ) 59 59 , m_cCUSkipFlagSCModel ( 1, 1, NUM_SKIP_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels) 60 #if MTK_SINGLE_DEPTH_MODE_I009560 #if H_3D_SINGLE_DEPTH 61 61 , m_cCUSingleDepthFlagSCModel ( 1, 1, NUM_SINGLEDEPTH_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels) 62 62 , m_cSingleDepthValueSCModel ( 1, 1, NUM_SINGLE_DEPTH_VALUE_DATA_CTX , m_contextModels + m_numContextModels, m_numContextModels) … … 134 134 135 135 m_cCUSkipFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SKIP_FLAG ); 136 #if MTK_SINGLE_DEPTH_MODE_I0095136 #if H_3D_SINGLE_DEPTH 137 137 m_cCUSingleDepthFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SINGLEDEPTH_FLAG ); 138 138 m_cSingleDepthValueSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SINGLE_DEPTH_VALUE_DATA ); … … 214 214 curCost = m_cCUSplitFlagSCModel.calcCost ( curSliceType, qp, (UChar*)INIT_SPLIT_FLAG ); 215 215 curCost += m_cCUSkipFlagSCModel.calcCost ( curSliceType, qp, (UChar*)INIT_SKIP_FLAG ); 216 #if MTK_SINGLE_DEPTH_MODE_I0095216 #if H_3D_SINGLE_DEPTH 217 217 curCost += m_cCUSingleDepthFlagSCModel.calcCost ( curSliceType, qp, (UChar*)INIT_SINGLEDEPTH_FLAG ); 218 218 curCost += m_cSingleDepthValueSCModel.calcCost ( curSliceType, qp, (UChar*)INIT_SINGLE_DEPTH_VALUE_DATA ); … … 255 255 curCost += m_CUTransquantBypassFlagSCModel.calcCost( curSliceType, qp, (UChar*)INIT_CU_TRANSQUANT_BYPASS_FLAG ); 256 256 #if H_3D_DIM 257 #if SEPARATE_FLAG_I0085258 257 if( m_pcSlice->getVpsDepthModesFlag() || m_pcSlice->getIVPFlag() ) 259 #else260 if( m_pcSlice->getVpsDepthModesFlag() )261 #endif262 258 { 263 259 curCost += m_cDepthIntraModeSCModel.calcCost ( curSliceType, qp, (UChar*)INIT_DEPTH_INTRA_MODE ); … … 291 287 292 288 m_cCUSkipFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SKIP_FLAG ); 293 #if MTK_SINGLE_DEPTH_MODE_I0095289 #if H_3D_SINGLE_DEPTH 294 290 m_cCUSingleDepthFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SINGLEDEPTH_FLAG ); 295 291 m_cSingleDepthValueSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_SINGLE_DEPTH_VALUE_DATA ); … … 454 450 m_pcBinIf->encodeBinsEP( bins, numBins ); 455 451 } 456 #if MTK_SINGLE_DEPTH_MODE_I0095452 #if H_3D_SINGLE_DEPTH 457 453 Void TEncSbac::codeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx ) 458 454 { … … 462 458 { 463 459 UInt uiUnaryIdx = (UInt) pcCU->getSingleDepthValue(uiAbsPartIdx); 464 UInt uiNumCand = MTK_SINGLE_DEPTH_MODE_CANDIDATE_LIST_SIZE;460 UInt uiNumCand = SINGLE_DEPTH_MODE_CAND_LIST_SIZE; 465 461 if ( uiNumCand > 1 ) 466 462 { … … 563 559 564 560 #endif 565 566 #if !FIX_TICKET_76567 #if H_3D_DIM_SDC568 Void TEncSbac::xCodeSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiSegment )569 {570 assert( pcCU->getSlice()->getIsDepth() );571 assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N );572 assert( pcCU->getSDCFlag(uiAbsPartIdx) );573 assert( uiSegment < 2 );574 575 Pel segmentDCOffset = pcCU->getSDCSegmentDCOffset(uiSegment, uiAbsPartIdx);576 577 UInt uiResidual = segmentDCOffset == 0 ? 0 : 1;578 UInt uiSign = segmentDCOffset < 0 ? 1 : 0;579 UInt uiAbsIdx = abs(segmentDCOffset);580 581 #if H_3D_DIM_DLT582 UInt uiMaxResidualBits = pcCU->getSlice()->getPPS()->getDLT()->getBitsPerDepthValue( pcCU->getSlice()->getLayerIdInVps() );583 #else584 UInt uiMaxResidualBits = g_bitDepthY;585 #endif586 assert( uiMaxResidualBits <= g_bitDepthY );587 588 // residual flag589 m_pcBinIf->encodeBin( uiResidual, m_cSDCResidualFlagSCModel.get( 0, 0, 0 ) );590 #if H_MV_ENC_DEC_TRAC591 DTRACE_CU("sdc_residual_flag[i]", uiResidual)592 #endif593 594 if (uiResidual)595 {596 // encode sign bit of residual597 m_pcBinIf->encodeBinEP( uiSign );598 #if H_MV_ENC_DEC_TRAC599 DTRACE_CU("sdc_residual_sign_flag[i]", uiSign)600 #endif601 #if H_3D_DIM_DLT602 UInt uiNumDepthValues = pcCU->getSlice()->getPPS()->getDLT()->getNumDepthValues( pcCU->getSlice()->getLayerIdInVps() );603 #else604 UInt uiNumDepthValues = ((1 << g_bitDepthY)-1);605 #endif606 607 assert(uiAbsIdx <= uiNumDepthValues);608 609 // encode residual magnitude610 uiAbsIdx -= 1;611 612 #if H_MV_ENC_DEC_TRAC613 DTRACE_CU("sdc_residual_abs_minus1[i]", uiAbsIdx)614 #endif615 616 // prefix part617 if ( uiAbsIdx == 0 )618 {619 m_pcBinIf->encodeBin( 0, m_cSDCResidualSCModel.get(0, 0, 0) );620 }621 else622 {623 UInt l = uiAbsIdx;624 UInt k = 0;625 UInt uiPrefixThreshold = ((uiNumDepthValues * 3) >> 2);626 while ( l > 0 && k < uiPrefixThreshold )627 {628 m_pcBinIf->encodeBin( 1, m_cSDCResidualSCModel.get(0, 0, 0) );629 l--;630 k++;631 }632 if ( uiAbsIdx < uiPrefixThreshold )633 {634 m_pcBinIf->encodeBin( 0, m_cSDCResidualSCModel.get(0, 0, 0) );635 }636 else637 { // suffix part638 uiAbsIdx -= uiPrefixThreshold;639 UInt uiSuffixLength = numBitsForValue(uiNumDepthValues - uiPrefixThreshold);640 UInt uiBitInfo = 0;641 for ( Int i = 0; i < uiSuffixLength; i++)642 {643 uiBitInfo = ( uiAbsIdx & ( 1 << i ) ) >> i;644 m_pcBinIf->encodeBinEP( uiBitInfo);645 }646 }647 }648 649 }650 }651 #endif652 #endif653 561 #endif 654 562 … … 717 625 PartSize eSize = pcCU->getPartitionSize( uiAbsPartIdx ); 718 626 #if H_3D_QTLPC 719 #if MTK_I0099_VPS_EX2720 627 TComVPS *vps = pcCU->getPic()->getSlice(0)->getVPS(); 721 628 Bool bLimQtPredFlag = vps->getLimQtPredFlag(pcCU->getPic()->getSlice(0)->getLayerId()); 722 #else723 TComSPS *sps = pcCU->getPic()->getSlice(0)->getSPS();724 #endif725 629 TComPic *pcTexture = pcCU->getSlice()->getTexturePic(); 726 630 Bool bDepthMapDetect = (pcTexture != NULL); … … 731 635 Bool depthDependent = false; 732 636 UInt uiTexturePart = eSize; 733 #if MTK_I0099_VPS_EX2 734 #if LGE_FCO_I0116637 638 #if H_3D_FCO 735 639 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && bLimQtPredFlag && pcTexture->getReconMark()) 736 640 #else 737 641 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && bLimQtPredFlag ) 738 #endif739 #else740 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && sps->getUseQTL() && sps->getUsePC() )741 642 #endif 742 643 { … … 1097 998 Bool bCodeSplitFlag = true; 1098 999 1099 #if MTK_I0099_VPS_EX21100 1000 TComVPS *vps = pcCU->getPic()->getSlice(0)->getVPS(); 1101 1001 Bool bLimQtPredFlag = vps->getLimQtPredFlag(pcCU->getPic()->getSlice(0)->getLayerId()); 1102 #else1103 TComSPS *sps = pcCU->getPic()->getSlice(0)->getSPS();1104 #endif1105 1002 TComPic *pcTexture = pcCU->getSlice()->getTexturePic(); 1106 1003 Bool bDepthMapDetect = (pcTexture != NULL); … … 1109 1006 Bool rapPic = (pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP || pcCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA); 1110 1007 1111 #if MTK_I0099_VPS_EX2 1112 #if LGE_FCO_I0116 1008 #if H_3D_FCO 1113 1009 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && bLimQtPredFlag && pcTexture->getReconMark() ) 1114 1010 #else 1115 1011 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && bLimQtPredFlag ) 1116 #endif1117 #else1118 if(bDepthMapDetect && !bIntraSliceDetect && !rapPic && pcCU->getPic()->getReduceBitsFlag() && sps->getUseQTL() && sps->getUsePC())1119 1012 #endif 1120 1013 { … … 1167 1060 dir[j] = pcCU->getLumaIntraDir( absPartIdx+partOffset*j ); 1168 1061 #if H_3D_DIM 1169 #if SEPARATE_FLAG_I00851170 1062 if( pcCU->getSlice()->getVpsDepthModesFlag() || pcCU->getSlice()->getIVPFlag() ) 1171 #else1172 if( pcCU->getSlice()->getVpsDepthModesFlag() )1173 #endif1174 1063 { 1175 1064 codeIntraDepth( pcCU, absPartIdx+partOffset*j ); … … 1317 1206 } 1318 1207 //mode coding 1319 #if SEPARATE_FLAG_I00851320 1208 if( pcCU->getSlice()->getVpsDepthModesFlag() && pcCU->getSlice()->getIVPFlag()) 1321 1209 { 1322 1210 m_pcBinIf->encodeBin( uiCodeIdx == 0 ? 0 : 1, m_cDepthIntraModeSCModel.get( 0, 0, 0 ) ); 1323 1211 } 1324 #else1325 m_pcBinIf->encodeBin( uiCodeIdx == 0 ? 0 : 1, m_cDepthIntraModeSCModel.get( 0, 0, 0 ) );1326 #endif1327 1212 } 1328 1213 } … … 2368 2253 } 2369 2254 2370 #if HS_DMM_SIGNALLING_I01202371 2255 UInt uiNumSegments = isDimMode( pcCU->getLumaIntraDir( absPartIdx ) ) ? 2 : 1; 2372 2256 UInt dimDeltaDC = 1; 2373 #else 2374 UInt uiNumSegments = 0; 2375 UInt dimDeltaDC = 0; 2376 #endif 2377 2378 #if HS_DMM_SIGNALLING_I0120 2257 2379 2258 if( pcCU->isIntra( absPartIdx ) && pcCU->getSDCFlag( absPartIdx )) 2380 2259 { 2381 #else2382 if( pcCU->isIntra( absPartIdx ) )2383 {2384 UInt dir = pcCU->getLumaIntraDir( absPartIdx );2385 uiNumSegments = isDimMode( dir ) ? 2 : 1;2386 2387 if( pcCU->getSDCFlag( absPartIdx ) )2388 {2389 #endif2390 2260 if( uiNumSegments == 1 ) 2391 2261 { … … 2396 2266 dimDeltaDC = ( pcCU->getSDCSegmentDCOffset( 0, absPartIdx ) || pcCU->getSDCSegmentDCOffset( 1, absPartIdx ) ) ? 1 : 0; 2397 2267 } 2398 #if !HS_DMM_SIGNALLING_I01202399 }2400 else2401 {2402 dimDeltaDC = isDimDeltaDC( dir );2403 }2404 #endif2405 2268 m_pcBinIf->encodeBin( dimDeltaDC, m_cDdcFlagSCModel.get( 0, 0, 0 ) ); 2406 2269 } 2407 #if !HS_DMM_SIGNALLING_I01202408 else //all-zero inter SDC is not allowed2409 {2410 uiNumSegments = 1;2411 dimDeltaDC = 1;2412 }2413 #endif2414 2270 2415 2271 if( dimDeltaDC ) … … 2447 2303 Void TEncSbac::codeDBBPFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) 2448 2304 { 2449 #if SEC_DBBP_EXPLICIT_SIG_I00772450 2305 PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx ); 2451 2306 AOF( ePartSize == SIZE_2NxN || ePartSize == SIZE_Nx2N ); 2452 #endif2453 2307 AOF( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) ); 2454 2308 AOF( !pcCU->getSlice()->getIsDepth() ); -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncSbac.h
r1039 r1074 130 130 Void xCodeDmm1WedgeIdx ( UInt uiTabIdx, Int iNumBit ); 131 131 #endif 132 #if !FIX_TICKET_76133 #if H_3D_DIM_SDC134 Void xCodeSDCResidualData ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiSegment );135 #endif136 #endif137 132 #endif 138 133 … … 155 150 Void codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ); 156 151 Void codeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); 157 #if MTK_SINGLE_DEPTH_MODE_I0095152 #if H_3D_SINGLE_DEPTH 158 153 Void codeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx ); 159 154 #endif … … 224 219 ContextModel3DBuffer m_cCUSplitFlagSCModel; 225 220 ContextModel3DBuffer m_cCUSkipFlagSCModel; 226 #if MTK_SINGLE_DEPTH_MODE_I0095221 #if H_3D_SINGLE_DEPTH 227 222 ContextModel3DBuffer m_cCUSingleDepthFlagSCModel; 228 223 ContextModel3DBuffer m_cSingleDepthValueSCModel; -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncSearch.cpp
r1066 r1074 915 915 } 916 916 m_pcEntropyCoder->encodeSkipFlag( pcCU, 0, true ); 917 #if MTK_SINGLE_DEPTH_MODE_I0095917 #if H_3D_SINGLE_DEPTH 918 918 m_pcEntropyCoder->encodeSingleDepthMode(pcCU, 0, true ); 919 919 if(!pcCU->getSingleDepthFlag(uiAbsPartIdx)) … … 921 921 m_pcEntropyCoder->encodePredMode( pcCU, 0, true ); 922 922 } 923 #if MTK_SINGLE_DEPTH_MODE_I0095923 #if H_3D_SINGLE_DEPTH 924 924 else 925 925 { … … 927 927 } 928 928 #endif 929 #if MTK_SINGLE_DEPTH_MODE_I0095929 #if H_3D_SINGLE_DEPTH 930 930 if(!pcCU->getSingleDepthFlag(uiAbsPartIdx)) 931 931 { … … 945 945 } 946 946 } 947 #if MTK_SINGLE_DEPTH_MODE_I0095948 } 949 #endif 950 } 951 #if MTK_SINGLE_DEPTH_MODE_I0095947 #if H_3D_SINGLE_DEPTH 948 } 949 #endif 950 } 951 #if H_3D_SINGLE_DEPTH 952 952 if(!pcCU->getSingleDepthFlag(uiAbsPartIdx)) 953 953 { … … 995 995 } 996 996 } 997 #if MTK_SINGLE_DEPTH_MODE_I0095997 #if H_3D_SINGLE_DEPTH 998 998 } 999 999 #endif … … 1859 1859 dRDCost += dSingleCost; 1860 1860 } 1861 #if MTK_SINGLE_DEPTH_MODE_I00951861 #if H_3D_SINGLE_DEPTH 1862 1862 Void TEncSearch::xIntraCodingSingleDepth( TComDataCU* pcCU, UInt uiAbsPartIdx, TComYuv* pcOrgYuv, TComYuv* pcPredYuv, Dist& ruiDist, Double& dRDCost, Int iTestDepthIdx, Pel *DepthNeighbor ) 1863 1863 { … … 1970 1970 UInt dimType = getDimType ( uiLumaPredMode ); 1971 1971 UInt patternID = pcCU->getDmmWedgeTabIdx(dimType, uiAbsPartIdx); 1972 #if SHARP_DMM1_I01101973 1972 UInt uiBaseWidth = pcCU->isDMM1UpscaleMode(uiWidth) ? pcCU->getDMM1BasePatternWidth(uiWidth) : uiWidth; 1974 1973 if ( patternID >= g_dmmWedgeLists[g_aucConvertToBit[uiBaseWidth]].size() && dimType == DMM1_IDX ) 1975 #else 1976 if ( patternID >= g_dmmWedgeLists[g_aucConvertToBit[uiWidth]].size() && dimType == DMM1_IDX ) 1977 #endif 1978 { 1979 #if SHARP_DMM1_I0110 1974 { 1980 1975 if (g_aucConvertToBit[uiBaseWidth] == 2) // Encoder method. Avoid DMM1 pattern list index exceeds the maximum DMM1 pattern number when SDC split is used. 1981 #else1982 if (g_aucConvertToBit[uiWidth] == 2) // Encoder method. Avoid DMM1 pattern list index exceeds the maximum DMM1 pattern number when SDC split is used.1983 #endif1984 1976 { 1985 1977 patternID = 1349; // Split 32x32 to 16x16. 1349: Maximum DMM1 pattern number when block size is 16x16 … … 2043 2035 Int uiTabIdx = pcCU->getDmmWedgeTabIdx(DMM1_IDX, uiAbsPartIdx); 2044 2036 2045 #if SHARP_DMM1_I01102046 2037 WedgeList* pacWedgeList = pcCU->isDMM1UpscaleMode( uiWidth ) ? &g_dmmWedgeLists[(g_aucConvertToBit[pcCU->getDMM1BasePatternWidth(uiWidth)])] : &g_dmmWedgeLists[(g_aucConvertToBit[uiWidth])]; 2047 #else2048 WedgeList* pacWedgeList = &g_dmmWedgeLists[(g_aucConvertToBit[uiWidth])];2049 #endif2050 2038 TComWedgelet* pcWedgelet = &(pacWedgeList->at( uiTabIdx )); 2051 2039 2052 2040 uiNumSegments = 2; 2053 #if SHARP_DMM1_I01102054 2041 pbMask = pcCU->isDMM1UpscaleMode( uiWidth ) ? pcWedgelet->getScaledPattern( uiWidth ) : pcWedgelet->getPattern(); 2055 2042 uiMaskStride = pcCU->isDMM1UpscaleMode( uiWidth ) ? uiWidth : pcWedgelet->getStride(); 2056 #else2057 pbMask = pcWedgelet->getPattern();2058 uiMaskStride = pcWedgelet->getStride();2059 #endif2060 2043 } 2061 2044 if( getDimType( uiLumaPredMode ) == DMM4_IDX ) … … 2878 2861 pcCU->setChromIntraDirSubParts( uiBestMode, 0, pcCU->getDepth( 0 ) ); 2879 2862 } 2880 #if MTK_SINGLE_DEPTH_MODE_I00952863 #if H_3D_SINGLE_DEPTH 2881 2864 Void 2882 2865 TEncSearch::estIntraPredSingleDepth( TComDataCU* pcCU, … … 2900 2883 Pel DepthNeighbours[5]; 2901 2884 //construction of depth candidates 2902 for( Int i = 0; (i < 5) && (index< MTK_SINGLE_DEPTH_MODE_CANDIDATE_LIST_SIZE) ; i++ )2885 for( Int i = 0; (i < 5) && (index<SINGLE_DEPTH_MODE_CAND_LIST_SIZE) ; i++ ) 2903 2886 { 2904 2887 if(!pcCU->getNeighDepth (0, 0, &testDepth, i)) … … 2983 2966 UInt& ruiDistC, 2984 2967 Bool bLumaOnly 2985 #if H HI_DMM4_ENC_I00662968 #if H_3D_DIM 2986 2969 , Bool bOnlyIVP 2987 2970 #endif … … 3032 3015 Int numModesForFullRD = g_aucIntraModeNumFast[ uiWidthBit ]; 3033 3016 3034 #if H HI_DMM4_ENC_I00663017 #if H_3D_DIM 3035 3018 if( bOnlyIVP ) 3036 3019 { … … 3080 3063 UInt iModeBits = xModeBitsIntra( pcCU, uiMode, uiPU, uiPartOffset, uiDepth, uiInitTrDepth ); 3081 3064 #if H_3D_VSO // M35 3082 #if H_3D_VSO_FIX // This fix should be enabled after verification3083 3065 Double dLambda; 3084 3066 if ( m_pcRdCost->getUseLambdaScaleVSO() ) … … 3092 3074 3093 3075 Double cost = (Double)uiSad + (Double)iModeBits * dLambda; 3094 #else3095 Double cost = (Double)uiSad + (Double)iModeBits * m_pcRdCost->getSqrtLambda();3096 #endif3097 3076 #else 3098 3077 Double cost = (Double)uiSad + (Double)iModeBits * m_pcRdCost->getSqrtLambda(); … … 3135 3114 } 3136 3115 } 3137 #if H HI_DMM4_ENC_I00663116 #if H_3D_DIM 3138 3117 } 3139 3118 #endif … … 3143 3122 if( m_pcEncCfg->getIsDepth() && uiWidth >= DIM_MIN_SIZE && uiWidth <= DIM_MAX_SIZE && uiWidth == uiHeight ) 3144 3123 { 3145 #if HHI_DMM4_ENC_I00663146 #if SEPARATE_FLAG_I00853147 3124 if( bOnlyIVP && m_pcEncCfg->getUseIVP() ) 3148 #else3149 if( bOnlyIVP )3150 #endif3151 3125 { 3152 3126 TComWedgelet* dmm4Segmentation = new TComWedgelet( uiWidth, uiHeight ); … … 3158 3132 pcCU->setDimDeltaDC( DMM4_IDX, 1, uiPartOffset, deltaDC2 ); 3159 3133 3160 #if HS_DMM_SIGNALLING_I01203161 3134 uiRdModeList[ numModesForFullRD++ ] = (DMM4_IDX+DIM_OFFSET); 3162 #else3163 uiRdModeList[ numModesForFullRD++ ] = (2*DMM4_IDX +DIM_OFFSET);3164 if( deltaDC1 != 0 || deltaDC2 != 0 )3165 uiRdModeList[ numModesForFullRD++ ] = (2*DMM4_IDX+1+DIM_OFFSET);3166 #endif3167 3135 dmm4Segmentation->destroy(); delete dmm4Segmentation; 3168 3136 } 3169 3137 else 3170 3138 { 3171 #endif3172 3139 #if H_3D_FAST_DEPTH_INTRA 3173 3140 Int threshold = max(((pcCU->getQP(0))>>3)-1,3); … … 3177 3144 3178 3145 #if H_3D_DIM_DMM 3179 #if SEPARATE_FLAG_I00853180 3146 if( ( m_pcEncCfg->getUseDMM() || m_pcEncCfg->getUseIVP() ) 3181 #else3182 if( m_pcEncCfg->getUseDMM()3183 #endif3184 3147 #if H_3D_FAST_DEPTH_INTRA 3185 3148 && (uiRdModeList[0] != PLANAR_IDX || varCU >= varThreshold) … … 3187 3150 ) 3188 3151 { 3189 #if SEPARATE_FLAG_I00853190 3152 UInt uiStart, uiEnd; 3191 3153 if( m_pcEncCfg->getUseDMM() && m_pcEncCfg->getUseIVP() ) … … 3210 3172 } 3211 3173 for( UInt dmmType = uiStart; dmmType < uiEnd; dmmType++ ) 3212 #else3213 for( UInt dmmType = 0; dmmType < DMM_NUM_TYPE; dmmType++ )3214 #endif3215 3174 { 3216 3175 #if H_3D_FCO 3217 3176 TComPic* picTexture = pcCU->getSlice()->getIvPic(false, pcCU->getSlice()->getViewIndex() ); 3218 #if LGE_FCO_I01163177 #if H_3D_FCO 3219 3178 if ( !picTexture->getReconMark() && (DMM4_IDX == dmmType ) ) 3220 3179 #else … … 3234 3193 xSearchDmm1Wedge( pcCU, uiPartOffset, piOrg, uiStride, uiWidth, uiHeight, uiTabIdx ); 3235 3194 pcCU->setDmmWedgeTabIdxSubParts( uiTabIdx, dmmType, uiPartOffset, uiDepth + uiInitTrDepth ); 3236 #if SHARP_DMM1_I01103237 3195 biSegmentation = pcCU->isDMM1UpscaleMode( uiWidth ) ? 3238 3196 &(g_dmmWedgeLists[(g_aucConvertToBit[pcCU->getDMM1BasePatternWidth(uiWidth)])][uiTabIdx]) : &(g_dmmWedgeLists[(g_aucConvertToBit[uiWidth])][uiTabIdx]); 3239 #else3240 biSegmentation = &(g_dmmWedgeLists[(g_aucConvertToBit[uiWidth])][uiTabIdx]);3241 #endif3242 3197 } break; 3243 3198 … … 3254 3209 if( biSegmentation ) 3255 3210 { 3256 #if SHARP_DMM1_I01103257 3211 if( dmmType == DMM1_IDX && pcCU->isDMM1UpscaleMode( uiWidth ) ){ 3258 3212 xSearchDmmDeltaDCs( pcCU, uiPartOffset, piOrg, piPred, uiStride, biSegmentation->getScaledPattern(uiWidth), uiWidth, uiWidth, uiHeight, deltaDC1, deltaDC2 ); … … 3262 3216 xSearchDmmDeltaDCs( pcCU, uiPartOffset, piOrg, piPred, uiStride, biSegmentation->getPattern(), biSegmentation->getStride(), uiWidth, uiHeight, deltaDC1, deltaDC2 ); 3263 3217 } 3264 #else3265 xSearchDmmDeltaDCs( pcCU, uiPartOffset, piOrg, piPred, uiStride, biSegmentation->getPattern(), biSegmentation->getStride(), uiWidth, uiHeight, deltaDC1, deltaDC2 );3266 #endif3267 3218 pcCU->setDimDeltaDC( dmmType, 0, uiPartOffset, deltaDC1 ); 3268 3219 pcCU->setDimDeltaDC( dmmType, 1, uiPartOffset, deltaDC2 ); 3269 3220 3270 #if HS_DMM_SIGNALLING_I01203271 3221 uiRdModeList[ numModesForFullRD++ ] = (dmmType +DIM_OFFSET); 3272 #else3273 uiRdModeList[ numModesForFullRD++ ] = (2*dmmType +DIM_OFFSET);3274 #if HHI_DMM4_ENC_I00663275 if( deltaDC1 != 0 || deltaDC2 != 0 )3276 #endif3277 uiRdModeList[ numModesForFullRD++ ] = (2*dmmType+1+DIM_OFFSET);3278 #endif3279 3280 3222 if( DMM4_IDX == dmmType ) { biSegmentation->destroy(); delete biSegmentation; } 3281 3223 } 3282 3224 } 3283 3225 } 3284 #if H HI_DMM4_ENC_I00663226 #if H_3D_DIM 3285 3227 } 3286 3228 #endif … … 3295 3237 3296 3238 UInt uiBestPUMode = 0; 3297 #if SCU_HS_FAST_INTRA_SDC_I01233239 #if H_3D_FAST_INTRA_SDC 3298 3240 UInt uiBestPUModeConv = 0; 3299 3241 UInt uiSecondBestPUModeConv = 0; … … 3309 3251 Double dBestPUCost = MAX_DOUBLE; 3310 3252 3311 #if SCU_HS_FAST_INTRA_SDC_I01233253 #if H_3D_FAST_INTRA_SDC 3312 3254 Double dBestPUCostConv = MAX_DOUBLE; 3313 3255 UInt varCU = m_pcRdCost->calcVAR(piOrg, uiStride, uiWidth,uiHeight,pcCU->getDepth(0)); … … 3319 3261 Pel apBestDCOffsets[2] = {0,0}; 3320 3262 #endif 3321 #if SCU_HS_FAST_INTRA_SDC_I01233263 #if H_3D_FAST_INTRA_SDC 3322 3264 for( UInt uiMode = 0; uiMode < numModesForFullRD + rdSDC; uiMode++ ) 3323 3265 #else … … 3326 3268 { 3327 3269 // set luma prediction mode 3328 #if ! SCU_HS_FAST_INTRA_SDC_I01233270 #if !H_3D_FAST_INTRA_SDC 3329 3271 UInt uiOrgMode = uiRdModeList[uiMode]; 3330 3272 #endif 3331 3273 3332 #if SCU_HS_FAST_INTRA_SDC_I01233274 #if H_3D_FAST_INTRA_SDC 3333 3275 UInt uiOrgMode; 3334 3276 if (uiMode < numModesForFullRD) … … 3356 3298 3357 3299 #if H_3D_DIM_SDC 3358 #if SCU_HS_FAST_INTRA_SDC_I01233300 #if H_3D_FAST_INTRA_SDC 3359 3301 Bool bTestSDC = ( m_pcEncCfg->getUseSDC() && pcCU->getSDCAvailable(uiPartOffset) && uiMode >= numModesForFullRD); 3360 3302 #else … … 3364 3306 for( UInt uiSDC=0; uiSDC<=(bTestSDC?1:0); uiSDC++ ) 3365 3307 { 3366 #if SCU_HS_FAST_INTRA_SDC_I01233308 #if H_3D_FAST_INTRA_SDC 3367 3309 if (!uiSDC && uiMode >= numModesForFullRD) continue; 3368 3310 #endif 3369 3311 pcCU->setSDCFlagSubParts( (uiSDC != 0), uiPartOffset, uiDepth + uiInitTrDepth ); 3370 #if FAST_SDC_OFFSET_DECISION_I00843371 3312 Double dOffsetCost[3] = {MAX_DOUBLE,MAX_DOUBLE,MAX_DOUBLE}; 3372 3313 for( Int iOffset = 1; iOffset <= 5; iOffset++ ) 3373 #else 3374 for( Int iSDCDeltaResi = -2; iSDCDeltaResi <= 2; iSDCDeltaResi++ ) 3375 #endif 3376 { 3377 #if FAST_SDC_OFFSET_DECISION_I0084 3314 { 3378 3315 Int iSDCDeltaResi = 0; 3379 3316 if(iOffset % 2 == 0) … … 3385 3322 iSDCDeltaResi = -1 * (iOffset >> 1); 3386 3323 } 3387 #endif3388 3324 if( ( uiSDC == 0 ) && iSDCDeltaResi != 0 ) 3389 3325 { 3390 3326 continue; 3391 3327 } 3392 #if FAST_SDC_OFFSET_DECISION_I00843393 3328 if( iOffset > 3) 3394 3329 { … … 3407 3342 } 3408 3343 #endif 3409 #endif3410 3344 3411 3345 #if H_3D_DIM_ENC || H_3D_DIM_SDC … … 3452 3386 // start encoding with SDC 3453 3387 xIntraCodingSDC(pcCU, uiPartOffset, pcOrgYuv, pcPredYuv, uiPUDistY, dPUCost, ( testZeroResi != 0 ), iSDCDeltaResi ); 3454 #if FAST_SDC_OFFSET_DECISION_I00843455 3388 if ( testZeroResi == 0 && iOffset <= 3 ) 3456 3389 { 3457 3390 dOffsetCost [iOffset -1] = dPUCost; 3458 3391 } 3459 #endif3460 3392 } 3461 3393 else … … 3465 3397 #if H_3D_DIM_ENC 3466 3398 xRecurIntraCodingQT( pcCU, uiInitTrDepth, uiPartOffset, bLumaOnly, pcOrgYuv, pcPredYuv, pcResiYuv, uiPUDistY, uiPUDistC, true, dPUCost, (testZeroResi != 0) ); 3467 #if SCU_HS_FAST_INTRA_SDC_I01233399 #if H_3D_FAST_INTRA_SDC 3468 3400 if( dPUCost < dBestPUCostConv ) 3469 3401 { … … 4017 3949 #if H_3D_VSP 4018 3950 , Int* vspFlag 4019 #if !FIX_TICKET_794020 , InheritedVSPDisInfo* inheritedVSPDisInfo4021 #endif4022 3951 #endif 4023 3952 #if H_3D_SPIVMP … … 4079 4008 pcCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours,uhInterDirNeighbours, numValidMergeCand); 4080 4009 pcCU->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours,uhInterDirNeighbours 4081 #if H_3D_VSP && !FIX_TICKET_794082 , inheritedVSPDisInfo4083 #endif4084 4010 #if H_3D_SPIVMP 4085 4011 , pcMvFieldSP, puhInterDirSP … … 4109 4035 pcCU->getInterMergeCandidates( uiAbsPartIdx, iPUIdx, cMvFieldNeighbours,uhInterDirNeighbours, numValidMergeCand); 4110 4036 pcCU->xGetInterMergeCandidates( uiAbsPartIdx, iPUIdx, cMvFieldNeighbours, uhInterDirNeighbours 4111 #if H_3D_VSP && !FIX_TICKET_794112 , inheritedVSPDisInfo4113 #endif4114 4037 #if H_3D_SPIVMP 4115 4038 , pcMvFieldSP, puhInterDirSP … … 4132 4055 #endif 4133 4056 } 4134 #if H_3D_VSP && !FIX_TICKET_754135 xRestrictBipredMergeCand( pcCU, iPUIdx, cMvFieldNeighbours, uhInterDirNeighbours,vspFlag, numValidMergeCand );4136 #else4137 4057 xRestrictBipredMergeCand( pcCU, iPUIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand ); 4138 #endif4139 4058 4140 4059 #if H_3D_DBBP … … 4164 4083 #if H_3D_VSP 4165 4084 pcCU->setVSPFlagSubParts( vspFlag[uiMergeCand], uiAbsPartIdx, iPUIdx, pcCU->getDepth( uiAbsPartIdx ) ); 4166 #if !FIX_TICKET_794167 pcCU->setDvInfoSubParts(inheritedVSPDisInfo[uiMergeCand].m_acDvInfo, uiAbsPartIdx, iPUIdx, pcCU->getDepth( uiAbsPartIdx ) );4168 #endif4169 4085 #endif 4170 4086 … … 4266 4182 * \returns Void 4267 4183 */ 4268 #if H_3D_VSP && !FIX_TICKET_754269 Void TEncSearch::xRestrictBipredMergeCand( TComDataCU* pcCU, UInt puIdx, TComMvField* mvFieldNeighbours, UChar* interDirNeighbours, Int* vspFlag, Int numValidMergeCand )4270 #else4271 4184 Void TEncSearch::xRestrictBipredMergeCand( TComDataCU* pcCU, UInt puIdx, TComMvField* mvFieldNeighbours, UChar* interDirNeighbours, Int numValidMergeCand ) 4272 #endif4273 4185 { 4274 4186 if ( pcCU->isBipredRestriction(puIdx) ) … … 4276 4188 for( UInt mergeCand = 0; mergeCand < numValidMergeCand; ++mergeCand ) 4277 4189 { 4278 #if H_3D_VSP && !FIX_TICKET_754279 if ( (interDirNeighbours[mergeCand] == 3) && (vspFlag[mergeCand] == false) )4280 #else4281 4190 if ( interDirNeighbours[mergeCand] == 3 ) 4282 #endif4283 4191 { 4284 4192 interDirNeighbours[mergeCand] = 1; … … 4902 4810 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 4903 4811 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 4904 #if !FIX_TICKET_794905 InheritedVSPDisInfo inheritedVSPDisInfo[MRG_MAX_NUM_CANDS_MEM];4906 #endif4907 4812 UInt uiAbsPartIdx = 0; 4908 4813 Int iWidth = 0; … … 4922 4827 #if H_3D_VSP 4923 4828 , vspFlag 4924 #if !FIX_TICKET_794925 , inheritedVSPDisInfo4926 #endif4927 4829 #endif 4928 4830 #if H_3D_SPIVMP … … 4938 4840 #if H_3D_VSP 4939 4841 pcCU->setVSPFlagSubParts( vspFlag[uiMRGIndex], uiPartAddr, iPartIdx, pcCU->getDepth( uiPartAddr ) ); 4940 #if !FIX_TICKET_794941 pcCU->setDvInfoSubParts(inheritedVSPDisInfo[uiMRGIndex].m_acDvInfo, uiPartAddr, iPartIdx, pcCU->getDepth( uiPartAddr ) );4942 #endif4943 4842 #endif 4944 4843 #if H_3D_DDD … … 7388 7287 } 7389 7288 m_pcEntropyCoder->encodeSkipFlag ( pcCU, 0, true ); 7390 #if MTK_SINGLE_DEPTH_MODE_I00957289 #if H_3D_SINGLE_DEPTH 7391 7290 m_pcEntropyCoder->encodeSingleDepthMode ( pcCU, 0, true ); 7392 7291 #endif … … 7845 7744 7846 7745 Pel refDC1 = 0; Pel refDC2 = 0; 7847 #if SHARP_DMM1_I01107848 7746 WedgeList* pacWedgeList = pcCU->isDMM1UpscaleMode( uiWidth ) ? &g_dmmWedgeLists[(g_aucConvertToBit[pcCU->getDMM1BasePatternWidth(uiWidth)])] : &g_dmmWedgeLists[(g_aucConvertToBit[uiWidth])]; 7849 7747 WedgeNodeList* pacWedgeNodeList = pcCU->isDMM1UpscaleMode( uiWidth ) ? &g_dmmWedgeNodeLists[(g_aucConvertToBit[pcCU->getDMM1BasePatternWidth(uiWidth)])] : &g_dmmWedgeNodeLists[(g_aucConvertToBit[uiWidth])]; 7850 #else7851 WedgeList* pacWedgeList = &g_dmmWedgeLists [(g_aucConvertToBit[uiWidth])];7852 WedgeNodeList* pacWedgeNodeList = &g_dmmWedgeNodeLists[(g_aucConvertToBit[uiWidth])];7853 #endif7854 7748 7855 7749 // coarse wedge search … … 7859 7753 { 7860 7754 TComWedgelet* pcWedgelet = &(pacWedgeList->at(pacWedgeNodeList->at(uiNodeId).getPatternIdx())); 7861 #if SHARP_DMM1_I01107862 7755 Bool *pbPattern = pcCU->isDMM1UpscaleMode(uiWidth) ? pcWedgelet->getScaledPattern(uiWidth) : pcWedgelet->getPattern(); 7863 7756 UInt uiStride = pcCU->isDMM1UpscaleMode(uiWidth) ? uiWidth : pcWedgelet->getStride(); 7864 7757 xCalcBiSegDCs ( piRef, uiRefStride, pbPattern, uiStride, refDC1, refDC2 ); 7865 7758 xAssignBiSegDCs( piPred, uiPredStride, pbPattern, uiStride, refDC1, refDC2 ); 7866 #else7867 xCalcBiSegDCs ( piRef, uiRefStride, pcWedgelet->getPattern(), pcWedgelet->getStride(), refDC1, refDC2 );7868 xAssignBiSegDCs( piPred, uiPredStride, pcWedgelet->getPattern(), pcWedgelet->getStride(), refDC1, refDC2 );7869 #endif7870 7759 7871 7760 Dist uiActDist = RDO_DIST_MAX; … … 7903 7792 { 7904 7793 TComWedgelet* pcWedgelet = &(pacWedgeList->at(pacWedgeNodeList->at(uiBestNodeId).getRefineIdx( uiRefId ))); 7905 #if SHARP_DMM1_I01107906 7794 Bool *pbPattern = pcCU->isDMM1UpscaleMode(uiWidth) ? pcWedgelet->getScaledPattern(uiWidth) : pcWedgelet->getPattern(); 7907 7795 UInt uiStride = pcCU->isDMM1UpscaleMode(uiWidth) ? uiWidth : pcWedgelet->getStride(); 7908 7796 xCalcBiSegDCs ( piRef, uiRefStride, pbPattern, uiStride, refDC1, refDC2 ); 7909 7797 xAssignBiSegDCs( piPred, uiPredStride, pbPattern, uiStride, refDC1, refDC2 ); 7910 #else7911 xCalcBiSegDCs ( piRef, uiRefStride, pcWedgelet->getPattern(), pcWedgelet->getStride(), refDC1, refDC2 );7912 xAssignBiSegDCs( piPred, uiPredStride, pcWedgelet->getPattern(), pcWedgelet->getStride(), refDC1, refDC2 );7913 #endif7914 7798 Dist uiActDist = RDO_DIST_MAX; 7915 7799 #if H_3D_VSO -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncSearch.h
r1039 r1074 181 181 UInt& ruiDistC, 182 182 Bool bLumaOnly 183 #if H HI_DMM4_ENC_I0066183 #if H_3D_DIM 184 184 , Bool bOnlyIVP 185 185 #endif … … 191 191 TComYuv* pcRecoYuv, 192 192 UInt uiPreCalcDistC ); 193 #if MTK_SINGLE_DEPTH_MODE_I0095193 #if H_3D_SINGLE_DEPTH 194 194 Void estIntraPredSingleDepth ( TComDataCU* pcCU, 195 195 TComYuv* pcOrgYuv, … … 354 354 UInt uiAbsPartIdx, 355 355 UInt stateU0V1Both2 ); 356 #if MTK_SINGLE_DEPTH_MODE_I0095356 #if H_3D_SINGLE_DEPTH 357 357 Void xIntraCodingSingleDepth( TComDataCU* pcCU, UInt uiAbsPartIdx, TComYuv* pcOrgYuv, TComYuv* pcPredYuv, Dist& ruiDist, Double& dRDCost, Int iTestDepthIdx, Pel * DepthNeighbor ); 358 358 #endif … … 429 429 #if H_3D_VSP 430 430 , Int* vspFlag 431 #if !FIX_TICKET_79432 , InheritedVSPDisInfo* inheritedVSPDisInfo433 #endif434 431 #endif 435 432 #if H_3D_SPIVMP … … 443 440 TComMvField* mvFieldNeighbours, 444 441 UChar* interDirNeighbours, 445 #if H_3D_VSP && !FIX_TICKET_75446 Int* vspFlag,447 #endif448 442 Int numValidMergeCand ); 449 443 -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncTop.cpp
r1066 r1074 89 89 m_ivPicLists = NULL; 90 90 #endif 91 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX91 #if H_3D_IC 92 92 m_aICEnableCandidate = NULL; 93 93 m_aICEnableNum = NULL; … … 370 370 371 371 xInitPPSforTiles(); 372 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX372 #if H_3D_IC 373 373 m_aICEnableCandidate = new Int[ 10 ]; 374 374 m_aICEnableNum = new Int[ 10 ]; … … 828 828 829 829 m_cSPS.setUseAMP ( m_useAMP ); 830 831 #if !MTK_I0099_VPS_EX2832 #if H_3D_QTLPC833 m_cSPS.setUseQTL( m_bUseQTL );834 m_cSPS.setUsePC ( m_bUsePC );835 #endif836 #endif837 830 838 831 for (i = g_uiMaxCUDepth-g_uiAddCUDepth; i < g_uiMaxCUDepth; i++ ) -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncTop.h
r1066 r1074 80 80 TComPicLists* m_ivPicLists; ///< access to picture lists of other layers 81 81 #endif 82 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX82 #if H_3D_IC 83 83 Int *m_aICEnableCandidate; 84 84 Int *m_aICEnableNum; … … 209 209 TComPicLists* getIvPicLists() { return m_ivPicLists; } 210 210 #endif 211 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX212 Int *getICEnableCandidate() { return m_aICEnableCandidate; }213 Int *getICEnableNum() { return m_aICEnableNum; }211 #if H_3D_IC 212 Int* getICEnableCandidate() { return m_aICEnableCandidate; } 213 Int* getICEnableNum() { return m_aICEnableNum; } 214 214 #endif 215 215 Void deletePicBuffer (); … … 272 272 Void setIvPicLists ( TComPicLists* picLists) { m_ivPicLists = picLists; } 273 273 #endif 274 #if MTK_LOW_LATENCY_IC_ENCODING_H0086_FIX274 #if H_3D_IC 275 275 Void setICEnableCandidate ( Int* ICEnableCandidate) { m_aICEnableCandidate = ICEnableCandidate; } 276 276 Void setICEnableNum ( Int* ICEnableNum) { m_aICEnableNum = ICEnableNum; }
Note: See TracChangeset for help on using the changeset viewer.