Changeset 251 in 3DVCSoftware for branches/HTM-5.1-dev1-LG/source/Lib/TLibEncoder/TEncSbac.cpp
- Timestamp:
- 4 Feb 2013, 01:35:46 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev1-LG/source/Lib/TLibEncoder/TEncSbac.cpp
r229 r251 1096 1096 1097 1097 if( uiDir == DMM_WEDGE_PREDTEX_D_IDX ) { xCodeWedgePredTexDeltaInfo ( pcCU, uiAbsPartIdx ); } 1098 #if LGE_DMM3_SIMP_C0044 1099 if( uiDir == DMM_WEDGE_PREDTEX_IDX ) { xCodeWedgePredTexInfo ( pcCU, uiAbsPartIdx ); } 1100 #endif 1098 1101 if( uiDir == DMM_CONTOUR_PREDTEX_D_IDX ) { xCodeContourPredTexDeltaInfo( pcCU, uiAbsPartIdx ); } 1099 1102 #endif … … 2671 2674 #endif 2672 2675 #if HHI_DMM_PRED_TEX 2676 #if LGE_DMM3_SIMP_C0044 2677 Void TEncSbac::xCodeWedgePredTexInfo( TComDataCU* pcCU, UInt uiAbsPartIdx ) 2678 { 2679 Int iIntraIdx = pcCU->getIntraSizeIdx(uiAbsPartIdx); 2680 Int iBits = g_aucWedgeTexPredBitsListIdx[iIntraIdx]; 2681 2682 UInt uiTabIdx = pcCU->getWedgePredTexIntraTabIdx( uiAbsPartIdx ); 2683 2684 for ( Int i = 0; i < iBits; i++ ) 2685 { 2686 m_pcBinIf->encodeBin( ( uiTabIdx >> i ) & 1, m_cDmmDataSCModel.get(0, 0, 3) ); 2687 } 2688 } 2689 #endif 2690 2673 2691 Void TEncSbac::xCodeWedgePredTexDeltaInfo( TComDataCU* pcCU, UInt uiAbsPartIdx ) 2674 2692 { 2693 #if LGE_DMM3_SIMP_C0044 2694 xCodeWedgePredTexInfo( pcCU, uiAbsPartIdx ); 2695 #endif 2675 2696 Int iDeltaDC1 = pcCU->getWedgePredTexDeltaDC1( uiAbsPartIdx ); 2676 2697 Int iDeltaDC2 = pcCU->getWedgePredTexDeltaDC2( uiAbsPartIdx );
Note: See TracChangeset for help on using the changeset viewer.