Changeset 785 in 3DVCSoftware for branches/HTM-9.3-dev2-Samsung/source/Lib/TLibDecoder
- Timestamp:
- 21 Jan 2014, 01:02:51 (11 years ago)
- Location:
- branches/HTM-9.3-dev2-Samsung/source/Lib/TLibDecoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-9.3-dev2-Samsung/source/Lib/TLibDecoder/TDecCu.cpp
r773 r785 390 390 UInt uiMergeIndex = pcCU->getMergeIndex(uiAbsPartIdx); 391 391 392 #if !SEC_IC_ARP_SIG_G0072 392 393 #if H_3D_IC 393 394 m_pcEntropyDecoder->decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 394 395 #endif 396 #endif 395 397 #if H_3D_ARP 396 398 m_pcEntropyDecoder->decodeARPW( pcCU , uiAbsPartIdx , uiDepth ); 399 #endif 400 #if SEC_IC_ARP_SIG_G0072 401 #if H_3D_IC 402 m_pcEntropyDecoder->decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 403 #endif 397 404 #endif 398 405 -
branches/HTM-9.3-dev2-Samsung/source/Lib/TLibDecoder/TDecEntropy.cpp
r773 r785 111 111 pcCU->setICFlagSubParts( false , uiAbsPartIdx, 0, uiDepth ); 112 112 113 #if SEC_IC_ARP_SIG_G0072 114 if ( pcCU->isIntra( uiAbsPartIdx ) || ( pcCU->getSlice()->getViewIndex() == 0 ) || pcCU->getSlice()->getIsDepth() || pcCU->getARPW( uiAbsPartIdx ) > 0 ) 115 #else 113 116 if ( pcCU->isIntra( uiAbsPartIdx ) || ( pcCU->getSlice()->getViewIndex() == 0 ) || pcCU->getSlice()->getIsDepth() ) 117 #endif 114 118 { 115 119 return; … … 241 245 decodeMergeIndex( pcCU, uiPartIdx, uiSubPartIdx, uiDepth ); 242 246 UInt uiMergeIndex = pcCU->getMergeIndex(uiSubPartIdx); 247 #if !SEC_IC_ARP_SIG_G0072 243 248 #if H_3D_IC 244 249 decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 245 250 #endif 251 #endif 246 252 #if H_3D_ARP 247 253 decodeARPW ( pcCU, uiAbsPartIdx, uiDepth ); 254 #endif 255 #if SEC_IC_ARP_SIG_G0072 256 #if H_3D_IC 257 decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 258 #endif 248 259 #endif 249 260 if ( pcCU->getSlice()->getPPS()->getLog2ParallelMergeLevelMinus2() && ePartSize != SIZE_2Nx2N && pcSubCU->getWidth( 0 ) <= 8 ) … … 367 378 } 368 379 } 380 #if !SEC_IC_ARP_SIG_G0072 369 381 #if H_3D_IC 370 382 decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 371 383 #endif 384 #endif 372 385 #if H_3D_ARP 373 386 decodeARPW ( pcCU, uiAbsPartIdx, uiDepth ); 387 #endif 388 #if SEC_IC_ARP_SIG_G0072 389 #if H_3D_IC 390 decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 391 #endif 374 392 #endif 375 393 }
Note: See TracChangeset for help on using the changeset viewer.