Changeset 858 in SHVCSoftware


Ignore:
Timestamp:
11 Aug 2014, 22:27:04 (10 years ago)
Author:
seregin
Message:

fix compiler warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r856 r858  
    11431143        if( m_apcSlicePilot->getPocResetIdc() == 3 )
    11441144        {
    1145           assert( m_apcSlicePilot->getFullPocResetFlag() == false && m_crossLayerPocResetIdc == 1
    1146                   || m_apcSlicePilot->getFullPocResetFlag() == true && m_crossLayerPocResetIdc == 2 );
     1145          assert( ( m_apcSlicePilot->getFullPocResetFlag() == false && m_crossLayerPocResetIdc == 1 ) ||
     1146                  ( m_apcSlicePilot->getFullPocResetFlag() == true  && m_crossLayerPocResetIdc == 2 ) );
    11471147        }
    11481148      }
     
    17331733      that is present in the bitstream in the same access unit with a different value of nal_unit_type,
    17341734      the value of poc_reset_idc shall be equal to 1 or 2 for all pictures in the access unit. */
    1735       if( m_nonBaseIdrPresentFlag &&
    1736             ( m_nonBaseIdrType == 1 && m_picNonIdrWithRadlPresentFlag  
    1737              || m_nonBaseIdrType == 0 && m_picNonIdrNoLpPresentFlag )
    1738         )
     1735      if( m_nonBaseIdrPresentFlag && (
     1736            ( m_nonBaseIdrType == 1 && m_picNonIdrWithRadlPresentFlag ) ||
     1737            ( m_nonBaseIdrType == 0 && m_picNonIdrNoLpPresentFlag )
     1738        ))
    17391739      {
    17401740        assert( m_apcSlicePilot->getPocResetIdc() == 1 || m_apcSlicePilot->getPocResetIdc() == 2 );
Note: See TracChangeset for help on using the changeset viewer.