Changeset 1239 in 3DVCSoftware for branches/HTM-14.1-update-dev1-RWTH/source/Lib/TLibCommon
- Timestamp:
- 31 May 2015, 20:35:03 (10 years ago)
- 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 102 102 STATS__CABAC_BITS__DMMMODE, 103 103 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, 104 108 #endif 105 109 … … 164 168 ,"STATS__CABAC_BITS__DMM1_BITS_EP" 165 169 #endif 170 #if NH_3D_SDC_INTRA 171 ,"STATS__CABAC_BITS__SDC_INTRA_FLAG" 172 ,"STATS__CABAC_BITS__SDC_DELTADC_FLAG" 173 #endif 166 174 }; 167 175 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 2032 2032 Int TComVPS::scalTypeToScalIdx( ScalabilityType scalType ) const 2033 2033 { 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 ) ); 2036 2036 Int scalIdx = 0; 2037 2037 for( Int curScalType = 0; curScalType < scalType; curScalType++ )
Note: See TracChangeset for help on using the changeset viewer.