Changeset 980 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
13 Jan 2015, 22:55:34 (11 years ago)
Author:
seregin
Message:

fix for the ticket #49, patch was provided by Jay Padia <jpadia@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r971 r980  
    21332133  }
    21342134#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
    21382146    {
    21392147      if (vps->getDirectDependencyFlag(i, j))
Note: See TracChangeset for help on using the changeset viewer.