Changeset 942 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder
- Timestamp:
- 30 Dec 2014, 20:36:14 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r941 r942 1088 1088 if( vps->getMaxLayers() > 1 && vps->getBaseLayerInternalFlag() ) 1089 1089 { 1090 #if !MULTIPLE_PTL_SUPPORT 1090 #if MULTIPLE_PTL_SUPPORT 1091 codePTL( vps->getPTL(1), false, vps->getMaxTLayers() - 1 ); 1092 #else 1091 1093 codePTL( vps->getPTLForExtn(1), false, vps->getMaxTLayers() - 1 ); 1092 #else1093 codePTL( vps->getPTL(1), false, vps->getMaxTLayers() - 1 );1094 1094 #endif 1095 1095 } … … 1258 1258 #endif 1259 1259 #if LIST_OF_PTL 1260 #if !MULTIPLE_PTL_SUPPORT 1260 #if MULTIPLE_PTL_SUPPORT 1261 //Do something here to make sure the loop is correct to consider base layer internal stuff 1262 #else 1261 1263 assert( vps->getNumProfileTierLevel() == vps->getPTLForExtnPtr()->size()); 1262 #else1263 //Do something here to make sure the loop is correct to consider base layer internal stuff1264 1264 #endif 1265 1265 for(Int idx = vps->getBaseLayerInternalFlag() ? 2 : 1; idx <= vps->getNumProfileTierLevel() - 1; idx++) … … 1278 1278 } 1279 1279 #endif 1280 #if !MULTIPLE_PTL_SUPPORT 1280 #if MULTIPLE_PTL_SUPPORT 1281 codePTL( vps->getPTL(idx), vps->getProfilePresentFlag(idx), vps->getMaxTLayers() - 1 ); 1282 #else 1281 1283 codePTL( vps->getPTLForExtn(idx), vps->getProfilePresentFlag(idx), vps->getMaxTLayers() - 1 ); 1282 #else1283 codePTL( vps->getPTL(idx), vps->getProfilePresentFlag(idx), vps->getMaxTLayers() - 1 );1284 1284 #endif 1285 1285 }
Note: See TracChangeset for help on using the changeset viewer.