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


Ignore:
Timestamp:
15 Oct 2013, 15:17:33 (11 years ago)
Author:
nokia
Message:

fix spec inconsistencies and a typo (tileIdx -> tileSetIdx) in tile sets implementation

File:
1 edited

Legend:

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

    r435 r437  
    804804      sei.m_skippedTileSetPresentFlag = false;
    805805    }
    806     UInt numSignificantSets = sei.m_ilNumSetsInMessageMinus1 + (sei.m_skippedTileSetPresentFlag ? 1 : 0) + 1;
    807     for( UInt i = 0; i <= numSignificantSets; i++ )
     806    UInt numSignificantSets = sei.m_ilNumSetsInMessageMinus1 - (sei.m_skippedTileSetPresentFlag ? 1 : 0) + 1;
     807    for( UInt i = 0; i < numSignificantSets; i++ )
    808808    {
    809809      READ_UVLC( uiCode, "ilcts_id"                                     ); sei.m_ilctsId[i] = uiCode;
Note: See TracChangeset for help on using the changeset viewer.