Changeset 1439 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibCommon


Ignore:
Timestamp:
12 Aug 2015, 20:03:56 (10 years ago)
Author:
seregin
Message:

.update Xcode workspace
.fix vps_num_video_signal_info_minus1 inference

Patch-by: Karsten Suehring

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

Legend:

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

    r1431 r1439  
    30243024Int TComVPS::scalTypeToScalIdx( ScalabilityType scalType ) const
    30253025{
    3026   assert( scalType >= 0 && scalType <= MAX_VPS_NUM_SCALABILITY_TYPES );
    3027   assert( scalType == MAX_VPS_NUM_SCALABILITY_TYPES || getScalabilityMask( scalType ) );
     3026  assert( (Int)scalType >= 0 && (Int)scalType <= MAX_VPS_NUM_SCALABILITY_TYPES );
     3027  assert( (Int)scalType == MAX_VPS_NUM_SCALABILITY_TYPES || getScalabilityMask( scalType ) );
    30283028  Int scalIdx = 0;
    30293029  for( Int curScalType = 0; curScalType < scalType; curScalType++ )
  • branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h

    r1400 r1439  
    717717  UInt                  m_treePartitionLayerIdList[MAX_LAYERS][MAX_LAYERS];
    718718
    719   Int                   m_TolsIdx;
    720719  Bool                  m_subLayerFlagInfoPresentFlag [MAX_VPS_OP_LAYER_SETS_PLUS1];
    721720  Bool                  m_subLayerDpbInfoPresentFlag  [MAX_VPS_OP_LAYER_SETS_PLUS1][MAX_LAYERS];
Note: See TracChangeset for help on using the changeset viewer.