Changeset 253 in 3DVCSoftware for branches/HTM-5.1-dev1-LG/source/Lib/TLibDecoder
- Timestamp:
- 4 Feb 2013, 02:57:15 (12 years ago)
- Location:
- branches/HTM-5.1-dev1-LG/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev1-LG/source/Lib/TLibDecoder/TDecCAVLC.cpp
r210 r253 1927 1927 { 1928 1928 UInt uiCodeTmp = 0; 1929 if ( rpcSlice->getSPS()->getViewId() && !rpcSlice->getSPS()->isDepth() ) 1929 if ( rpcSlice->getSPS()->getViewId() 1930 #if !LGE_ILLUCOMP_DEPTH_C0046 1931 && !rpcSlice->getSPS()->isDepth() 1932 #endif 1933 ) 1930 1934 { 1931 1935 READ_FLAG (uiCodeTmp, "applying IC flag"); -
branches/HTM-5.1-dev1-LG/source/Lib/TLibDecoder/TDecCu.cpp
r242 r253 370 370 pcCU->setHeight( uiAbsPartIdx + ui, g_uiMaxCUHeight>>uhNewDepth ); 371 371 } 372 #if LGE_ILLUCOMP_DEPTH_C0046 373 m_pcEntropyDecoder->decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 374 #endif 372 375 } 373 376 else … … 449 452 450 453 #if LGE_ILLUCOMP_B0045 454 #if LGE_ILLUCOMP_DEPTH_C0046 455 if( pcCU->getTextureModeDepth( uiAbsPartIdx ) != uiDepth ) 456 { 457 #endif 451 458 m_pcEntropyDecoder->decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 452 459 #endif … … 456 463 { 457 464 m_pcEntropyDecoder->decodeResPredFlag ( pcCU, uiAbsPartIdx, uiDepth, m_ppcCU[uiDepth], 0 ); 465 } 466 #endif 467 #if LGE_ILLUCOMP_DEPTH_C0046 458 468 } 459 469 #endif … … 476 486 pcCU->setHeight( uiAbsPartIdx + ui, g_uiMaxCUHeight>>uhNewDepth ); 477 487 } 478 488 #if LGE_ILLUCOMP_DEPTH_C0046 489 m_pcEntropyDecoder->decodeICFlag( pcCU, uiAbsPartIdx, uiDepth ); 490 #endif 479 491 if( ( ( uiDepth < pcCU->getDepth( uiAbsPartIdx ) ) && ( uiDepth < g_uiMaxCUDepth - g_uiAddCUDepth ) ) || bBoundary ) 480 492 { -
branches/HTM-5.1-dev1-LG/source/Lib/TLibDecoder/TDecEntropy.cpp
r189 r253 72 72 pcCU->setICFlagSubParts( false , uiAbsPartIdx, 0, uiDepth ); 73 73 74 if (pcCU->isIntra(uiAbsPartIdx) || (pcCU->getSlice()->getViewId() == 0) || pcCU->getSlice()->getSPS()->isDepth()) 74 if (pcCU->isIntra(uiAbsPartIdx) || (pcCU->getSlice()->getViewId() == 0) 75 #if !LGE_ILLUCOMP_DEPTH_C0046 76 || pcCU->getSlice()->getSPS()->isDepth() 77 #endif 78 ) 75 79 { 76 80 return; … … 80 84 return; 81 85 86 #if LGE_ILLUCOMP_DEPTH_C0046 87 if(pcCU->isICFlagRequired(uiAbsPartIdx, uiDepth)) //This modification is not needed after integrating JCT3V-C0137 88 #else 82 89 if(pcCU->isICFlagRequired(uiAbsPartIdx)) 90 #endif 83 91 m_pcEntropyDecoderIf->parseICFlag( pcCU, uiAbsPartIdx, uiDepth ); 84 92 }
Note: See TracChangeset for help on using the changeset viewer.