Changeset 227 in 3DVCSoftware for branches/HTM-5.1-dev1-HHI/source/Lib/TLibEncoder
- Timestamp:
- 24 Jan 2013, 20:31:24 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev1-HHI/source/Lib/TLibEncoder/TEncCu.cpp
r189 r227 1103 1103 1104 1104 // do normal intra modes 1105 if ( !bEarlySkip ) 1105 if ( !bEarlySkip 1106 #if HHI_DEPTH_INTRA_SEARCH_RAU_C0160 1107 || ((rpcBestCU->getSlice()->getIsDepth() == true) && (rpcBestCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR)) 1108 #endif 1109 ) 1106 1110 { 1107 1111 // speedup for inter frames … … 1110 1114 rpcBestCU->getCbf( 0, TEXT_LUMA ) != 0 || 1111 1115 rpcBestCU->getCbf( 0, TEXT_CHROMA_U ) != 0 || 1112 rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0 ) && !bFullyRenderedSec ) // avoid very complex intra if it is unlikely 1116 rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0 1117 #if HHI_DEPTH_INTRA_SEARCH_RAU_C0160 1118 || ((rpcBestCU->getSlice()->getIsDepth() == true) && (rpcBestCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR)) 1119 #endif 1120 ) && !bFullyRenderedSec ) // avoid very complex intra if it is unlikely 1113 1121 #else 1114 1122 if( rpcBestCU->getSlice()->getSliceType() == I_SLICE || 1115 1123 rpcBestCU->getCbf( 0, TEXT_LUMA ) != 0 || 1116 1124 rpcBestCU->getCbf( 0, TEXT_CHROMA_U ) != 0 || 1117 rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0 ) // avoid very complex intra if it is unlikely 1125 rpcBestCU->getCbf( 0, TEXT_CHROMA_V ) != 0 1126 #if HHI_DEPTH_INTRA_SEARCH_RAU_C0160 1127 || ((rpcBestCU->getSlice()->getIsDepth() == true) && (rpcBestCU->getSlice()->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR)) 1128 #endif 1129 ) // avoid very complex intra if it is unlikely 1118 1130 #endif 1119 1131 {
Note: See TracChangeset for help on using the changeset viewer.