Changeset 980 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder
- Timestamp:
- 13 Jan 2015, 22:55:34 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp
r971 r980 2133 2133 } 2134 2134 #endif 2135 for(i = 1; i < vps->getMaxLayers(); i++) 2136 { 2137 for(j = 0; j < i; j++) 2135 #if VPS_FIX_TO_MATCH_SPEC 2136 for (i = vps->getBaseLayerInternalFlag() ? 1 : 2; i < vps->getMaxLayers(); i++) 2137 #else 2138 for (i = 1; i < vps->getMaxLayers(); i++) 2139 #endif 2140 { 2141 #if VPS_FIX_TO_MATCH_SPEC 2142 for (j = vps->getBaseLayerInternalFlag() ? 0 : 1; j < i; j++) 2143 #else 2144 for (j = 0; j < i; j++) 2145 #endif 2138 2146 { 2139 2147 if (vps->getDirectDependencyFlag(i, j))
Note: See TracChangeset for help on using the changeset viewer.