Changeset 1279 in 3DVCSoftware for branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder
- Timestamp:
- 15 Jul 2015, 14:57:32 (10 years ago)
- Location:
- branches/HTM-14.1-update-dev1
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-14.1-update-dev1
-
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/SyntaxElementParser.cpp
r1200 r1279 63 63 if ( !g_disableNumbering ) 64 64 { 65 #endif 66 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); 67 #if H_MV_ENC_DEC_TRAC 68 } 65 incSymbolCounter(); 66 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter ); 67 } 68 #else 69 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); 69 70 #endif 70 71 if (length < 10) … … 93 94 if ( !g_disableNumbering ) 94 95 { 95 #endif 96 incSymbolCounter(); 97 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter ); 98 } 99 #else 96 100 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); 97 #if H_MV_ENC_DEC_TRAC98 }99 101 #endif 100 102 fprintf( g_hTrace, "%-50s ue(v) : %u\n", pSymbolName, rValue ); … … 115 117 } 116 118 if ( !g_disableNumbering ) 117 { 118 #endif 119 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); 120 #if H_MV_ENC_DEC_TRAC 121 } 119 { 120 incSymbolCounter(); 121 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter ); 122 } 123 #else 124 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); 122 125 #endif 123 126 fprintf( g_hTrace, "%-50s se(v) : %d\n", pSymbolName, rValue ); … … 139 142 if ( !g_disableNumbering ) 140 143 { 141 #endif 144 incSymbolCounter(); 145 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter ); 146 } 147 #else 142 148 fprintf( g_hTrace, "%8lld ", g_nSymbolCounter++ ); 143 #if H_MV_ENC_DEC_TRAC144 }145 149 #endif 146 150 fprintf( g_hTrace, "%-50s u(1) : %d\n", pSymbolName, rValue ); -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1258 r1279 2773 2773 } 2774 2774 2775 #if H_3D_IC2775 #if NH_3D_IC 2776 2776 else if( pcSlice->getViewIndex() && ( pcSlice->getSliceType() == P_SLICE || pcSlice->getSliceType() == B_SLICE ) 2777 2777 && !pcSlice->getIsDepth() && vps->getNumRefListLayers( layerId ) > 0 … … 2786 2786 if ( uiCodeTmp ) 2787 2787 { 2788 READ_FLAG ( uiCodeTmp, " ic_skip_mergeidx0" );2788 READ_FLAG ( uiCodeTmp, "slice_ic_disabled_merge_zero_idx_flag" ); 2789 2789 pcSlice->setIcSkipParseFlag( uiCodeTmp ); 2790 2790 } … … 2795 2795 { 2796 2796 READ_UVLC( uiCode, "five_minus_max_num_merge_cand"); 2797 #if H_3D_IV_MERGE2797 #if NH_3D_IV_MERGE 2798 2798 pcSlice->setMaxNumMergeCand(( ( pcSlice->getMpiFlag() || pcSlice->getIvMvPredFlag() || pcSlice->getViewSynthesisPredFlag() ) ? MRG_MAX_NUM_CANDS_MEM : MRG_MAX_NUM_CANDS) - uiCode); 2799 2799 #else … … 3366 3366 } 3367 3367 3368 #if H_3D_ARP3368 #if NH_3D_ARP 3369 3369 Void TDecCavlc::parseARPW( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 3370 3370 { … … 3372 3372 } 3373 3373 #endif 3374 #if H_3D_IC3374 #if NH_3D_IC 3375 3375 Void TDecCavlc::parseICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 3376 3376 { … … 3385 3385 3386 3386 #endif 3387 #if H_3D_DBBP3387 #if NH_3D_DBBP 3388 3388 Void TDecCavlc::parseDBBPFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 3389 3389 { -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecCAVLC.h
r1258 r1279 117 117 Void parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx ); 118 118 Void parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex ); 119 #if H_3D_ARP119 #if NH_3D_ARP 120 120 Void parseARPW ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 121 121 #endif 122 #if H_3D_IC122 #if NH_3D_IC 123 123 Void parseICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 124 124 #endif … … 129 129 Void parseSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 130 130 #endif 131 #if H_3D_DBBP131 #if NH_3D_DBBP 132 132 Void parseDBBPFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 133 133 #endif -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecCu.cpp
r1258 r1279 52 52 m_ppcYuvReco = NULL; 53 53 m_ppcCU = NULL; 54 #if H_3D_DBBP54 #if NH_3D_DBBP 55 55 m_ppcYuvRecoDBBP = NULL; 56 56 #endif … … 81 81 m_ppcYuvReco = new TComYuv*[m_uiMaxDepth-1]; 82 82 m_ppcCU = new TComDataCU*[m_uiMaxDepth-1]; 83 #if H_3D_DBBP83 #if NH_3D_DBBP 84 84 m_ppcYuvRecoDBBP = new TComYuv*[m_uiMaxDepth-1]; 85 85 #endif … … 95 95 m_ppcYuvReco[ui] = new TComYuv; m_ppcYuvReco[ui]->create( uiWidth, uiHeight, chromaFormatIDC ); 96 96 m_ppcCU [ui] = new TComDataCU; m_ppcCU [ui]->create( chromaFormatIDC, uiNumPartitions, uiWidth, uiHeight, true, uiMaxWidth >> (m_uiMaxDepth - 1) ); 97 #if H_3D_DBBP98 m_ppcYuvRecoDBBP[ui] = new TComYuv; m_ppcYuvRecoDBBP[ui]->create( uiWidth, uiHeight );97 #if NH_3D_DBBP 98 m_ppcYuvRecoDBBP[ui] = new TComYuv; m_ppcYuvRecoDBBP[ui]->create( uiWidth, uiHeight, chromaFormatIDC ); 99 99 #endif 100 100 } … … 119 119 m_ppcYuvReco[ui]->destroy(); delete m_ppcYuvReco[ui]; m_ppcYuvReco[ui] = NULL; 120 120 m_ppcCU [ui]->destroy(); delete m_ppcCU [ui]; m_ppcCU [ui] = NULL; 121 #if H_3D_DBBP121 #if NH_3D_DBBP 122 122 m_ppcYuvRecoDBBP[ui]->destroy(); delete m_ppcYuvRecoDBBP[ui]; m_ppcYuvRecoDBBP[ui] = NULL; 123 123 #endif … … 127 127 delete [] m_ppcYuvReco; m_ppcYuvReco = NULL; 128 128 delete [] m_ppcCU ; m_ppcCU = NULL; 129 #if H_3D_DBBP129 #if NH_3D_DBBP 130 130 delete [] m_ppcYuvRecoDBBP; m_ppcYuvRecoDBBP = NULL; 131 131 #endif … … 152 152 setIsChromaQpAdjCoded(true); 153 153 } 154 154 155 155 // start from the top level CU 156 156 xDecodeCU( pCtu, 0, 0, isLastCtuOfSliceSegment); … … 163 163 Void TDecCu::decompressCtu( TComDataCU* pCtu ) 164 164 { 165 #if ! H_3D_IV_MERGE165 #if !NH_3D_IV_MERGE 166 166 xDecompressCU( pCtu, 0, 0 ); 167 167 #endif … … 283 283 pcCU->setQPSubParts( pcCU->getRefQP(uiAbsPartIdx), uiAbsPartIdx, uiDepth ); // set QP to default QP 284 284 } 285 #if H_3D_NBDV285 #if NH_3D_NBDV 286 286 DisInfo DvInfo; 287 287 DvInfo.m_acNBDV.setZero(); 288 288 DvInfo.m_aVIdxCan = 0; 289 #if H_3D_NBDV_REF289 #if NH_3D_NBDV_REF 290 290 DvInfo.m_acDoNBDV.setZero(); 291 291 #endif … … 293 293 if(!pcCU->getSlice()->isIntra()) 294 294 { 295 #if H_3D_ARP && H_3D_IV_MERGE296 if( pcCU->getSlice()->getIvResPredFlag() || pcCU->getSlice()->getIvMvPredFlag() )295 #if NH_3D_ARP && NH_3D_IV_MERGE && NH_3D_VSP 296 if( pcCU->getSlice()->getIvResPredFlag() || pcCU->getSlice()->getIvMvPredFlag() || pcCU->getSlice()->getViewSynthesisPredFlag() ) 297 297 #else 298 #if NH_3D_IV_MERGE && NH_3D_VSP 299 if( pcCU->getSlice()->getIvMvPredFlag() || pcCU->getSlice()->getViewSynthesisPredFlag() ) 300 #else 301 #if NH_3D_ARP && NH_3D_VSP 302 if( pcCU->getSlice()->getIvResPredFlag() || pcCU->getSlice()->getViewSynthesisPredFlag() ) 303 #else 304 #if NH_3D_VSP 305 if( pcCU->getSlice()->getViewSynthesisPredFlag() ) 306 #else 298 307 #if H_3D_ARP 299 if( pcCU->getSlice()->get VPS()->getUseAdvRP(pcCU->getSlice()->getLayerId()) )308 if( pcCU->getSlice()->getIvResPredFlag( ) ) 300 309 #else 301 310 #if H_3D_IV_MERGE 302 311 if( pcCU->getSlice()->getVPS()->getIvMvPredFlag(pcCU->getSlice()->getLayerId()) ) 303 312 #else 313 #if NH_3D_DBBP 314 if( pcCU->getSlice()->getDepthBasedBlkPartFlag() ) 315 #else 304 316 if (0) 305 317 #endif 306 318 #endif 307 319 #endif 308 { 309 m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0, true ); 310 m_ppcCU[uiDepth]->copyDVInfoFrom( pcCU, uiAbsPartIdx); 320 #endif 321 #endif 322 #endif 323 #endif 324 { 325 m_ppcCU[uiDepth]->copyInterPredInfoFrom(pcCU, uiAbsPartIdx, REF_PIC_LIST_0, true); 326 m_ppcCU[uiDepth]->copyDVInfoFrom(pcCU, uiAbsPartIdx); 311 327 PartSize ePartTemp = m_ppcCU[uiDepth]->getPartitionSize(0); 312 328 UChar cWidTemp = m_ppcCU[uiDepth]->getWidth(0); 313 329 UChar cHeightTemp = m_ppcCU[uiDepth]->getHeight(0); 314 m_ppcCU[uiDepth]->setWidth ( 0, pcCU->getSlice()->getSPS()->getMaxCUWidth ()/(1<<uiDepth));315 m_ppcCU[uiDepth]->setHeight ( 0, pcCU->getSlice()->getSPS()->getMaxCUHeight()/(1<<uiDepth));316 m_ppcCU[uiDepth]->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth);317 #if H_3D_IV_MERGE330 m_ppcCU[uiDepth]->setWidth (0, pcCU->getSlice()->getSPS()->getMaxCUWidth () / (1 << uiDepth)); 331 m_ppcCU[uiDepth]->setHeight(0, pcCU->getSlice()->getSPS()->getMaxCUHeight() / (1 << uiDepth)); 332 m_ppcCU[uiDepth]->setPartSizeSubParts(SIZE_2Nx2N, 0, uiDepth); 333 #if NH_3D_IV_MERGE 318 334 if( pcCU->getSlice()->getIsDepth()) 319 335 { … … 323 339 { 324 340 #endif 325 #if H_3D_NBDV_REF341 #if NH_3D_NBDV_REF 326 342 if( pcCU->getSlice()->getDepthBasedBlkPartFlag() ) //Notes from QC: please check the condition for DoNBDV. Remove this comment once it is done. 327 343 { … … 333 349 m_ppcCU[uiDepth]->getDisMvpCandNBDV(&DvInfo); 334 350 } 335 #if H_3D_IV_MERGE351 #if NH_3D_IV_MERGE 336 352 } 337 353 #endif … … 346 362 } 347 363 #endif 348 349 364 pcCU->setDvInfoSubParts(DvInfo, uiAbsPartIdx, uiDepth); 350 m_ppcCU[uiDepth]->setPartSizeSubParts( ePartTemp, 0, uiDepth);351 m_ppcCU[uiDepth]->setWidth ( 0, cWidTemp);352 m_ppcCU[uiDepth]->setHeight ( 0, cHeightTemp);365 m_ppcCU[uiDepth]->setPartSizeSubParts(ePartTemp, 0, uiDepth); 366 m_ppcCU[uiDepth]->setWidth(0, cWidTemp); 367 m_ppcCU[uiDepth]->setHeight(0, cHeightTemp); 353 368 } 354 369 } … … 381 396 m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 ); 382 397 m_ppcCU[uiDepth]->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 ); 383 #if H_3D_IV_MERGE398 #if NH_3D_IV_MERGE 384 399 m_ppcCU[uiDepth]->copyDVInfoFrom(pcCU, uiAbsPartIdx); 400 TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists 401 UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM]; 402 #else 403 #if NH_3D_MLC 385 404 TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists 386 405 UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM]; … … 389 408 UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS]; 390 409 #endif 410 #endif 391 411 Int numValidMergeCand = 0; 392 412 for( UInt ui = 0; ui < m_ppcCU[uiDepth]->getSlice()->getMaxNumMergeCand(); ++ui ) … … 396 416 m_pcEntropyDecoder->decodeMergeIndex( pcCU, 0, uiAbsPartIdx, uiDepth ); 397 417 UInt uiMergeIndex = pcCU->getMergeIndex(uiAbsPartIdx); 398 #if H_3D_ARP418 #if NH_3D_ARP 399 419 m_pcEntropyDecoder->decodeARPW( pcCU , uiAbsPartIdx , uiDepth ); 400 420 #endif 401 #if H_3D_IC421 #if NH_3D_IC 402 422 m_pcEntropyDecoder->decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 403 423 #endif 404 424 405 #if H_3D_VSP 425 426 #if NH_3D_VSP 406 427 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 407 428 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 408 #if H_3D_SPIVMP 429 #endif 430 #if NH_3D_SPIVMP 409 431 Bool bSPIVMPFlag[MRG_MAX_NUM_CANDS_MEM]; 410 432 memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM); 411 433 TComMvField* pcMvFieldSP; 412 434 UChar* puhInterDirSP; 413 pcMvFieldSP = new TComMvField[pcCU->getPic()->getPicSym()->getNumPartition()*2]; 414 puhInterDirSP = new UChar[pcCU->getPic()->getPicSym()->getNumPartition()]; 415 #endif 435 pcMvFieldSP = new TComMvField[pcCU->getPic()->getPicSym()->getNumPartitionsInCtu()*2]; 436 puhInterDirSP = new UChar[pcCU->getPic()->getPicSym()->getNumPartitionsInCtu()]; 437 #endif 438 439 #if NH_3D_MLC 416 440 m_ppcCU[uiDepth]->initAvailableFlags(); 441 #endif 417 442 m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 443 #if NH_3D_MLC 418 444 m_ppcCU[uiDepth]->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours 419 #if H_3D_SPIVMP445 #if NH_3D_SPIVMP 420 446 , pcMvFieldSP, puhInterDirSP 421 447 #endif 422 448 , numValidMergeCand, uiMergeIndex ); 423 449 424 m_ppcCU[uiDepth]->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours, vspFlag 425 #if H_3D_SPIVMP 450 m_ppcCU[uiDepth]->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours 451 #if NH_3D_VSP 452 , vspFlag 453 #endif 454 #if NH_3D_SPIVMP 426 455 , bSPIVMPFlag 427 456 #endif 428 457 , numValidMergeCand ); 458 #endif 459 #if NH_3D_VSP 429 460 pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiAbsPartIdx, 0, uiDepth ); 430 #else 431 #if H_3D 432 m_ppcCU[uiDepth]->initAvailableFlags(); 433 m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 434 m_ppcCU[uiDepth]->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 435 #else 436 m_ppcCU[uiDepth]->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 437 #endif 438 #endif 461 #endif 462 439 463 pcCU->setInterDirSubParts( uhInterDirNeighbours[uiMergeIndex], uiAbsPartIdx, 0, uiDepth ); 440 464 … … 448 472 pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, SIZE_2Nx2N, uiAbsPartIdx, uiDepth ); 449 473 pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], SIZE_2Nx2N, uiAbsPartIdx, uiDepth ); 450 #if H_3D_VSP474 #if NH_3D_VSP 451 475 if( pcCU->getVSPFlag( uiAbsPartIdx ) != 0 ) 452 476 { … … 481 505 } 482 506 } 483 #if H_3D_SPIVMP507 #if NH_3D_SPIVMP 484 508 pcCU->setSPIVMPFlagSubParts(bSPIVMPFlag[uiMergeIndex], uiAbsPartIdx, 0, uiDepth ); 485 509 if (bSPIVMPFlag[uiMergeIndex]) … … 506 530 507 531 xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, isLastCtuOfSliceSegment ); 508 #if H_3D_IV_MERGE532 #if NH_3D_IV_MERGE 509 533 xDecompressCU(pcCU, uiAbsPartIdx, uiDepth ); 510 534 #endif … … 531 555 #endif 532 556 xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, isLastCtuOfSliceSegment ); 533 #if H_3D_IV_MERGE557 #if NH_3D_IV_MERGE 534 558 xDecompressCU(pcCU, uiAbsPartIdx, uiDepth ); 535 559 #endif … … 551 575 #endif 552 576 xFinishDecodeCU( pcCU, uiAbsPartIdx, uiDepth, isLastCtuOfSliceSegment ); 553 #if H_3D_IV_MERGE577 #if NH_3D_IV_MERGE 554 578 xDecompressCU(pcCU, uiAbsPartIdx, uiDepth ); 555 579 #endif … … 574 598 { 575 599 TComPic* pcPic = pCtu->getPic(); 576 #if ! H_3D_IV_MERGE600 #if !NH_3D_IV_MERGE 577 601 TComSlice * pcSlice = pCtu->getSlice(); 578 602 const TComSPS &sps=*(pcSlice->getSPS()); … … 617 641 { 618 642 case MODE_INTER: 619 #if H_3D_DBBP643 #if NH_3D_DBBP 620 644 if( m_ppcCU[uiDepth]->getDBBPFlag(0) ) 621 645 { … … 637 661 } 638 662 #endif 639 #if H_3D_DBBP663 #if NH_3D_DBBP 640 664 } 641 665 #endif … … 852 876 #endif 853 877 854 #if H_3D_DBBP878 #if NH_3D_DBBP 855 879 Void TDecCu::xReconInterDBBP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 856 880 { … … 858 882 AOF(!pcCU->getSlice()->isIntra()); 859 883 PartSize ePartSize = pcCU->getPartitionSize( 0 ); 884 885 Int bitDepthY = pcCU->getSlice()->getSPS()->getBitDepth(CHANNEL_TYPE_LUMA); 860 886 861 887 // get collocated depth block … … 878 904 879 905 // first, extract the two sets of motion parameters 880 UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMax CUDepth() - uiDepth ) << 1 ) ) >> 4;906 UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxTotalCUDepth() - uiDepth ) << 1 ) ) >> 4; 881 907 for( UInt uiSegment = 0; uiSegment < 2; uiSegment++ ) 882 908 { … … 884 910 885 911 pDBBPTmpData->auhInterDir[uiSegment] = pcCU->getInterDir(uiPartAddr); 912 assert( pDBBPTmpData->auhInterDir[uiSegment] == 1 || pDBBPTmpData->auhInterDir[uiSegment] == 2 ); // only uni-prediction allowed 886 913 887 914 for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ ) … … 891 918 } 892 919 920 #if H_3D 893 921 AOF( pcCU->getARPW(uiPartAddr) == 0 ); 894 922 AOF( pcCU->getICFlag(uiPartAddr) == false ); 895 923 AOF( pcCU->getSPIVMPFlag(uiPartAddr) == false ); 896 924 AOF( pcCU->getVSPFlag(uiPartAddr) == 0 ); 925 #endif 897 926 } 898 927 … … 934 963 935 964 // reconstruct final prediction signal by combining both segments 936 m_pcPrediction->combineSegmentsWithMask(apSegPredYuv, m_ppcYuvReco[uiDepth], pMask, pcCU->getWidth(0), pcCU->getHeight(0), 0, ePartSize );965 m_pcPrediction->combineSegmentsWithMask(apSegPredYuv, m_ppcYuvReco[uiDepth], pMask, pcCU->getWidth(0), pcCU->getHeight(0), 0, ePartSize, bitDepthY); 937 966 938 967 // inter recon 939 xDecodeInterTexture( pcCU, 0,uiDepth );968 xDecodeInterTexture( pcCU, uiDepth ); 940 969 941 970 // clip for only non-zero cbp case 942 if ( ( pcCU->getCbf( 0, TEXT_LUMA ) ) || ( pcCU->getCbf( 0, TEXT_CHROMA_U ) ) || ( pcCU->getCbf(0, TEXT_CHROMA_V) ) )943 { 944 m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ) );971 if ( ( pcCU->getCbf( 0, COMPONENT_Y ) ) || ( pcCU->getCbf( 0, COMPONENT_Cb ) ) || ( pcCU->getCbf(0, COMPONENT_Cr ) ) ) 972 { 973 m_ppcYuvReco[uiDepth]->addClip( m_ppcYuvReco[uiDepth], m_ppcYuvResi[uiDepth], 0, pcCU->getWidth( 0 ), pcCU->getSlice()->getSPS()->getBitDepths() ); 945 974 } 946 975 else -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecCu.h
r1258 r1279 62 62 TComDataCU** m_ppcCU; ///< CU data array 63 63 64 #if H_3D_DBBP64 #if NH_3D_DBBP 65 65 TComYuv** m_ppcYuvRecoDBBP; 66 66 #endif … … 102 102 Void xReconInter ( TComDataCU* pcCU, UInt uiDepth ); 103 103 104 #if H_3D_DBBP104 #if NH_3D_DBBP 105 105 Void xReconInterDBBP ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 106 106 #endif -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecEntropy.cpp
r1258 r1279 104 104 } 105 105 106 #if H_3D_ARP106 #if NH_3D_ARP 107 107 Void TDecEntropy::decodeARPW( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 108 108 { … … 123 123 #endif 124 124 125 #if H_3D_IC125 #if NH_3D_IC 126 126 Void TDecEntropy::decodeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 127 127 { 128 128 pcCU->setICFlagSubParts( false , uiAbsPartIdx, 0, uiDepth ); 129 129 130 #if NH_3D_ARP 130 131 if ( pcCU->isIntra( uiAbsPartIdx ) || ( pcCU->getSlice()->getViewIndex() == 0 ) || pcCU->getSlice()->getIsDepth() || pcCU->getARPW( uiAbsPartIdx ) > 0 ) 132 #else 133 if ( pcCU->isIntra( uiAbsPartIdx ) || ( pcCU->getSlice()->getViewIndex() == 0 ) || pcCU->getSlice()->getIsDepth() ) 134 #endif 131 135 { 132 136 return; … … 234 238 UInt uiNumPU = ( ePartSize == SIZE_2Nx2N ? 1 : ( ePartSize == SIZE_NxN ? 4 : 2 ) ); 235 239 UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxTotalCUDepth() - uiDepth ) << 1 ) ) >> 4; 236 #if H_3D_IV_MERGE 240 //#if H_3D_IV_MERGE 241 #if NH_3D_MLC 237 242 TComMvField cMvFieldNeighbours[MRG_MAX_NUM_CANDS_MEM << 1]; // double length for mv of both lists 238 243 UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS_MEM]; … … 241 246 UChar uhInterDirNeighbours[MRG_MAX_NUM_CANDS]; 242 247 #endif 243 #if H_3D_SPIVMP248 #if NH_3D_SPIVMP 244 249 Bool bSPIVMPFlag[MRG_MAX_NUM_CANDS_MEM]; 245 TComMvField* pcMvFieldSP = new TComMvField[pcCU->getPic()->getPicSym()->getNumPartition ()*2];246 UChar* puhInterDirSP = new UChar[pcCU->getPic()->getPicSym()->getNumPartition ()];247 #endif 248 #if H_3D_IV_MERGE250 TComMvField* pcMvFieldSP = new TComMvField[pcCU->getPic()->getPicSym()->getNumPartitionsInCtu()*2]; 251 UChar* puhInterDirSP = new UChar[pcCU->getPic()->getPicSym()->getNumPartitionsInCtu()]; 252 #endif 253 #if NH_3D_IV_MERGE 249 254 pcSubCU->copyDVInfoFrom( pcCU, uiAbsPartIdx); 250 255 #endif … … 258 263 pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_0 ); 259 264 pcSubCU->copyInterPredInfoFrom( pcCU, uiAbsPartIdx, REF_PIC_LIST_1 ); 260 #if H_3D265 #if NH_3D 261 266 for ( UInt uiPartIdx = 0, uiSubPartIdx = uiAbsPartIdx; uiPartIdx < uiNumPU; uiPartIdx++, uiSubPartIdx += uiPUOffset ) 262 267 { … … 290 295 291 296 ////// Parse CUs extension syntax 297 #if NH_3D_DBBP 292 298 decodeDBBPFlag( pcCU, uiAbsPartIdx, uiDepth ); 293 decodeSDCFlag ( pcCU, uiAbsPartIdx, uiDepth ); 294 295 #if H_3D_ARP 299 #endif 300 //decodeSDCFlag ( pcCU, uiAbsPartIdx, uiDepth ); 301 302 #if NH_3D_ARP 296 303 decodeARPW ( pcCU, uiAbsPartIdx, uiDepth ); 297 304 #endif 298 #if H_3D_IC305 #if NH_3D_IC 299 306 decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 300 307 #endif … … 306 313 { 307 314 UInt uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx); 308 #if H_3D_DBBP 315 #if ENVIRONMENT_VARIABLE_DEBUG_AND_TEST 316 if (bDebugPredEnabled) 317 { 318 std::cout << "Coded merge flag, CU absPartIdx: " << uiAbsPartIdx << " PU(" << uiPartIdx << ") absPartIdx: " << uiSubPartIdx; 319 std::cout << " merge index: " << (UInt)pcCU->getMergeIndex(uiSubPartIdx) << std::endl; 320 } 321 #endif 322 323 #if NH_3D_DBBP 309 324 if ( pcCU->getSlice()->getPPS()->getLog2ParallelMergeLevelMinus2() && ePartSize != SIZE_2Nx2N && pcSubCU->getWidth( 0 ) <= 8 && pcCU->getDBBPFlag(uiAbsPartIdx) == false ) 310 325 #else … … 312 327 #endif 313 328 { 314 pcSubCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth ); 315 if ( !isMerged ) 316 { 317 #if H_3D_VSP 329 if ( !hasMergedCandList ) 330 { 331 pcSubCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth ); // temporarily set. 332 333 #if NH_3D_MLC 334 #if NH_3D_VSP 318 335 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 319 336 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 320 #if H_3D_SPIVMP 337 #endif 338 #if NH_3D_SPIVMP 321 339 memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM); 322 340 #endif 323 341 pcSubCU->initAvailableFlags(); 324 pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand); 342 #endif 343 pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand ); 344 #if NH_3D_MLC 325 345 pcSubCU->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours 326 #if H_3D_SPIVMP346 #if NH_3D_SPIVMP 327 347 , pcMvFieldSP, puhInterDirSP 328 348 #endif 329 349 , numValidMergeCand ); 330 pcSubCU->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours, vspFlag 331 #if H_3D_SPIVMP 350 pcSubCU->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours 351 #if NH_3D_VSP 352 , vspFlag 353 #endif 354 #if NH_3D_SPIVMP 332 355 , bSPIVMPFlag 333 356 #endif 334 357 , numValidMergeCand ); 358 #if NH_3D_VSP 335 359 pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 336 337 #else 338 #if H_3D 339 pcSubCU->initAvailableFlags(); 340 pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand); 341 pcSubCU->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand ); 342 343 #else 344 pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand ); 345 #endif 346 #endif 347 isMerged = true; 348 } 349 pcSubCU->setPartSizeSubParts( ePartSize, 0, uiDepth ); 360 #endif 361 #endif 362 pcSubCU->setPartSizeSubParts( ePartSize, 0, uiDepth ); // restore. 363 hasMergedCandList = true; 364 } 350 365 } 351 366 else 352 367 { 353 uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx); 354 #if H_3D_VSP368 #if NH_3D_MLC 369 #if NH_3D_VSP 355 370 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 356 371 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 357 #if H_3D_SPIVMP 372 #endif 373 #if NH_3D_SPIVMP 358 374 memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM); 359 375 #endif 360 376 pcSubCU->initAvailableFlags(); 377 #endif 361 378 pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 379 #if NH_3D_MLC 362 380 pcSubCU->xGetInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours 363 #if H_3D_SPIVMP381 #if NH_3D_SPIVMP 364 382 , pcMvFieldSP, puhInterDirSP 365 383 #endif 366 384 ,numValidMergeCand, uiMergeIndex ); 367 pcSubCU->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours, vspFlag 368 #if H_3D_SPIVMP 385 pcSubCU->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours 386 #if NH_3D_VSP 387 , vspFlag 388 #endif 389 #if NH_3D_SPIVMP 369 390 , bSPIVMPFlag 370 391 #endif 371 392 ,numValidMergeCand ); 393 #if NH_3D_VSP 372 394 pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 373 #else374 #if H_3D375 pcSubCU->initAvailableFlags();376 pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );377 pcSubCU->xGetInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );378 #else379 pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex );380 395 #endif 381 396 #endif … … 385 400 TComMv cTmpMv( 0, 0 ); 386 401 for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ ) 387 { 402 { 388 403 if ( pcCU->getSlice()->getNumRefIdx( RefPicList( uiRefListIdx ) ) > 0 ) 389 404 { … … 392 407 pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, ePartSize, uiSubPartIdx, uiDepth, uiPartIdx ); 393 408 pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], ePartSize, uiSubPartIdx, uiDepth, uiPartIdx ); 394 #if H_3D_VSP395 #if H_3D_DBBP409 #if NH_3D_VSP 410 #if NH_3D_DBBP 396 411 if( pcCU->getVSPFlag( uiSubPartIdx ) != 0 && !pcCU->getDBBPFlag( uiAbsPartIdx ) ) 397 412 #else … … 412 427 } 413 428 } 414 #if H_3D_SPIVMP429 #if NH_3D_SPIVMP 415 430 pcCU->setSPIVMPFlagSubParts(bSPIVMPFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 416 431 if (bSPIVMPFlag[uiMergeIndex] != 0) … … 443 458 { 444 459 decodeMvsAMVP ( pcSubCU, uiSubPartIdx-uiAbsPartIdx, uiDepth, uiPartIdx, RefPicList( uiRefListIdx ) ); 460 #if ENVIRONMENT_VARIABLE_DEBUG_AND_TEST 461 if (bDebugPredEnabled) 462 { 463 std::cout << "refListIdx: " << uiRefListIdx << std::endl; 464 std::cout << "MVD horizontal: " << pcCU->getCUMvField(RefPicList(uiRefListIdx))->getMvd( uiAbsPartIdx ).getHor() << std::endl; 465 std::cout << "MVD vertical: " << pcCU->getCUMvField(RefPicList(uiRefListIdx))->getMvd( uiAbsPartIdx ).getVer() << std::endl; 466 std::cout << "MVPIdxPU: " << pcCU->getMVPIdx(RefPicList( uiRefListIdx ), uiSubPartIdx) << std::endl; 467 std::cout << "InterDir: " << (UInt)pcCU->getInterDir(uiSubPartIdx) << std::endl; 468 } 469 #endif 445 470 } 446 471 } … … 474 499 } 475 500 #endif 501 #if NH_3D_IC 502 decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 503 #endif 476 504 477 505 UInt uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx); … … 481 509 { 482 510 pcSubCU->setPartSizeSubParts( SIZE_2Nx2N, 0, uiDepth ); // temporarily set. 511 512 #if NH_3D_MLC 513 #if NH_3D_VSP 514 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 515 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 516 #endif 517 #if NH_3D_SPIVMP 518 memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM); 519 #endif 520 pcSubCU->initAvailableFlags(); 521 #endif 483 522 pcSubCU->getInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand ); 523 #if NH_3D_MLC 524 pcSubCU->xGetInterMergeCandidates( 0, 0, cMvFieldNeighbours, uhInterDirNeighbours 525 #if NH_3D_SPIVMP 526 , pcMvFieldSP, puhInterDirSP 527 #endif 528 , numValidMergeCand ); 529 pcSubCU->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours 530 #if NH_3D_VSP 531 , vspFlag 532 #endif 533 #if NH_3D_SPIVMP 534 , bSPIVMPFlag 535 #endif 536 , numValidMergeCand ); 537 #if NH_3D_VSP 538 pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 539 #endif 540 #endif 484 541 pcSubCU->setPartSizeSubParts( ePartSize, 0, uiDepth ); // restore. 485 542 hasMergedCandList = true; … … 489 546 { 490 547 uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx); 548 549 #if NH_3D_MLC 550 #if NH_3D_VSP 551 Int vspFlag[MRG_MAX_NUM_CANDS_MEM]; 552 memset(vspFlag, 0, sizeof(Int)*MRG_MAX_NUM_CANDS_MEM); 553 #endif 554 #if NH_3D_SPIVMP 555 memset(bSPIVMPFlag, false, sizeof(Bool)*MRG_MAX_NUM_CANDS_MEM); 556 #endif 557 pcSubCU->initAvailableFlags(); 558 #endif 491 559 pcSubCU->getInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours, numValidMergeCand, uiMergeIndex ); 560 #if NH_3D_MLC 561 pcSubCU->xGetInterMergeCandidates( uiSubPartIdx-uiAbsPartIdx, uiPartIdx, cMvFieldNeighbours, uhInterDirNeighbours 562 #if NH_3D_SPIVMP 563 , pcMvFieldSP, puhInterDirSP 564 #endif 565 ,numValidMergeCand, uiMergeIndex ); 566 pcSubCU->buildMCL( cMvFieldNeighbours, uhInterDirNeighbours 567 #if NH_3D_VSP 568 , vspFlag 569 #endif 570 #if NH_3D_SPIVMP 571 , bSPIVMPFlag 572 #endif 573 ,numValidMergeCand ); 574 #if NH_3D_VSP 575 pcCU->setVSPFlagSubParts( vspFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 576 #endif 577 #endif 492 578 } 493 579 … … 503 589 pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvd( cTmpMv, ePartSize, uiSubPartIdx, uiDepth, uiPartIdx ); 504 590 pcCU->getCUMvField( RefPicList( uiRefListIdx ) )->setAllMvField( cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ], ePartSize, uiSubPartIdx, uiDepth, uiPartIdx ); 505 506 } 507 } 591 #if NH_3D_VSP 592 if( pcCU->getVSPFlag( uiSubPartIdx ) != 0 ) 593 { 594 if ( uhInterDirNeighbours[ uiMergeIndex ] & (1<<uiRefListIdx) ) 595 { 596 UInt dummy; 597 Int vspSize; 598 Int width, height; 599 pcCU->getPartIndexAndSize( uiPartIdx, dummy, width, height, uiSubPartIdx, pcCU->getTotalNumPart()==256 ); 600 pcCU->setMvFieldPUForVSP( pcCU, uiSubPartIdx, width, height, RefPicList( uiRefListIdx ), cMvFieldNeighbours[ 2*uiMergeIndex + uiRefListIdx ].getRefIdx(), vspSize ); 601 pcCU->setVSPFlag( uiSubPartIdx, vspSize ); 602 } 603 } 604 #endif 605 } 606 } 607 #if NH_3D_SPIVMP 608 pcCU->setSPIVMPFlagSubParts(bSPIVMPFlag[uiMergeIndex], uiSubPartIdx, uiPartIdx, uiDepth ); 609 if (bSPIVMPFlag[uiMergeIndex] != 0) 610 { 611 Int iWidth, iHeight; 612 UInt uiIdx; 613 pcCU->getPartIndexAndSize( uiPartIdx, uiIdx, iWidth, iHeight, uiSubPartIdx, true ); 614 615 UInt uiSPAddr; 616 617 Int iNumSPInOneLine, iNumSP, iSPWidth, iSPHeight; 618 619 pcCU->getSPPara(iWidth, iHeight, iNumSP, iNumSPInOneLine, iSPWidth, iSPHeight); 620 621 for (Int iPartitionIdx = 0; iPartitionIdx < iNumSP; iPartitionIdx++) 622 { 623 pcCU->getSPAbsPartIdx(uiSubPartIdx, iSPWidth, iSPHeight, iPartitionIdx, iNumSPInOneLine, uiSPAddr); 624 pcCU->setInterDirSP(puhInterDirSP[iPartitionIdx], uiSPAddr, iSPWidth, iSPHeight); 625 pcCU->getCUMvField( REF_PIC_LIST_0 )->setMvFieldSP(pcCU, uiSPAddr, pcMvFieldSP[2*iPartitionIdx], iSPWidth, iSPHeight); 626 pcCU->getCUMvField( REF_PIC_LIST_1 )->setMvFieldSP(pcCU, uiSPAddr, pcMvFieldSP[2*iPartitionIdx + 1], iSPWidth, iSPHeight); 627 } 628 } 629 #endif 508 630 } 509 631 else … … 529 651 } 530 652 } 653 #if NH_3D_IC 654 decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 655 #endif 531 656 } 532 657 … … 539 664 } 540 665 #endif 541 #if H_3D_SPIVMP666 #if NH_3D_SPIVMP 542 667 delete[] pcMvFieldSP; 543 668 delete[] puhInterDirSP; … … 607 732 } 608 733 609 #if H_3D734 #if NH_3D 610 735 Void TDecEntropy::decodeMVPIdxPU( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList ) 611 736 { … … 1061 1186 } 1062 1187 #endif 1063 #if H_3D_DBBP1188 #if NH_3D_DBBP 1064 1189 Void TDecEntropy::decodeDBBPFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 1065 1190 { -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecEntropy.h
r1258 r1279 83 83 virtual Void parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx ) = 0; 84 84 virtual Void parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex ) = 0; 85 #if H_3D_ARP85 #if NH_3D_ARP 86 86 virtual Void parseARPW ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0; 87 87 #endif 88 #if H_3D_IC88 #if NH_3D_IC 89 89 virtual Void parseICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0; 90 90 #endif … … 95 95 virtual Void parseSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0; 96 96 #endif 97 #if H_3D_DBBP97 #if NH_3D_DBBP 98 98 virtual Void parseDBBPFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) = 0; 99 99 #endif … … 145 145 Void decodeMvdPU ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList ); 146 146 Void decodeMVPIdxPU ( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, RefPicList eRefList ); 147 #if H_3D147 #if NH_3D 148 148 Void decodeMvsAMVP ( TComDataCU* pcSubCU, UInt uiPartAddr, UInt uiDepth, UInt uiPartIdx, 149 149 RefPicList eRefList ); … … 174 174 Void decodePartSize ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 175 175 176 #if H_3D_ARP176 #if NH_3D_ARP 177 177 Void decodeARPW ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 178 178 #endif 179 #if H_3D_IC179 #if NH_3D_IC 180 180 Void decodeICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 181 181 #endif … … 184 184 Void decodeSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 185 185 #endif 186 #if H_3D_DBBP186 #if NH_3D_DBBP 187 187 Void decodeDBBPFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 188 188 #endif -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecGop.cpp
r1200 r1279 122 122 } 123 123 124 #if H_3D_NBDV124 #if NH_3D_NBDV 125 125 if(pcSlice->getViewIndex() && !pcSlice->getIsDepth()) //Notes from QC: this condition shall be changed once the configuration is completed, e.g. in pcSlice->getSPS()->getMultiviewMvPredMode() || ARP in prev. HTM. Remove this comment once it is done. 126 126 { 127 Int iColPoc = pcSlice->getRefPOC(RefPicList(1 -pcSlice->getColFromL0Flag()), pcSlice->getColRefIdx());128 rpcPic->setNumDdvCandPics(rpcPic->getDisCandRefPictures(iColPoc));127 Int iColPoc = pcSlice->getRefPOC(RefPicList(1 - pcSlice->getColFromL0Flag()), pcSlice->getColRefIdx()); 128 pcPic->setNumDdvCandPics(pcPic->getDisCandRefPictures(iColPoc)); 129 129 } 130 130 131 131 if(pcSlice->getViewIndex() && !pcSlice->getIsDepth() && !pcSlice->isIntra()) //Notes from QC: this condition shall be changed once the configuration is completed, e.g. in pcSlice->getSPS()->getMultiviewMvPredMode() || ARP in prev. HTM. Remove this comment once it is done. 132 132 { 133 rpcPic->checkTemporalIVRef();133 pcPic->checkTemporalIVRef(); 134 134 } 135 135 136 136 if(pcSlice->getIsDepth()) 137 137 { 138 rpcPic->checkTextureRef();138 pcPic->checkTextureRef(); 139 139 } 140 140 #endif -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecSbac.cpp
r1258 r1279 73 73 , m_cCUMergeFlagExtSCModel ( 1, 1, NUM_MERGE_FLAG_EXT_CTX , m_contextModels + m_numContextModels, m_numContextModels) 74 74 , m_cCUMergeIdxExtSCModel ( 1, 1, NUM_MERGE_IDX_EXT_CTX , m_contextModels + m_numContextModels, m_numContextModels) 75 #if H_3D_ARP75 #if NH_3D_ARP 76 76 , m_cCUPUARPWSCModel ( 1, 1, NUM_ARPW_CTX , m_contextModels + m_numContextModels, m_numContextModels) 77 77 #endif 78 #if H_3D_IC78 #if NH_3D_IC 79 79 , m_cCUICFlagSCModel ( 1, 1, NUM_IC_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels) 80 80 #endif … … 120 120 , m_cDdcFlagSCModel ( 1, 1, NUM_DDC_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels) 121 121 #endif 122 #if H_3D_DBBP122 #if NH_3D_DBBP 123 123 , m_cDBBPFlagSCModel ( 1, 1, DBBP_NUM_FLAG_CTX , m_contextModels + m_numContextModels, m_numContextModels) 124 124 #endif … … 165 165 m_cCUMergeFlagExtSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_MERGE_FLAG_EXT ); 166 166 m_cCUMergeIdxExtSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_MERGE_IDX_EXT ); 167 #if H_3D_ARP167 #if NH_3D_ARP 168 168 m_cCUPUARPWSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_ARPW ); 169 169 #endif 170 #if H_3D_IC170 #if NH_3D_IC 171 171 m_cCUICFlagSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_IC_FLAG ); 172 172 #endif … … 211 211 m_cDdcFlagSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_DDC_FLAG ); 212 212 #endif 213 #if H_3D_DBBP213 #if NH_3D_DBBP 214 214 m_cDBBPFlagSCModel.initBuffer ( sliceType, qp, (UChar*)INIT_DBBP_FLAG ); 215 215 #endif … … 238 238 } 239 239 240 #if H_3D_ARP241 m_cCUPUARPWSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_ARPW );242 #endif243 #if H_3D_IC244 m_cCUICFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_IC_FLAG );245 #endif246 #if H_3D_DBBP247 m_cDBBPFlagSCModel.initBuffer ( eSliceType, iQp, (UChar*)INIT_DBBP_FLAG );248 #endif249 240 250 241 … … 651 642 652 643 UInt uiSymbol; 653 #if H_3D_QTLPC644 #if NH_3D_QTLPC 654 645 Bool bParseSplitFlag = true; 655 646 Bool bLimQtPredFlag = pcCU->getPic()->getSlice(0)->getQtPredFlag(); … … 666 657 #endif 667 658 { 668 TComDataCU *pcTextureCU = pcTexture->getC U(pcCU->getAddr());659 TComDataCU *pcTextureCU = pcTexture->getCtu(pcCU->getCtuRsAddr()); 669 660 assert(pcTextureCU->getDepth(uiAbsPartIdx) >= uiDepth); 670 661 bParseSplitFlag = (pcTextureCU->getDepth(uiAbsPartIdx) > uiDepth); … … 681 672 DTRACE_CABAC_T( "\tSplitFlag\n" ) 682 673 #endif 683 #if H_3D_QTLPC674 #if NH_3D_QTLPC 684 675 } 685 676 else … … 713 704 assert ( pcCU->getSlice()->getSPS()->getLog2DiffMaxMinCodingBlockSize() == log2DiffMaxMinCodingBlockSize); 714 705 715 #if H_3D_QTLPC706 #if NH_3D_QTLPC 716 707 Bool bParsePartSize = true; 717 708 … … 732 723 #endif 733 724 { 734 TComDataCU *pcTextureCU = pcTexture->getC U(pcCU->getAddr());725 TComDataCU *pcTextureCU = pcTexture->getCtu(pcCU->getCtuRsAddr()); 735 726 assert(pcTextureCU->getDepth(uiAbsPartIdx) >= uiDepth); 736 727 if(pcTextureCU->getDepth(uiAbsPartIdx) == uiDepth ) … … 749 740 if ( pcCU->isIntra( uiAbsPartIdx ) ) 750 741 { 751 #if H_3D_QTLPC742 #if NH_3D_QTLPC 752 743 if(bParsePartSize) 753 744 { … … 762 753 } 763 754 eMode = uiSymbol ? SIZE_2Nx2N : SIZE_NxN; 764 #if H_3D_QTLPC755 #if NH_3D_QTLPC 765 756 } 766 757 #endif … … 780 771 else 781 772 { 782 #if H_3D_QTLPC773 #if NH_3D_QTLPC 783 774 if(bParsePartSize) 784 775 { … … 824 815 } 825 816 } 826 #if H_3D_QTLPC817 #if NH_3D_QTLPC 827 818 } 828 819 else if(uiTexturePart == SIZE_2NxN || uiTexturePart == SIZE_2NxnU || uiTexturePart == SIZE_2NxnD) 829 820 { 830 821 UInt uiMaxNumBits = 1; 831 if ( pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth ))822 if ( ( pcCU->getSlice()->getSPS()->getUseAMP() && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiDepth < log2DiffMaxMinCodingBlockSize ) 832 823 { 833 824 uiMaxNumBits ++; … … 835 826 for ( UInt ui = 0; ui < uiMaxNumBits; ui++ ) 836 827 { 837 m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUPartSizeSCModel.get( 0, 0, ui) );828 m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUPartSizeSCModel.get( 0, 0, ui) RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(ctype) ); 838 829 if ( uiSymbol ) 839 830 { … … 843 834 } 844 835 eMode = (PartSize) uiMode; 845 if(uiMode && pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth) && uiSymbol==1 )836 if(uiMode && ( ( pcCU->getSlice()->getSPS()->getUseAMP() && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiSymbol==1 ) 846 837 { 847 838 eMode = SIZE_2NxN; 848 839 } 849 else if (uiMode && pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth )==0&& uiSymbol==0)840 else if (uiMode && (( ( pcCU->getSlice()->getSPS()->getUseAMP() && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiDepth < log2DiffMaxMinCodingBlockSize )==0) && uiSymbol==0) 850 841 { 851 842 eMode = SIZE_2NxN; 852 843 } 853 else if (uiMode && pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth) && uiSymbol==0)854 { 855 m_pcTDecBinIf->decodeBinEP(uiSymbol );844 else if (uiMode && ( ( pcCU->getSlice()->getSPS()->getUseAMP() && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiSymbol==0) 845 { 846 m_pcTDecBinIf->decodeBinEP(uiSymbol RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(ctype)); 856 847 eMode = (uiSymbol == 0? SIZE_2NxnU : SIZE_2NxnD); 857 848 } … … 860 851 { 861 852 UInt uiMaxNumBits = 1; 862 if ( pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth ) )853 if ( ( pcCU->getSlice()->getSPS()->getUseAMP() && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiDepth < log2DiffMaxMinCodingBlockSize ) 863 854 { 864 855 uiMaxNumBits ++; … … 866 857 for ( UInt ui = 0; ui < uiMaxNumBits; ui++ ) 867 858 { 868 m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUPartSizeSCModel.get( 0, 0, ui) );859 m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUPartSizeSCModel.get( 0, 0, ui) RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(ctype)); 869 860 if ( uiSymbol ) 870 861 { … … 874 865 } 875 866 eMode = (PartSize) uiMode; 876 if(uiMode && pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth) && uiSymbol==1 )867 if(uiMode && ( ( pcCU->getSlice()->getSPS()->getUseAMP() && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiSymbol==1 ) 877 868 { 878 869 eMode = SIZE_Nx2N; 879 870 } 880 else if (uiMode && pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth )==0&& uiSymbol==0)871 else if (uiMode && (( ( pcCU->getSlice()->getSPS()->getUseAMP() && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiDepth < log2DiffMaxMinCodingBlockSize )==0) && uiSymbol==0) 881 872 { 882 873 eMode = SIZE_Nx2N; 883 874 } 884 else if (uiMode && pcCU->getSlice()->getSPS()->getAMPAcc( uiDepth) && uiSymbol==0)885 { 886 m_pcTDecBinIf->decodeBinEP(uiSymbol );875 else if (uiMode && ( ( pcCU->getSlice()->getSPS()->getUseAMP() && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiDepth < log2DiffMaxMinCodingBlockSize ) && uiSymbol==0) 876 { 877 m_pcTDecBinIf->decodeBinEP(uiSymbol RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(ctype)); 887 878 eMode = (uiSymbol == 0? SIZE_nLx2N : SIZE_nRx2N); 888 879 } … … 896 887 DTRACE_CU("part_mode", eMode ) 897 888 #endif 898 #if H_3D_QTLPC889 #if NH_3D_QTLPC 899 890 } 900 891 #endif … … 2278 2269 } 2279 2270 2280 #if H_3D_ARP2271 #if NH_3D_ARP 2281 2272 Void TDecSbac::parseARPW( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 2282 2273 { 2283 UInt uiMaxW = pcCU->getSlice()->getARPStepNum() - 1;2284 2274 UInt uiW = 0; 2285 2275 UInt uiOffset = pcCU->getCTXARPWFlag(uiAbsPartIdx); 2286 2276 UInt uiCode = 0; 2287 2277 2288 assert ( uiMaxW > 0 ); 2289 2290 m_pcTDecBinIf->decodeBin( uiCode , m_cCUPUARPWSCModel.get( 0, 0, 0 + uiOffset ) ); 2278 m_pcTDecBinIf->decodeBin( uiCode , m_cCUPUARPWSCModel.get( 0, 0, 0 + uiOffset ) RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(STATS__CABAC_BITS__ARP_FLAG)); 2291 2279 2292 2280 uiW = uiCode; 2293 2281 if( 1 == uiW ) 2294 2282 { 2295 m_pcTDecBinIf->decodeBin( uiCode , m_cCUPUARPWSCModel.get( 0, 0, 2 ) );2283 m_pcTDecBinIf->decodeBin( uiCode , m_cCUPUARPWSCModel.get( 0, 0, 2 ) RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(STATS__CABAC_BITS__ARP_FLAG)); 2296 2284 uiW += ( 1 == uiCode ? 1 : 0 ); 2297 2285 } … … 2303 2291 #endif 2304 2292 2305 #if H_3D_IC2293 #if NH_3D_IC 2306 2294 /** parse illumination compensation flag 2307 2295 * \param pcCU … … 2313 2301 { 2314 2302 UInt uiSymbol = 0; 2315 m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUICFlagSCModel.get( 0, 0, 0 ) ); 2303 m_pcTDecBinIf->decodeBin( uiSymbol, m_cCUICFlagSCModel.get( 0, 0, 0 ) RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(STATS__CABAC_BITS__3D_IC) ); 2304 2316 2305 #if !H_MV_ENC_DEC_TRAC 2317 2306 DTRACE_CABAC_VL( g_nSymbolCounter++ ); … … 2523 2512 #endif 2524 2513 2525 #if H_3D_DBBP2514 #if NH_3D_DBBP 2526 2515 Void TDecSbac::parseDBBPFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ) 2527 2516 { … … 2531 2520 UInt uiSymbol = 0; 2532 2521 2533 m_pcTDecBinIf->decodeBin( uiSymbol, m_cDBBPFlagSCModel.get( 0, 0, 0 ) );2522 m_pcTDecBinIf->decodeBin( uiSymbol, m_cDBBPFlagSCModel.get( 0, 0, 0 ) RExt__DECODER_DEBUG_BIT_STATISTICS_PASS_OPT_ARG(STATS__CABAC_BITS__DBBP_FLAG) ); 2534 2523 DTRACE_CU("dbbp_flag", uiSymbol) 2535 2524 PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx ); 2536 2525 AOF( ePartSize == SIZE_2NxN || ePartSize == SIZE_Nx2N ); 2537 UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMax CUDepth() - uiDepth ) << 1 ) ) >> 4;2526 UInt uiPUOffset = ( g_auiPUOffset[UInt( ePartSize )] << ( ( pcCU->getSlice()->getSPS()->getMaxTotalCUDepth() - uiDepth ) << 1 ) ) >> 4; 2538 2527 pcCU->setDBBPFlagSubParts(uiSymbol, uiAbsPartIdx, 0, uiDepth); 2539 2528 pcCU->setDBBPFlagSubParts(uiSymbol, uiAbsPartIdx+uiPUOffset, 1, uiDepth); -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecSbac.h
r1258 r1279 122 122 Void parseSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 123 123 #endif 124 #if H_3D_DBBP124 #if NH_3D_DBBP 125 125 Void parseDBBPFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 126 126 #endif … … 143 143 Void parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx ); 144 144 Void parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex ); 145 #if H_3D_ARP145 #if NH_3D_ARP 146 146 Void parseARPW ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 147 147 #endif 148 #if H_3D_IC148 #if NH_3D_IC 149 149 Void parseICFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth ); 150 150 #endif … … 188 188 ContextModel3DBuffer m_cCUMergeFlagExtSCModel; 189 189 ContextModel3DBuffer m_cCUMergeIdxExtSCModel; 190 #if H_3D_ARP190 #if NH_3D_ARP 191 191 ContextModel3DBuffer m_cCUPUARPWSCModel; 192 192 #endif 193 #if H_3D_IC193 #if NH_3D_IC 194 194 ContextModel3DBuffer m_cCUICFlagSCModel; 195 195 #endif … … 238 238 ContextModel3DBuffer m_cDdcFlagSCModel; 239 239 #endif 240 #if H_3D_DBBP240 #if NH_3D_DBBP 241 241 ContextModel3DBuffer m_cDBBPFlagSCModel; 242 242 #endif -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecSlice.cpp
r1200 r1279 90 90 g_bJustDoIt = g_bEncDecTraceEnable; 91 91 #endif 92 #if H_MV_ENC_DEC_TRAC 93 #if ENC_DEC_TRACE 94 incSymbolCounter(); 95 #endif 96 DTRACE_CABAC_VL( g_nSymbolCounter ); 97 #else 92 98 DTRACE_CABAC_VL( g_nSymbolCounter++ ); 99 #endif 93 100 DTRACE_CABAC_T( "\tPOC: " ); 94 101 DTRACE_CABAC_V( pcPic->getPOC() ); -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecTop.cpp
r1251 r1279 292 292 293 293 294 #if H_3D_IV_MERGE294 #if NH_3D_IV_MERGE 295 295 Void 296 296 CamParsCollector::copyCamParamForSlice( TComSlice* pcSlice ) … … 423 423 { 424 424 #if ENC_DEC_TRACE 425 #if H_MV_ENC_DEC_TRAC_FIX 426 if (g_hTrace != stdout && g_hTrace != NULL) 427 #else 425 428 if (g_hTrace != stdout) 429 #endif 426 430 { 427 431 fclose( g_hTrace ); 432 #if H_MV_ENC_DEC_TRAC_FIX 433 g_hTrace = NULL; 434 #endif 428 435 } 429 436 #endif … … 1142 1149 pcSlice->getTempRefPicLists( m_cListPic, m_refPicSetInterLayer0, m_refPicSetInterLayer1, tempRefPicLists, usedAsLongTerm, numPocTotalCurr); 1143 1150 pcSlice->setRefPicList ( tempRefPicLists, usedAsLongTerm, numPocTotalCurr, true ); 1144 #if H_3D1151 #if NH_3D_NBDV 1145 1152 pcSlice->setDefaultRefView(); 1146 1153 #endif 1147 #if H_3D_ARP1154 #if NH_3D_ARP 1148 1155 pcSlice->setARPStepNum(m_ivPicLists); 1149 if( pcSlice->getARPStepNum() > 1 )1150 {1151 // GT: This seems to be broken, not all nuh_layer_ids are necessarily present1152 for(Int iLayerId = 0; iLayerId < nalu.m_nuhLayerId; iLayerId ++ )1153 {1154 Int iViewIdx = pcSlice->getVPS()->getViewIndex(iLayerId);1155 Bool bIsDepth = ( pcSlice->getVPS()->getDepthId ( iLayerId ) == 1 );1156 if( iViewIdx<getViewIndex() && !bIsDepth )1157 {1158 pcSlice->setBaseViewRefPicList( m_ivPicLists->getPicList( iLayerId ), iViewIdx );1159 }1160 }1161 }1162 1156 #endif 1163 1157 #else … … 1167 1161 #if NH_3D 1168 1162 pcSlice->checkInCompPredRefLayers(); 1169 #if H_3D_IV_MERGE1163 #if NH_3D_IV_MERGE 1170 1164 #if H_3D_FCO 1171 1165 //assert( !getIsDepth() ); … … 1226 1220 //--------------- 1227 1221 pcSlice->setRefPOCList(); 1228 #if H_3D_TMVP1222 #if NH_3D_TMVP 1229 1223 if(pcSlice->getLayerId()) 1230 1224 { … … 1264 1258 } 1265 1259 1266 #if H_3D_IV_MERGE1260 #if NH_3D_IV_MERGE 1267 1261 #if H_3D_FCO 1268 1262 if( !pcSlice->getIsDepth() && m_pcCamParsCollector ) -
branches/HTM-14.1-update-dev1/source/Lib/TLibDecoder/TDecTop.h
r1239 r1279 81 81 Int**** getBaseViewShiftLUTI() { return m_aiBaseViewShiftLUT; } 82 82 83 #if H_3D_IV_MERGE83 #if NH_3D_IV_MERGE 84 84 Void copyCamParamForSlice( TComSlice* pcSlice ); 85 85 #endif
Note: See TracChangeset for help on using the changeset viewer.