Changeset 941 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibEncoder
- Timestamp:
- 30 Dec 2014, 18:47:09 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibEncoder/TEncCavlc.cpp
r937 r941 1088 1088 if( vps->getMaxLayers() > 1 && vps->getBaseLayerInternalFlag() ) 1089 1089 { 1090 #if !MULTIPLE_PTL_SUPPORT 1090 1091 codePTL( vps->getPTLForExtn(1), false, vps->getMaxTLayers() - 1 ); 1092 #else 1093 codePTL( vps->getPTL(1), false, vps->getMaxTLayers() - 1 ); 1094 #endif 1091 1095 } 1092 1096 #endif … … 1254 1258 #endif 1255 1259 #if LIST_OF_PTL 1260 #if !MULTIPLE_PTL_SUPPORT 1256 1261 assert( vps->getNumProfileTierLevel() == vps->getPTLForExtnPtr()->size()); 1262 #else 1263 //Do something here to make sure the loop is correct to consider base layer internal stuff 1264 #endif 1257 1265 for(Int idx = vps->getBaseLayerInternalFlag() ? 2 : 1; idx <= vps->getNumProfileTierLevel() - 1; idx++) 1258 1266 #else … … 1260 1268 #endif 1261 1269 { 1270 #if MULTIPLE_PTL_SUPPORT 1271 vps->setProfilePresentFlag(idx, true); 1272 #endif 1262 1273 WRITE_FLAG( vps->getProfilePresentFlag(idx), "vps_profile_present_flag[i]" ); 1263 1274 #if !P0048_REMOVE_PROFILE_REF … … 1267 1278 } 1268 1279 #endif 1280 #if !MULTIPLE_PTL_SUPPORT 1269 1281 codePTL( vps->getPTLForExtn(idx), vps->getProfilePresentFlag(idx), vps->getMaxTLayers() - 1 ); 1282 #else 1283 codePTL( vps->getPTL(idx), vps->getProfilePresentFlag(idx), vps->getMaxTLayers() - 1 ); 1284 #endif 1270 1285 } 1271 1286 #endif
Note: See TracChangeset for help on using the changeset viewer.