Changeset 402 in SHVCSoftware for branches


Ignore:
Timestamp:
20 Sep 2013, 18:42:44 (11 years ago)
Author:
seregin
Message:

fix compiler warnings

Location:
branches/SHM-3.1-dev/source
Files:
4 edited

Legend:

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

    r401 r402  
    6969, m_avcBaseLayerFlag(0)
    7070#endif
     71#if N0120_MAX_TID_REF_CFG
     72, m_maxTidRefPresentFlag(1)
     73#endif
    7174, m_pColumnWidth()
    7275, m_pRowHeight()
    7376, m_scalingListFile()
    7477, m_elRapSliceBEnabled(0)
    75 #if N0120_MAX_TID_REF_CFG
    76 , m_maxTidRefPresentFlag(1)
    77 #endif
    7878{
    7979  for(UInt layer=0; layer<MAX_LAYERS; layer++)
  • branches/SHM-3.1-dev/source/App/TAppEncoder/TAppEncCfg.h

    r398 r402  
    6868  Int       m_framesToBeEncoded;                              ///< number of encoded frames
    6969#if AVC_BASE
    70   Int       m_avcBaseLayerFlag;                               ///< AVC_BASElayer_flag
     70  Int       m_avcBaseLayerFlag;                               ///< avc_baselayer_flag
    7171#endif
    7272#if AVC_SYNTAX
  • branches/SHM-3.1-dev/source/Lib/TLibDecoder/TDecCAVLC.cpp

    r399 r402  
    11551155    vps->setVpsNumRepFormats( vps->getMaxLayers() );
    11561156  }
    1157   for(Int i = 0; i < vps->getVpsNumRepFormats(); i++)
     1157  for(i = 0; i < vps->getVpsNumRepFormats(); i++)
    11581158  {
    11591159    // Read rep_format_structures
     
    11651165  if( vps->getRepFormatIdxPresentFlag() )
    11661166  {
    1167     for(Int i = 1; i < vps->getMaxLayers(); i++)
     1167    for(i = 1; i < vps->getMaxLayers(); i++)
    11681168    {
    11691169      if( vps->getVpsNumRepFormats() > 1 )
     
    11821182  {
    11831183    // default assignment - each layer assigned each rep_format() structure in the order signaled
    1184     for(Int i = 1; i < vps->getMaxLayers(); i++)
     1184    for(i = 1; i < vps->getMaxLayers(); i++)
    11851185    {
    11861186      vps->setVpsRepFormatIdx( i, i );
  • branches/SHM-3.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp

    r399 r402  
    890890    WRITE_CODE( vps->getVpsNumRepFormats() - 1, 4, "vps_num_rep_formats_minus1" );
    891891  }
    892   for(Int i = 0; i < vps->getVpsNumRepFormats(); i++)
     892  for(i = 0; i < vps->getVpsNumRepFormats(); i++)
    893893  {
    894894    // Read rep_format_structures
     
    898898  if( vps->getRepFormatIdxPresentFlag() )
    899899  {
    900     for(Int i = 1; i < vps->getMaxLayers(); i++)
     900    for(i = 1; i < vps->getMaxLayers(); i++)
    901901    {
    902902      if( vps->getVpsNumRepFormats() > 1 )
Note: See TracChangeset for help on using the changeset viewer.