Ignore:
Timestamp:
31 May 2015, 20:35:03 (10 years ago)
Author:
rwth
Message:
  • enabled SDC encoder speedup
  • fixed some compiler warnings
Location:
branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibCommon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibCommon/TComCodingStatistics.h

    r1227 r1239  
    102102  STATS__CABAC_BITS__DMMMODE,
    103103  STATS__CABAC_BITS__DMM1_BITS_EP,
     104#endif
     105#if NH_3D_SDC_INTRA
     106  STATS__CABAC_BITS__SDC_INTRA_FLAG,
     107  STATS__CABAC_BITS__SDC_DELTADC_FLAG,
    104108#endif
    105109
     
    164168   ,"STATS__CABAC_BITS__DMM1_BITS_EP"
    165169#endif
     170#if NH_3D_SDC_INTRA
     171    ,"STATS__CABAC_BITS__SDC_INTRA_FLAG"
     172    ,"STATS__CABAC_BITS__SDC_DELTADC_FLAG"
     173#endif
    166174  };
    167175  assert(STATS__NUM_STATS == sizeof(statNames)/sizeof(Char *) && name < STATS__NUM_STATS);
  • branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibCommon/TComSlice.cpp

    r1219 r1239  
    20322032Int TComVPS::scalTypeToScalIdx( ScalabilityType scalType ) const
    20332033{
    2034   assert( scalType >= 0 && scalType <= MAX_NUM_SCALABILITY_TYPES );
    2035   assert( scalType == MAX_NUM_SCALABILITY_TYPES || getScalabilityMaskFlag( scalType ) );
     2034  assert( (Int)scalType >= 0 && (Int)scalType <= MAX_NUM_SCALABILITY_TYPES );
     2035  assert( (Int)scalType == MAX_NUM_SCALABILITY_TYPES || getScalabilityMaskFlag( scalType ) );
    20362036  Int scalIdx = 0;
    20372037  for( Int curScalType = 0; curScalType < scalType; curScalType++ )
Note: See TracChangeset for help on using the changeset viewer.