Changeset 381 in SHVCSoftware for branches


Ignore:
Timestamp:
5 Sep 2013, 23:01:19 (11 years ago)
Author:
qualcomm
Message:

Bug Fix : Effects when temporal scalability is enabled.

Location:
branches/SHM-3.1-dev/source/Lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-3.1-dev/source/Lib/TLibCommon/TComSlice.h

    r377 r381  
    660660#endif
    661661#if JCTVC_M0203_INTERLAYER_PRED_IDC
    662   Bool   getMaxSublayerForIlpPlus1(Int layerId)                     { return m_maxSublayerForIlpPlus1[layerId];                   }
     662  UInt   getMaxSublayerForIlpPlus1(Int layerId)                     { return m_maxSublayerForIlpPlus1[layerId];                   }
    663663  Void   setMaxSublayerForIlpPlus1(Int layerId, UInt maxSublayer)   { m_maxSublayerForIlpPlus1[layerId] = maxSublayer;            }
    664664#endif
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r377 r381  
    971971    {
    972972      READ_CODE( 3, uiCode, "max_sublayer_for_ilp_plus1[i]" ); vps->setMaxSublayerForIlpPlus1(i, uiCode);
    973       assert( uiCode <= vps->getMaxTLayers() );
     973      assert( uiCode <= vps->getMaxTLayers()+ 1 );
    974974    }
    975975  }
Note: See TracChangeset for help on using the changeset viewer.