Changeset 531 in 3DVCSoftware for branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncEntropy.cpp
- Timestamp:
- 11 Jul 2013, 16:03:14 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncEntropy.cpp
r521 r531 257 257 return; 258 258 } 259 #if H_3D_DIM_SDC 260 if( pcCU->getSDCFlag(uiAbsPartIdx) ) 261 { 262 return; 263 } 264 #endif 259 265 260 266 if( bRD ) … … 469 475 { 470 476 encodeIntraDirModeLuma ( pcCU, uiAbsPartIdx,true ); 477 #if H_3D_DIM_SDC 478 if(!pcCU->getSDCFlag(uiAbsPartIdx)) 479 #endif 471 480 encodeIntraDirModeChroma( pcCU, uiAbsPartIdx, bRD ); 472 481 } … … 641 650 UInt uiChromaOffset = uiLumaOffset>>2; 642 651 652 #if H_3D_DIM_SDC 653 if( pcCU->getSDCFlag( uiAbsPartIdx ) ) 654 { 655 assert( pcCU->getPartitionSize(uiAbsPartIdx) == SIZE_2Nx2N ); 656 assert( pcCU->getTransformIdx(uiAbsPartIdx) == 0 ); 657 assert( pcCU->getCbf(uiAbsPartIdx, TEXT_LUMA) == 1 ); 658 assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_U) == 1 ); 659 assert( pcCU->getCbf(uiAbsPartIdx, TEXT_CHROMA_V) == 1 ); 660 return; 661 } 662 #endif 663 643 664 if( pcCU->isIntra(uiAbsPartIdx) ) 644 665 {
Note: See TracChangeset for help on using the changeset viewer.