Changeset 460 in 3DVCSoftware for branches/HTM-DEV-0.3-dev1/source/Lib/TLibEncoder/TEncCu.cpp
- Timestamp:
- 6 Jun 2013, 12:10:16 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev1/source/Lib/TLibEncoder/TEncCu.cpp
r446 r460 517 517 m_LCUPredictionSAD += m_temporalSAD; 518 518 m_addSADDepth = uiDepth; 519 } 520 #endif 521 522 #if H_3D_DIM_ENC 523 if( rpcBestCU->getSlice()->getIsDepth() && rpcBestCU->getSlice()->isIRAP() ) 524 { 525 earlyDetectionSkipMode = false; 519 526 } 520 527 #endif … … 682 689 683 690 // do normal intra modes 691 #if H_3D_DIM_ENC 692 if ( !bEarlySkip || ( rpcBestCU->getSlice()->getIsDepth() && rpcBestCU->getSlice()->isIRAP() ) ) 693 #else 684 694 if ( !bEarlySkip ) 695 #endif 685 696 { 686 697 // speedup for inter frames … … 688 699 rpcBestCU->getCbf( 0, TEXT_LUMA ) != 0 || 689 700 rpcBestCU->getCbf( 0, TEXT_CHROMA_U ) != 0 || 690 rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0 ) // avoid very complex intra if it is unlikely 701 rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0 702 #if H_3D_DIM_ENC 703 || ( rpcBestCU->getSlice()->getIsDepth() && rpcBestCU->getSlice()->isIRAP() ) 704 #endif 705 ) // avoid very complex intra if it is unlikely 691 706 { 692 707 xCheckRDCostIntra( rpcBestCU, rpcTempCU, SIZE_2Nx2N );
Note: See TracChangeset for help on using the changeset viewer.