Changeset 897 in SHVCSoftware


Ignore:
Timestamp:
26 Sep 2014, 21:02:22 (10 years ago)
Author:
seregin
Message:

fix compiler warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r894 r897  
    17391739  if( pcCfg->getBufferingPeriodSEIEnabled() )
    17401740  {
     1741    Int j;
    17411742    vps->setVpsVuiBspHrdPresentFlag(true);
    17421743    vps->setVpsNumAddHrdParams( vps->getMaxLayers() );
    17431744    vps->createBspHrdParamBuffer(vps->getVpsNumAddHrdParams() + 1);
    1744     for(Int i = vps->getNumHrdParameters(), j = 0; i < vps->getNumHrdParameters() + vps->getVpsNumAddHrdParams(); i++, j++)
     1745    for( i = vps->getNumHrdParameters(), j = 0; i < vps->getNumHrdParameters() + vps->getVpsNumAddHrdParams(); i++, j++ )
    17451746    {
    17461747      vps->setCprmsAddPresentFlag( j, true );
     
    17771778      Int lsIdx = vps->getOutputLayerSetIdx( h );
    17781779      vps->setNumSignalledPartitioningSchemes(h, 1);  // Only the default per-layer partitioning scheme
    1779       for(Int j = 1; j < vps->getNumSignalledPartitioningSchemes(h); j++)
     1780      for( j = 1; j < vps->getNumSignalledPartitioningSchemes(h); j++ )
    17801781      {
    17811782        // ToDo: Add code for additional partitioning schemes here
     
    17831784      }
    17841785
    1785       for(Int i = 0; i < vps->getNumSignalledPartitioningSchemes(h); i++)
     1786      for( i = 0; i < vps->getNumSignalledPartitioningSchemes(h); i++ )
    17861787      {
    17871788        if( i == 0 )
     
    17901791          {
    17911792            vps->setNumBspSchedulesMinus1( h, i, t, 0 );
    1792             for( Int j = 0; j <= vps->getNumBspSchedulesMinus1(h, i, t); j++ )
     1793            for( j = 0; j <= vps->getNumBspSchedulesMinus1(h, i, t); j++ )
    17931794            {
    17941795              for( Int k = 0; k <= vps->getNumPartitionsInSchemeMinus1(h, i); k++ )
Note: See TracChangeset for help on using the changeset viewer.