Changeset 967 in 3DVCSoftware for branches/HTM-11.1-dev0/source/Lib/TLibEncoder/TEncSbac.cpp
- Timestamp:
- 5 Jul 2014, 08:19:26 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-11.1-dev0/source/Lib/TLibEncoder/TEncSbac.cpp
r950 r967 482 482 m_pcBinIf->encodeBin( 1, rcSCModel ); 483 483 UInt uiCount = 0; 484 #if QC_SIMP_DELTADC_CODING_H0131485 484 Bool bNoExGo = ( uiSymbol < 3 ); 486 485 487 486 while( --uiSymbol && ++uiCount < 3 ) 488 #else489 Bool bNoExGo = (uiSymbol < 13);490 491 while( --uiSymbol && ++uiCount < 13 )492 #endif493 487 { 494 488 m_pcBinIf->encodeBin( 1, rcSCModel ); … … 1243 1237 if( ( pcCU->getSlice()->getSPS()->getMaxCUWidth() >> pcCU->getDepth( absPartIdx ) ) < 64 ) //DMM and HEVC intra modes are both allowed 1244 1238 { 1245 #if LGE_SIMP_DIM_NOT_PRESENT_FLAG_CODING_H0119_H01351246 1239 m_pcBinIf->encodeBin( isDimMode( dir ) ? 0 : 1, m_cAngleFlagSCModel.get( 0, 0, 0 ) ); 1247 #else1248 m_pcBinIf->encodeBin( isDimMode( dir ) ? 0 : 1, m_cAngleFlagSCModel.get( 0, 0, pcCU->getCtxAngleFlag( absPartIdx ) ) );1249 #endif1250 1240 } 1251 1241 if( isDimMode( dir ) ) … … 2373 2363 Void TEncSbac::codeDBBPFlag( TComDataCU* pcCU, UInt uiAbsPartIdx ) 2374 2364 { 2375 #if !MTK_DBBP_SIGNALING_H00942376 PartSize ePartSize = pcCU->getPartitionSize( uiAbsPartIdx );2377 AOF( ePartSize == RWTH_DBBP_PACK_MODE );2378 #endif2379 2365 AOF( pcCU->getSlice()->getVPS()->getUseDBBP(pcCU->getSlice()->getLayerIdInVps()) ); 2380 2366 AOF( !pcCU->getSlice()->getIsDepth() );
Note: See TracChangeset for help on using the changeset viewer.