Ignore:
Timestamp:
16 Aug 2013, 03:46:37 (11 years ago)
Author:
lg
Message:
  • minor fix of coding style
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-DEV-2.0-dev2-LG/source/Lib/TLibDecoder/TDecEntropy.cpp

    r571 r575  
    674674
    675675  if( !pcCU->getSlice()->getVPS()->getInterSDCFlag( pcCU->getSlice()->getLayerIdInVps() ) )
    676     return;
     676  {
     677    return;
     678  }
    677679
    678680  if( !pcCU->getSlice()->getIsDepth() || pcCU->isIntra( uiAbsPartIdx ) || pcCU->isSkipped( uiAbsPartIdx ) )
    679     return;
     681  {
     682    return;
     683  }
    680684
    681685  m_pcEntropyDecoderIf->parseInterSDCFlag( pcCU, uiAbsPartIdx, uiDepth );
     
    685689{
    686690  if( !pcCU->getSlice()->getVPS()->getInterSDCFlag( pcCU->getSlice()->getLayerIdInVps() ) )
    687     return;
     691  {
     692    return;
     693  }
    688694
    689695  if( !pcCU->getSlice()->getIsDepth() || pcCU->isIntra( uiAbsPartIdx ) || !pcCU->getInterSDCFlag( uiAbsPartIdx ) )
    690     return;
     696  {
     697    return;
     698  }
    691699
    692700  UInt uiNumSegments = ( pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_2Nx2N ) ? 1 : ( pcCU->getPartitionSize( uiAbsPartIdx ) == SIZE_NxN ? 4 : 2 );
     
    694702  // decode residual data for each segment
    695703  for( UInt uiSeg = 0; uiSeg < uiNumSegments; uiSeg++ )
     704  {
    696705    m_pcEntropyDecoderIf->parseInterSDCResidualData( pcCU, uiAbsPartIdx, uiDepth, uiSeg );
     706  }
    697707}
    698708#endif
Note: See TracChangeset for help on using the changeset viewer.