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/TLibEncoder/SEIwrite.cpp

    r435 r437  
    581581      WRITE_FLAG( sei.m_skippedTileSetPresentFlag,            "skipped_tile_set_present_flag"                );
    582582    }
    583     UInt numSignificantSets = sei.m_ilNumSetsInMessageMinus1 + (sei.m_skippedTileSetPresentFlag ? 1 : 0) + 1;
    584     for( UInt i = 0; i <= numSignificantSets; i++ )
     583    UInt numSignificantSets = sei.m_ilNumSetsInMessageMinus1 - (sei.m_skippedTileSetPresentFlag ? 1 : 0) + 1;
     584    for( UInt i = 0; i < numSignificantSets; i++ )
    585585    {
    586586      WRITE_UVLC( sei.m_ilctsId[i],                           "ilcts_id"                                     );
Note: See TracChangeset for help on using the changeset viewer.