Changeset 1251 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 14 Jul 2015, 01:41:52 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1246 r1251 2077 2077 for (Int i = 0; i < maxNumSubLayersMinus1; i++) 2078 2078 { 2079 #if SVC_EXTENSION2080 2079 READ_FLAG( uiCode, "sub_layer_profile_present_flag[i]" ); rpcPTL->setSubLayerProfilePresentFlag(i, uiCode); 2081 #else2082 if(profilePresentFlag)2083 {2084 READ_FLAG( uiCode, "sub_layer_profile_present_flag[i]" ); rpcPTL->setSubLayerProfilePresentFlag(i, uiCode);2085 }2086 #endif2087 2080 READ_FLAG( uiCode, "sub_layer_level_present_flag[i]" ); rpcPTL->setSubLayerLevelPresentFlag (i, uiCode); 2088 2081 } … … 2099 2092 for(Int i = 0; i < maxNumSubLayersMinus1; i++) 2100 2093 { 2101 #if SVC_EXTENSION2102 2094 if( rpcPTL->getSubLayerProfilePresentFlag(i) ) 2103 #else2104 if( profilePresentFlag && rpcPTL->getSubLayerProfilePresentFlag(i) )2105 #endif2106 2095 { 2107 2096 parseProfileTier(rpcPTL->getSubLayerPTL(i));
Note: See TracChangeset for help on using the changeset viewer.